1#![allow(non_upper_case_globals)]
2
3use crate::objects::array_object::{Array, Object};
4use crate::types::account_id::AccountID;
5use crate::types::amount::Amount;
6use crate::types::blob::{
7 ConditionBlob, FulfillmentBlob, PublicKeyBlob, SignatureBlob, StandardBlob, UriBlob, WasmBlob,
8};
9use crate::types::currency::Currency;
10use crate::types::issue::Issue;
11use crate::types::number::Number;
12use crate::types::transaction_type::TransactionType;
13use crate::types::uint::{Hash128, Hash160, Hash192, Hash256};
14use core::borrow::Borrow;
15use core::marker::PhantomData;
16
17#[derive(Copy, Clone, Debug, PartialEq, Eq)]
42pub struct SField<T, const CODE: i32> {
43 _phantom: PhantomData<T>,
44}
45
46impl<T, const CODE: i32> SField<T, CODE> {
47 pub const fn new() -> Self {
51 SField {
52 _phantom: PhantomData,
53 }
54 }
55}
56
57impl<T, const CODE: i32> From<SField<T, CODE>> for i32 {
58 fn from(_: SField<T, CODE>) -> Self {
59 CODE
60 }
61}
62
63impl<T, const CODE: i32> Default for SField<T, CODE> {
64 fn default() -> Self {
65 Self::new()
66 }
67}
68
69impl<T, const CODE: i32> Borrow<i32> for SField<T, CODE> {
70 fn borrow(&self) -> &i32 {
71 const fn make_static<const C: i32>() -> &'static i32 {
74 &C
75 }
76 make_static::<CODE>()
77 }
78}
79
80#[derive(Copy, Clone, Debug, PartialEq, Eq)]
97pub enum Unmapped {}
98
99pub const Invalid: SField<u8, -1> = SField::new();
100pub const Generic: SField<u8, 0> = SField::new();
101pub const hash: SField<u8, -1> = SField::new();
102pub const index: SField<u8, 0> = SField::new();
103
104pub const LedgerEntryType: SField<u16, 65537> = SField::new();
110pub const TransactionType: SField<TransactionType, 65538> = SField::new();
111pub const SignerWeight: SField<u16, 65539> = SField::new();
112pub const TransferFee: SField<u16, 65540> = SField::new();
113pub const TradingFee: SField<u16, 65541> = SField::new();
114pub const DiscountedFee: SField<u16, 65542> = SField::new();
115pub const Version: SField<u16, 65552> = SField::new();
116pub const HookStateChangeCount: SField<u16, 65553> = SField::new();
117pub const HookEmitCount: SField<u16, 65554> = SField::new();
118pub const HookExecutionIndex: SField<u16, 65555> = SField::new();
119pub const HookApiVersion: SField<u16, 65556> = SField::new();
120pub const LedgerFixType: SField<u16, 65557> = SField::new();
121pub const ManagementFeeRate: SField<u16, 65558> = SField::new();
122pub const NetworkID: SField<u32, 131073> = SField::new();
123pub const Flags: SField<u32, 131074> = SField::new();
124pub const SourceTag: SField<u32, 131075> = SField::new();
125pub const Sequence: SField<u32, 131076> = SField::new();
126pub const PreviousTxnLgrSeq: SField<u32, 131077> = SField::new();
127pub const LedgerSequence: SField<u32, 131078> = SField::new();
128pub const CloseTime: SField<u32, 131079> = SField::new();
129pub const ParentCloseTime: SField<u32, 131080> = SField::new();
130pub const SigningTime: SField<u32, 131081> = SField::new();
131pub const Expiration: SField<u32, 131082> = SField::new();
132pub const TransferRate: SField<u32, 131083> = SField::new();
133pub const WalletSize: SField<u32, 131084> = SField::new();
134pub const OwnerCount: SField<u32, 131085> = SField::new();
135pub const DestinationTag: SField<u32, 131086> = SField::new();
136pub const LastUpdateTime: SField<u32, 131087> = SField::new();
137pub const HighQualityIn: SField<u32, 131088> = SField::new();
138pub const HighQualityOut: SField<u32, 131089> = SField::new();
139pub const LowQualityIn: SField<u32, 131090> = SField::new();
140pub const LowQualityOut: SField<u32, 131091> = SField::new();
141pub const QualityIn: SField<u32, 131092> = SField::new();
142pub const QualityOut: SField<u32, 131093> = SField::new();
143pub const StampEscrow: SField<u32, 131094> = SField::new();
144pub const BondAmount: SField<u32, 131095> = SField::new();
145pub const LoadFee: SField<u32, 131096> = SField::new();
146pub const OfferSequence: SField<u32, 131097> = SField::new();
147pub const FirstLedgerSequence: SField<u32, 131098> = SField::new();
148pub const LastLedgerSequence: SField<u32, 131099> = SField::new();
149pub const TransactionIndex: SField<u32, 131100> = SField::new();
150pub const OperationLimit: SField<u32, 131101> = SField::new();
151pub const ReferenceFeeUnits: SField<u32, 131102> = SField::new();
152pub const ReserveBase: SField<u32, 131103> = SField::new();
153pub const ReserveIncrement: SField<u32, 131104> = SField::new();
154pub const SetFlag: SField<u32, 131105> = SField::new();
155pub const ClearFlag: SField<u32, 131106> = SField::new();
156pub const SignerQuorum: SField<u32, 131107> = SField::new();
157pub const CancelAfter: SField<u32, 131108> = SField::new();
158pub const FinishAfter: SField<u32, 131109> = SField::new();
159pub const SignerListID: SField<u32, 131110> = SField::new();
160pub const SettleDelay: SField<u32, 131111> = SField::new();
161pub const TicketCount: SField<u32, 131112> = SField::new();
162pub const TicketSequence: SField<u32, 131113> = SField::new();
163pub const NFTokenTaxon: SField<u32, 131114> = SField::new();
164pub const MintedNFTokens: SField<u32, 131115> = SField::new();
165pub const BurnedNFTokens: SField<u32, 131116> = SField::new();
166pub const HookStateCount: SField<u32, 131117> = SField::new();
167pub const EmitGeneration: SField<u32, 131118> = SField::new();
168pub const VoteWeight: SField<u32, 131120> = SField::new();
169pub const FirstNFTokenSequence: SField<u32, 131122> = SField::new();
170pub const OracleDocumentID: SField<u32, 131123> = SField::new();
171pub const PermissionValue: SField<u32, 131124> = SField::new();
172pub const ImmutableFlags: SField<u32, 131125> = SField::new();
173pub const StartDate: SField<u32, 131126> = SField::new();
174pub const PaymentInterval: SField<u32, 131127> = SField::new();
175pub const GracePeriod: SField<u32, 131128> = SField::new();
176pub const PreviousPaymentDueDate: SField<u32, 131129> = SField::new();
177pub const NextPaymentDueDate: SField<u32, 131130> = SField::new();
178pub const PaymentRemaining: SField<u32, 131131> = SField::new();
179pub const PaymentTotal: SField<u32, 131132> = SField::new();
180pub const LoanSequence: SField<u32, 131133> = SField::new();
181pub const CoverRateMinimum: SField<u32, 131134> = SField::new();
182pub const CoverRateLiquidation: SField<u32, 131135> = SField::new();
183pub const OverpaymentFee: SField<u32, 131136> = SField::new();
184pub const InterestRate: SField<u32, 131137> = SField::new();
185pub const LateInterestRate: SField<u32, 131138> = SField::new();
186pub const CloseInterestRate: SField<u32, 131139> = SField::new();
187pub const OverpaymentInterestRate: SField<u32, 131140> = SField::new();
188pub const ConfidentialBalanceVersion: SField<u32, 131141> = SField::new();
189pub const SponsoredOwnerCount: SField<u32, 131142> = SField::new();
190pub const SponsoringOwnerCount: SField<u32, 131143> = SField::new();
191pub const SponsoringAccountCount: SField<u32, 131144> = SField::new();
192pub const RemainingOwnerCount: SField<u32, 131145> = SField::new();
193pub const SponsorFlags: SField<u32, 131146> = SField::new();
194pub const GasLimit: SField<u32, 131147> = SField::new();
195pub const BytecodeSizeLimit: SField<u32, 131148> = SField::new();
196pub const GasPrice: SField<u32, 131149> = SField::new();
197pub const Gas: SField<u32, 131150> = SField::new();
198pub const GasUsed: SField<u32, 131151> = SField::new();
199pub const ParameterFlag: SField<u32, 131152> = SField::new();
200pub const IndexNext: SField<u64, 196609> = SField::new();
201pub const IndexPrevious: SField<u64, 196610> = SField::new();
202pub const BookNode: SField<u64, 196611> = SField::new();
203pub const OwnerNode: SField<u64, 196612> = SField::new();
204pub const BaseFee: SField<u64, 196613> = SField::new();
205pub const ExchangeRate: SField<u64, 196614> = SField::new();
206pub const LowNode: SField<u64, 196615> = SField::new();
207pub const HighNode: SField<u64, 196616> = SField::new();
208pub const DestinationNode: SField<u64, 196617> = SField::new();
209pub const Cookie: SField<u64, 196618> = SField::new();
210pub const ServerVersion: SField<u64, 196619> = SField::new();
211pub const NFTokenOfferNode: SField<u64, 196620> = SField::new();
212pub const EmitBurden: SField<u64, 196621> = SField::new();
213pub const HookOn: SField<u64, 196624> = SField::new();
214pub const HookInstructionCount: SField<u64, 196625> = SField::new();
215pub const HookReturnCode: SField<u64, 196626> = SField::new();
216pub const ReferenceCount: SField<u64, 196627> = SField::new();
217pub const XChainClaimID: SField<u64, 196628> = SField::new();
218pub const XChainAccountCreateCount: SField<u64, 196629> = SField::new();
219pub const XChainAccountClaimCount: SField<u64, 196630> = SField::new();
220pub const AssetPrice: SField<u64, 196631> = SField::new();
221pub const MaximumAmount: SField<u64, 196632> = SField::new();
222pub const OutstandingAmount: SField<u64, 196633> = SField::new();
223pub const MPTAmount: SField<u64, 196634> = SField::new();
224pub const IssuerNode: SField<u64, 196635> = SField::new();
225pub const SubjectNode: SField<u64, 196636> = SField::new();
226pub const LockedAmount: SField<u64, 196637> = SField::new();
227pub const VaultNode: SField<u64, 196638> = SField::new();
228pub const LoanBrokerNode: SField<u64, 196639> = SField::new();
229pub const ConfidentialOutstandingAmount: SField<u64, 196640> = SField::new();
230pub const SponseeNode: SField<u64, 196641> = SField::new();
231pub const EmailHash: SField<Hash128, 262145> = SField::new();
232pub const LedgerHash: SField<Hash256, 327681> = SField::new();
233pub const ParentHash: SField<Hash256, 327682> = SField::new();
234pub const TransactionHash: SField<Hash256, 327683> = SField::new();
235pub const AccountHash: SField<Hash256, 327684> = SField::new();
236pub const PreviousTxnID: SField<Hash256, 327685> = SField::new();
237pub const LedgerIndex: SField<Hash256, 327686> = SField::new();
238pub const WalletLocator: SField<Hash256, 327687> = SField::new();
239pub const RootIndex: SField<Hash256, 327688> = SField::new();
240pub const AccountTxnID: SField<Hash256, 327689> = SField::new();
241pub const NFTokenID: SField<Hash256, 327690> = SField::new();
242pub const EmitParentTxnID: SField<Hash256, 327691> = SField::new();
243pub const EmitNonce: SField<Hash256, 327692> = SField::new();
244pub const EmitHookHash: SField<Hash256, 327693> = SField::new();
245pub const AMMID: SField<Hash256, 327694> = SField::new();
246pub const BookDirectory: SField<Hash256, 327696> = SField::new();
247pub const InvoiceID: SField<Hash256, 327697> = SField::new();
248pub const Nickname: SField<Hash256, 327698> = SField::new();
249pub const Amendment: SField<Hash256, 327699> = SField::new();
250pub const Digest: SField<Hash256, 327701> = SField::new();
251pub const Channel: SField<Hash256, 327702> = SField::new();
252pub const ConsensusHash: SField<Hash256, 327703> = SField::new();
253pub const CheckID: SField<Hash256, 327704> = SField::new();
254pub const ValidatedHash: SField<Hash256, 327705> = SField::new();
255pub const PreviousPageMin: SField<Hash256, 327706> = SField::new();
256pub const NextPageMin: SField<Hash256, 327707> = SField::new();
257pub const NFTokenBuyOffer: SField<Hash256, 327708> = SField::new();
258pub const NFTokenSellOffer: SField<Hash256, 327709> = SField::new();
259pub const HookStateKey: SField<Hash256, 327710> = SField::new();
260pub const HookHash: SField<Hash256, 327711> = SField::new();
261pub const HookNamespace: SField<Hash256, 327712> = SField::new();
262pub const HookSetTxnID: SField<Hash256, 327713> = SField::new();
263pub const DomainID: SField<Hash256, 327714> = SField::new();
264pub const VaultID: SField<Hash256, 327715> = SField::new();
265pub const ParentBatchID: SField<Hash256, 327716> = SField::new();
266pub const LoanBrokerID: SField<Hash256, 327717> = SField::new();
267pub const LoanID: SField<Hash256, 327718> = SField::new();
268pub const ReferenceHolding: SField<Hash256, 327719> = SField::new();
269pub const BlindingFactor: SField<Hash256, 327720> = SField::new();
270pub const ObjectID: SField<Hash256, 327721> = SField::new();
271pub const ContractHash: SField<Hash256, 327722> = SField::new();
272pub const ContractID: SField<Hash256, 327723> = SField::new();
273pub const Amount: SField<Amount, 393217> = SField::new();
274pub const Balance: SField<Amount, 393218> = SField::new();
275pub const LimitAmount: SField<Amount, 393219> = SField::new();
276pub const TakerPays: SField<Amount, 393220> = SField::new();
277pub const TakerGets: SField<Amount, 393221> = SField::new();
278pub const LowLimit: SField<Amount, 393222> = SField::new();
279pub const HighLimit: SField<Amount, 393223> = SField::new();
280pub const Fee: SField<Amount, 393224> = SField::new();
281pub const SendMax: SField<Amount, 393225> = SField::new();
282pub const DeliverMin: SField<Amount, 393226> = SField::new();
283pub const Amount2: SField<Amount, 393227> = SField::new();
284pub const BidMin: SField<Amount, 393228> = SField::new();
285pub const BidMax: SField<Amount, 393229> = SField::new();
286pub const MinimumOffer: SField<Amount, 393232> = SField::new();
287pub const RippleEscrow: SField<Amount, 393233> = SField::new();
288pub const DeliveredAmount: SField<Amount, 393234> = SField::new();
289pub const NFTokenBrokerFee: SField<Amount, 393235> = SField::new();
290pub const BaseFeeDrops: SField<Amount, 393238> = SField::new();
291pub const ReserveBaseDrops: SField<Amount, 393239> = SField::new();
292pub const ReserveIncrementDrops: SField<Amount, 393240> = SField::new();
293pub const LPTokenOut: SField<Amount, 393241> = SField::new();
294pub const LPTokenIn: SField<Amount, 393242> = SField::new();
295pub const EPrice: SField<Amount, 393243> = SField::new();
296pub const Price: SField<Amount, 393244> = SField::new();
297pub const SignatureReward: SField<Amount, 393245> = SField::new();
298pub const MinAccountCreateAmount: SField<Amount, 393246> = SField::new();
299pub const LPTokenBalance: SField<Amount, 393247> = SField::new();
300pub const FeeAmount: SField<Amount, 393248> = SField::new();
301pub const MaxFee: SField<Amount, 393249> = SField::new();
302pub const FeeAmountDelta: SField<Amount, 393250> = SField::new();
303pub const PublicKey: SField<PublicKeyBlob, 458753> = SField::new();
304pub const MessageKey: SField<PublicKeyBlob, 458754> = SField::new();
305pub const SigningPubKey: SField<PublicKeyBlob, 458755> = SField::new();
306pub const TxnSignature: SField<SignatureBlob, 458756> = SField::new();
307pub const URI: SField<UriBlob, 458757> = SField::new();
308pub const Signature: SField<StandardBlob, 458758> = SField::new();
309pub const Domain: SField<UriBlob, 458759> = SField::new();
310pub const FundCode: SField<StandardBlob, 458760> = SField::new();
311pub const RemoveCode: SField<StandardBlob, 458761> = SField::new();
312pub const ExpireCode: SField<StandardBlob, 458762> = SField::new();
313pub const CreateCode: SField<StandardBlob, 458763> = SField::new();
314pub const MemoType: SField<StandardBlob, 458764> = SField::new();
315pub const MemoData: SField<StandardBlob, 458765> = SField::new();
316pub const MemoFormat: SField<StandardBlob, 458766> = SField::new();
317pub const Fulfillment: SField<FulfillmentBlob, 458768> = SField::new();
318pub const Condition: SField<ConditionBlob, 458769> = SField::new();
319pub const MasterSignature: SField<StandardBlob, 458770> = SField::new();
320pub const UNLModifyValidator: SField<StandardBlob, 458771> = SField::new();
321pub const ValidatorToDisable: SField<StandardBlob, 458772> = SField::new();
322pub const ValidatorToReEnable: SField<StandardBlob, 458773> = SField::new();
323pub const HookStateData: SField<StandardBlob, 458774> = SField::new();
324pub const HookReturnString: SField<StandardBlob, 458775> = SField::new();
325pub const HookParameterName: SField<StandardBlob, 458776> = SField::new();
326pub const HookParameterValue: SField<StandardBlob, 458777> = SField::new();
327pub const DIDDocument: SField<StandardBlob, 458778> = SField::new();
328pub const Data: SField<StandardBlob, 458779> = SField::new();
329pub const AssetClass: SField<StandardBlob, 458780> = SField::new();
330pub const Provider: SField<StandardBlob, 458781> = SField::new();
331pub const MPTokenMetadata: SField<StandardBlob, 458782> = SField::new();
332pub const CredentialType: SField<StandardBlob, 458783> = SField::new();
333pub const ConfidentialBalanceInbox: SField<StandardBlob, 458784> = SField::new();
334pub const ConfidentialBalanceSpending: SField<StandardBlob, 458785> = SField::new();
335pub const IssuerEncryptedBalance: SField<StandardBlob, 458786> = SField::new();
336pub const IssuerEncryptionKey: SField<StandardBlob, 458787> = SField::new();
337pub const HolderEncryptionKey: SField<StandardBlob, 458788> = SField::new();
338pub const ZKProof: SField<StandardBlob, 458789> = SField::new();
339pub const HolderEncryptedAmount: SField<StandardBlob, 458790> = SField::new();
340pub const IssuerEncryptedAmount: SField<StandardBlob, 458791> = SField::new();
341pub const SenderEncryptedAmount: SField<StandardBlob, 458792> = SField::new();
342pub const DestinationEncryptedAmount: SField<StandardBlob, 458793> = SField::new();
343pub const AuditorEncryptedBalance: SField<StandardBlob, 458794> = SField::new();
344pub const AuditorEncryptedAmount: SField<StandardBlob, 458795> = SField::new();
345pub const AuditorEncryptionKey: SField<StandardBlob, 458796> = SField::new();
346pub const AmountCommitment: SField<StandardBlob, 458797> = SField::new();
347pub const BalanceCommitment: SField<StandardBlob, 458798> = SField::new();
348pub const Bytecode: SField<WasmBlob, 458799> = SField::new();
349pub const ContractCode: SField<StandardBlob, 458800> = SField::new();
350pub const FunctionName: SField<StandardBlob, 458801> = SField::new();
351pub const Account: SField<AccountID, 524289> = SField::new();
352pub const Owner: SField<AccountID, 524290> = SField::new();
353pub const Destination: SField<AccountID, 524291> = SField::new();
354pub const Issuer: SField<AccountID, 524292> = SField::new();
355pub const Authorize: SField<AccountID, 524293> = SField::new();
356pub const Unauthorize: SField<AccountID, 524294> = SField::new();
357pub const RegularKey: SField<AccountID, 524296> = SField::new();
358pub const NFTokenMinter: SField<AccountID, 524297> = SField::new();
359pub const EmitCallback: SField<AccountID, 524298> = SField::new();
360pub const Holder: SField<AccountID, 524299> = SField::new();
361pub const Delegate: SField<AccountID, 524300> = SField::new();
362pub const HookAccount: SField<AccountID, 524304> = SField::new();
363pub const OtherChainSource: SField<AccountID, 524306> = SField::new();
364pub const OtherChainDestination: SField<AccountID, 524307> = SField::new();
365pub const AttestationSignerAccount: SField<AccountID, 524308> = SField::new();
366pub const AttestationRewardAccount: SField<AccountID, 524309> = SField::new();
367pub const LockingChainDoor: SField<AccountID, 524310> = SField::new();
368pub const IssuingChainDoor: SField<AccountID, 524311> = SField::new();
369pub const Subject: SField<AccountID, 524312> = SField::new();
370pub const Borrower: SField<AccountID, 524313> = SField::new();
371pub const Counterparty: SField<AccountID, 524314> = SField::new();
372pub const Sponsor: SField<AccountID, 524315> = SField::new();
373pub const HighSponsor: SField<AccountID, 524316> = SField::new();
374pub const LowSponsor: SField<AccountID, 524317> = SField::new();
375pub const CounterpartySponsor: SField<AccountID, 524318> = SField::new();
376pub const Sponsee: SField<AccountID, 524319> = SField::new();
377pub const ContractAccount: SField<AccountID, 524320> = SField::new();
378pub const Number: SField<Number, 589825> = SField::new();
379pub const AssetsAvailable: SField<Number, 589826> = SField::new();
380pub const AssetsMaximum: SField<Number, 589827> = SField::new();
381pub const AssetsTotal: SField<Number, 589828> = SField::new();
382pub const LossUnrealized: SField<Number, 589829> = SField::new();
383pub const DebtTotal: SField<Number, 589830> = SField::new();
384pub const DebtMaximum: SField<Number, 589831> = SField::new();
385pub const CoverAvailable: SField<Number, 589832> = SField::new();
386pub const LoanOriginationFee: SField<Number, 589833> = SField::new();
387pub const LoanServiceFee: SField<Number, 589834> = SField::new();
388pub const LatePaymentFee: SField<Number, 589835> = SField::new();
389pub const ClosePaymentFee: SField<Number, 589836> = SField::new();
390pub const PrincipalOutstanding: SField<Number, 589837> = SField::new();
391pub const PrincipalRequested: SField<Number, 589838> = SField::new();
392pub const TotalValueOutstanding: SField<Number, 589839> = SField::new();
393pub const PeriodicPayment: SField<Number, 589840> = SField::new();
394pub const ManagementFeeOutstanding: SField<Number, 589841> = SField::new();
395pub const LoanScale: SField<i32, 655361> = SField::new();
396pub const RemainingOwnerCountDelta: SField<i32, 655362> = SField::new();
397pub const VMReturnCode: SField<i32, 655363> = SField::new();
398pub const TransactionMetaData: SField<Object, 917506> = SField::new();
399pub const CreatedNode: SField<Object, 917507> = SField::new();
400pub const DeletedNode: SField<Object, 917508> = SField::new();
401pub const ModifiedNode: SField<Object, 917509> = SField::new();
402pub const PreviousFields: SField<Object, 917510> = SField::new();
403pub const FinalFields: SField<Object, 917511> = SField::new();
404pub const NewFields: SField<Object, 917512> = SField::new();
405pub const TemplateEntry: SField<Object, 917513> = SField::new();
406pub const Memo: SField<Object, 917514> = SField::new();
407pub const SignerEntry: SField<Object, 917515> = SField::new();
408pub const NFToken: SField<Object, 917516> = SField::new();
409pub const EmitDetails: SField<Object, 917517> = SField::new();
410pub const Hook: SField<Object, 917518> = SField::new();
411pub const Permission: SField<Object, 917519> = SField::new();
412pub const Signer: SField<Object, 917520> = SField::new();
413pub const Majority: SField<Object, 917522> = SField::new();
414pub const DisabledValidator: SField<Object, 917523> = SField::new();
415pub const EmittedTxn: SField<Object, 917524> = SField::new();
416pub const HookExecution: SField<Object, 917525> = SField::new();
417pub const HookDefinition: SField<Object, 917526> = SField::new();
418pub const HookParameter: SField<Object, 917527> = SField::new();
419pub const HookGrant: SField<Object, 917528> = SField::new();
420pub const VoteEntry: SField<Object, 917529> = SField::new();
421pub const AuctionSlot: SField<Object, 917530> = SField::new();
422pub const AuthAccount: SField<Object, 917531> = SField::new();
423pub const XChainClaimProofSig: SField<Object, 917532> = SField::new();
424pub const XChainCreateAccountProofSig: SField<Object, 917533> = SField::new();
425pub const XChainClaimAttestationCollectionElement: SField<Object, 917534> = SField::new();
426pub const XChainCreateAccountAttestationCollectionElement: SField<Object, 917535> = SField::new();
427pub const PriceData: SField<Object, 917536> = SField::new();
428pub const Credential: SField<Object, 917537> = SField::new();
429pub const RawTransaction: SField<Object, 917538> = SField::new();
430pub const BatchSigner: SField<Object, 917539> = SField::new();
431pub const Book: SField<Object, 917540> = SField::new();
432pub const CounterpartySignature: SField<Object, 917541> = SField::new();
433pub const SponsorSignature: SField<Object, 917542> = SField::new();
434pub const Function: SField<Object, 917543> = SField::new();
435pub const InstanceParameter: SField<Object, 917544> = SField::new();
436pub const InstanceParameterValue: SField<Object, 917545> = SField::new();
437pub const Parameter: SField<Object, 917546> = SField::new();
438pub const Signers: SField<Array, 983043> = SField::new();
439pub const SignerEntries: SField<Array, 983044> = SField::new();
440pub const Template: SField<Array, 983045> = SField::new();
441pub const Necessary: SField<Array, 983046> = SField::new();
442pub const Sufficient: SField<Array, 983047> = SField::new();
443pub const AffectedNodes: SField<Array, 983048> = SField::new();
444pub const Memos: SField<Array, 983049> = SField::new();
445pub const NFTokens: SField<Array, 983050> = SField::new();
446pub const Hooks: SField<Array, 983051> = SField::new();
447pub const VoteSlots: SField<Array, 983052> = SField::new();
448pub const AdditionalBooks: SField<Array, 983053> = SField::new();
449pub const Majorities: SField<Array, 983056> = SField::new();
450pub const DisabledValidators: SField<Array, 983057> = SField::new();
451pub const HookExecutions: SField<Array, 983058> = SField::new();
452pub const HookParameters: SField<Array, 983059> = SField::new();
453pub const HookGrants: SField<Array, 983060> = SField::new();
454pub const XChainClaimAttestations: SField<Array, 983061> = SField::new();
455pub const XChainCreateAccountAttestations: SField<Array, 983062> = SField::new();
456pub const PriceDataSeries: SField<Array, 983064> = SField::new();
457pub const AuthAccounts: SField<Array, 983065> = SField::new();
458pub const AuthorizeCredentials: SField<Array, 983066> = SField::new();
459pub const UnauthorizeCredentials: SField<Array, 983067> = SField::new();
460pub const AcceptedCredentials: SField<Array, 983068> = SField::new();
461pub const Permissions: SField<Array, 983069> = SField::new();
462pub const RawTransactions: SField<Array, 983070> = SField::new();
463pub const BatchSigners: SField<Array, 983071> = SField::new();
464pub const Functions: SField<Array, 983072> = SField::new();
465pub const InstanceParameters: SField<Array, 983073> = SField::new();
466pub const InstanceParameterValues: SField<Array, 983074> = SField::new();
467pub const Parameters: SField<Array, 983075> = SField::new();
468pub const CloseResolution: SField<u8, 1048577> = SField::new();
469pub const Method: SField<u8, 1048578> = SField::new();
470pub const TransactionResult: SField<u8, 1048579> = SField::new();
471pub const Scale: SField<u8, 1048580> = SField::new();
472pub const AssetScale: SField<u8, 1048581> = SField::new();
473pub const LEVersion: SField<u8, 1048582> = SField::new();
474pub const TickSize: SField<u8, 1048592> = SField::new();
475pub const UNLModifyDisabling: SField<u8, 1048593> = SField::new();
476pub const HookResult: SField<u8, 1048594> = SField::new();
477pub const WasLockingChainSend: SField<u8, 1048595> = SField::new();
478pub const WithdrawalPolicy: SField<u8, 1048596> = SField::new();
479pub const ContractResult: SField<u8, 1048597> = SField::new();
480pub const TakerPaysCurrency: SField<Hash160, 1114113> = SField::new();
481pub const TakerPaysIssuer: SField<Hash160, 1114114> = SField::new();
482pub const TakerGetsCurrency: SField<Hash160, 1114115> = SField::new();
483pub const TakerGetsIssuer: SField<Hash160, 1114116> = SField::new();
484pub const Paths: SField<Unmapped, 1179649> = SField::new();
485pub const Indexes: SField<Unmapped, 1245185> = SField::new();
486pub const Hashes: SField<Unmapped, 1245186> = SField::new();
487pub const Amendments: SField<Unmapped, 1245187> = SField::new();
488pub const NFTokenOffers: SField<Unmapped, 1245188> = SField::new();
489pub const CredentialIDs: SField<Unmapped, 1245189> = SField::new();
490pub const MPTokenIssuanceID: SField<Hash192, 1376257> = SField::new();
491pub const ShareMPTID: SField<Hash192, 1376258> = SField::new();
492pub const TakerPaysMPT: SField<Hash192, 1376259> = SField::new();
493pub const TakerGetsMPT: SField<Hash192, 1376260> = SField::new();
494pub const LockingChainIssue: SField<Issue, 1572865> = SField::new();
495pub const IssuingChainIssue: SField<Issue, 1572866> = SField::new();
496pub const Asset: SField<Issue, 1572867> = SField::new();
497pub const Asset2: SField<Issue, 1572868> = SField::new();
498pub const XChainBridge: SField<Unmapped, 1638401> = SField::new();
499pub const BaseAsset: SField<Currency, 1703937> = SField::new();
500pub const QuoteAsset: SField<Currency, 1703938> = SField::new();
501pub const ParameterValue: SField<Unmapped, 1769473> = SField::new();
502pub const ParameterType: SField<Unmapped, 1835009> = SField::new();
503pub const ContractJson: SField<Unmapped, 1900545> = SField::new();
504pub const Transaction: SField<Unmapped, 655425793> = SField::new();
505pub const LedgerEntry: SField<Unmapped, 655491329> = SField::new();
506pub const Validation: SField<Unmapped, 655556865> = SField::new();
507pub const Metadata: SField<Unmapped, 655622401> = SField::new();