@transia/ripple-binary-codec 1.4.6-alpha.9 → 2.5.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/binary.d.ts +30 -16
- package/dist/binary.js +36 -16
- package/dist/binary.js.map +1 -1
- package/dist/enums/bytes.d.ts +1 -2
- package/dist/enums/bytes.js +3 -2
- package/dist/enums/bytes.js.map +1 -1
- package/dist/enums/constants.d.ts +1 -0
- package/dist/enums/constants.js +6 -5
- package/dist/enums/constants.js.map +1 -1
- package/dist/enums/definitions.json +1604 -969
- package/dist/enums/field.d.ts +1 -2
- package/dist/enums/field.js +1 -2
- package/dist/enums/field.js.map +1 -1
- package/dist/enums/index.d.ts +1 -2
- package/dist/enums/index.js +5 -27
- package/dist/enums/index.js.map +1 -1
- package/dist/enums/src/enums/definitions.json +1606 -971
- package/dist/enums/xrpl-definitions-base.d.ts +5 -3
- package/dist/enums/xrpl-definitions-base.js +26 -6
- package/dist/enums/xrpl-definitions-base.js.map +1 -1
- package/dist/enums/xrpl-definitions.d.ts +2 -1
- package/dist/enums/xrpl-definitions.js +2 -1
- package/dist/enums/xrpl-definitions.js.map +1 -1
- package/dist/hash-prefixes.d.ts +1 -2
- package/dist/hash-prefixes.js +8 -6
- package/dist/hash-prefixes.js.map +1 -1
- package/dist/hashes.d.ts +6 -7
- package/dist/hashes.js +6 -7
- package/dist/hashes.js.map +1 -1
- package/dist/index.d.ts +16 -11
- package/dist/index.js +53 -58
- package/dist/index.js.map +1 -1
- package/dist/ledger-hashes.d.ts +1 -2
- package/dist/ledger-hashes.js +11 -30
- package/dist/ledger-hashes.js.map +1 -1
- package/dist/quality.d.ts +3 -4
- package/dist/quality.js +10 -8
- package/dist/quality.js.map +1 -1
- package/dist/serdes/binary-parser.d.ts +2 -3
- package/dist/serdes/binary-parser.js +16 -32
- package/dist/serdes/binary-parser.js.map +1 -1
- package/dist/serdes/binary-serializer.d.ts +7 -8
- package/dist/serdes/binary-serializer.js +14 -37
- package/dist/serdes/binary-serializer.js.map +1 -1
- package/dist/shamap.d.ts +4 -5
- package/dist/shamap.js +5 -5
- package/dist/shamap.js.map +1 -1
- package/dist/src/binary.d.ts +106 -0
- package/dist/src/binary.js +154 -0
- package/dist/src/binary.js.map +1 -0
- package/dist/src/coretypes.d.ts +9 -0
- package/dist/src/coretypes.js +48 -0
- package/dist/src/coretypes.js.map +1 -0
- package/dist/src/enums/bytes.d.ts +25 -0
- package/dist/src/enums/bytes.js +65 -0
- package/dist/src/enums/bytes.js.map +1 -0
- package/dist/src/enums/constants.d.ts +5 -0
- package/dist/src/enums/constants.js +9 -0
- package/dist/src/enums/constants.js.map +1 -0
- package/dist/src/enums/definitions.json +3404 -0
- package/dist/src/enums/field.d.ts +28 -0
- package/dist/src/enums/field.js +58 -0
- package/dist/src/enums/field.js.map +1 -0
- package/dist/src/enums/index.d.ts +12 -0
- package/dist/src/enums/index.js +31 -0
- package/dist/src/enums/index.js.map +1 -0
- package/dist/src/enums/utils-renumber.d.ts +101 -0
- package/dist/src/enums/utils-renumber.js +127 -0
- package/dist/src/enums/utils-renumber.js.map +1 -0
- package/dist/src/enums/xrpl-definitions-base.d.ts +47 -0
- package/dist/src/enums/xrpl-definitions-base.js +83 -0
- package/dist/src/enums/xrpl-definitions-base.js.map +1 -0
- package/dist/src/enums/xrpl-definitions.d.ts +22 -0
- package/dist/src/enums/xrpl-definitions.js +30 -0
- package/dist/src/enums/xrpl-definitions.js.map +1 -0
- package/dist/src/hash-prefixes.d.ts +5 -0
- package/dist/src/hash-prefixes.js +43 -0
- package/dist/src/hash-prefixes.js.map +1 -0
- package/dist/src/hashes.d.ts +50 -0
- package/dist/src/hashes.js +76 -0
- package/dist/src/hashes.js.map +1 -0
- package/dist/src/index.d.ts +69 -0
- package/dist/src/index.js +134 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/ledger-hashes.d.ts +48 -0
- package/dist/src/ledger-hashes.js +141 -0
- package/dist/src/ledger-hashes.js.map +1 -0
- package/dist/src/quality.d.ts +21 -0
- package/dist/src/quality.js +42 -0
- package/dist/src/quality.js.map +1 -0
- package/dist/src/serdes/binary-parser.d.ts +100 -0
- package/dist/src/serdes/binary-parser.js +194 -0
- package/dist/src/serdes/binary-parser.js.map +1 -0
- package/dist/src/serdes/binary-serializer.d.ts +81 -0
- package/dist/src/serdes/binary-serializer.js +149 -0
- package/dist/src/serdes/binary-serializer.js.map +1 -0
- package/dist/src/shamap.d.ts +102 -0
- package/dist/src/shamap.js +172 -0
- package/dist/src/shamap.js.map +1 -0
- package/dist/src/types/account-id.d.ts +37 -0
- package/dist/src/types/account-id.js +73 -0
- package/dist/src/types/account-id.js.map +1 -0
- package/dist/src/types/amount.d.ts +92 -0
- package/dist/src/types/amount.js +292 -0
- package/dist/src/types/amount.js.map +1 -0
- package/dist/src/types/blob.d.ts +25 -0
- package/dist/src/types/blob.js +46 -0
- package/dist/src/types/blob.js.map +1 -0
- package/dist/src/types/currency.d.ts +30 -0
- package/dist/src/types/currency.js +131 -0
- package/dist/src/types/currency.js.map +1 -0
- package/dist/src/types/data.d.ts +104 -0
- package/dist/src/types/data.js +387 -0
- package/dist/src/types/data.js.map +1 -0
- package/dist/src/types/dataType.d.ts +94 -0
- package/dist/src/types/dataType.js +145 -0
- package/dist/src/types/dataType.js.map +1 -0
- package/dist/src/types/hash-128.d.ts +18 -0
- package/dist/src/types/hash-128.js +36 -0
- package/dist/src/types/hash-128.js.map +1 -0
- package/dist/src/types/hash-160.d.ts +12 -0
- package/dist/src/types/hash-160.js +23 -0
- package/dist/src/types/hash-160.js.map +1 -0
- package/dist/src/types/hash-192.d.ts +12 -0
- package/dist/src/types/hash-192.js +23 -0
- package/dist/src/types/hash-192.js.map +1 -0
- package/dist/src/types/hash-256.d.ts +12 -0
- package/dist/src/types/hash-256.js +20 -0
- package/dist/src/types/hash-256.js.map +1 -0
- package/dist/src/types/hash.d.ts +40 -0
- package/dist/src/types/hash.js +76 -0
- package/dist/src/types/hash.js.map +1 -0
- package/dist/src/types/index.d.ts +21 -0
- package/dist/src/types/index.js +72 -0
- package/dist/src/types/index.js.map +1 -0
- package/dist/src/types/issue.d.ts +49 -0
- package/dist/src/types/issue.js +107 -0
- package/dist/src/types/issue.js.map +1 -0
- package/dist/src/types/json.d.ts +169 -0
- package/dist/src/types/json.js +529 -0
- package/dist/src/types/json.js.map +1 -0
- package/dist/src/types/path-set.d.ts +37 -0
- package/dist/src/types/path-set.js +236 -0
- package/dist/src/types/path-set.js.map +1 -0
- package/dist/src/types/serialized-type.d.ts +117 -0
- package/dist/src/types/serialized-type.js +242 -0
- package/dist/src/types/serialized-type.js.map +1 -0
- package/dist/src/types/st-array.d.ts +32 -0
- package/dist/src/types/st-array.js +89 -0
- package/dist/src/types/st-array.js.map +1 -0
- package/dist/src/types/st-number.d.ts +55 -0
- package/dist/src/types/st-number.js +212 -0
- package/dist/src/types/st-number.js.map +1 -0
- package/dist/src/types/st-object.d.ts +33 -0
- package/dist/src/types/st-object.js +176 -0
- package/dist/src/types/st-object.js.map +1 -0
- package/dist/src/types/uint-16.d.ts +26 -0
- package/dist/src/types/uint-16.js +49 -0
- package/dist/src/types/uint-16.js.map +1 -0
- package/dist/src/types/uint-32.d.ts +26 -0
- package/dist/src/types/uint-32.js +54 -0
- package/dist/src/types/uint-32.js.map +1 -0
- package/dist/src/types/uint-64.d.ts +40 -0
- package/dist/src/types/uint-64.js +112 -0
- package/dist/src/types/uint-64.js.map +1 -0
- package/dist/src/types/uint-8.d.ts +26 -0
- package/dist/src/types/uint-8.js +50 -0
- package/dist/src/types/uint-8.js.map +1 -0
- package/dist/src/types/uint.d.ts +29 -0
- package/dist/src/types/uint.js +47 -0
- package/dist/src/types/uint.js.map +1 -0
- package/dist/src/types/vector-256.d.ts +31 -0
- package/dist/src/types/vector-256.js +76 -0
- package/dist/src/types/vector-256.js.map +1 -0
- package/dist/src/types/xchain-bridge.d.ts +45 -0
- package/dist/src/types/xchain-bridge.js +105 -0
- package/dist/src/types/xchain-bridge.js.map +1 -0
- package/dist/src/utils.d.ts +79 -0
- package/dist/src/utils.js +181 -0
- package/dist/src/utils.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types/account-id.d.ts +3 -2
- package/dist/types/account-id.js +8 -6
- package/dist/types/account-id.js.map +1 -1
- package/dist/types/amount.d.ts +33 -9
- package/dist/types/amount.js +128 -43
- package/dist/types/amount.js.map +1 -1
- package/dist/types/blob.d.ts +3 -3
- package/dist/types/blob.js +8 -2
- package/dist/types/blob.js.map +1 -1
- package/dist/types/currency.d.ts +3 -2
- package/dist/types/currency.js +17 -13
- package/dist/types/currency.js.map +1 -1
- package/dist/types/data.d.ts +104 -0
- package/dist/types/data.js +387 -0
- package/dist/types/data.js.map +1 -0
- package/dist/types/dataType.d.ts +94 -0
- package/dist/types/dataType.js +145 -0
- package/dist/types/dataType.js.map +1 -0
- package/dist/types/hash-128.d.ts +3 -2
- package/dist/types/hash-128.js +7 -3
- package/dist/types/hash-128.js.map +1 -1
- package/dist/types/hash-160.d.ts +3 -2
- package/dist/types/hash-160.js +5 -2
- package/dist/types/hash-160.js.map +1 -1
- package/dist/types/hash-192.d.ts +12 -0
- package/dist/types/hash-192.js +23 -0
- package/dist/types/hash-192.js.map +1 -0
- package/dist/types/hash-256.d.ts +3 -2
- package/dist/types/hash-256.js +5 -2
- package/dist/types/hash-256.js.map +1 -1
- package/dist/types/hash.d.ts +2 -3
- package/dist/types/hash.js +8 -4
- package/dist/types/hash.js.map +1 -1
- package/dist/types/index.d.ts +4 -1
- package/dist/types/index.js +17 -2
- package/dist/types/index.js.map +1 -1
- package/dist/types/issue.d.ts +49 -0
- package/dist/types/issue.js +107 -0
- package/dist/types/issue.js.map +1 -0
- package/dist/types/json.d.ts +169 -0
- package/dist/types/json.js +529 -0
- package/dist/types/json.js.map +1 -0
- package/dist/types/path-set.d.ts +2 -1
- package/dist/types/path-set.js +15 -12
- package/dist/types/path-set.js.map +1 -1
- package/dist/types/serialized-type.d.ts +70 -16
- package/dist/types/serialized-type.js +153 -8
- package/dist/types/serialized-type.js.map +1 -1
- package/dist/types/st-array.d.ts +7 -3
- package/dist/types/st-array.js +20 -11
- package/dist/types/st-array.js.map +1 -1
- package/dist/types/st-number.d.ts +55 -0
- package/dist/types/st-number.js +212 -0
- package/dist/types/st-number.js.map +1 -0
- package/dist/types/st-object.d.ts +2 -1
- package/dist/types/st-object.js +35 -8
- package/dist/types/st-object.js.map +1 -1
- package/dist/types/uint-16.d.ts +3 -2
- package/dist/types/uint-16.js +10 -5
- package/dist/types/uint-16.js.map +1 -1
- package/dist/types/uint-32.d.ts +3 -2
- package/dist/types/uint-32.js +11 -6
- package/dist/types/uint-32.js.map +1 -1
- package/dist/types/uint-64.d.ts +8 -7
- package/dist/types/uint-64.js +49 -24
- package/dist/types/uint-64.js.map +1 -1
- package/dist/types/uint-8.d.ts +3 -2
- package/dist/types/uint-8.js +11 -5
- package/dist/types/uint-8.js.map +1 -1
- package/dist/types/uint.d.ts +5 -6
- package/dist/types/uint.js +5 -0
- package/dist/types/uint.js.map +1 -1
- package/dist/types/vector-256.d.ts +3 -3
- package/dist/types/vector-256.js +5 -4
- package/dist/types/vector-256.js.map +1 -1
- package/dist/types/xchain-bridge.d.ts +45 -0
- package/dist/types/xchain-bridge.js +105 -0
- package/dist/types/xchain-bridge.js.map +1 -0
- package/dist/utils.d.ts +79 -0
- package/dist/utils.js +181 -0
- package/dist/utils.js.map +1 -0
- package/package.json +21 -17
- package/src/README.md +5 -0
- package/src/binary.ts +235 -0
- package/src/coretypes.ts +31 -0
- package/src/enums/README.md +144 -0
- package/src/enums/bytes.ts +80 -0
- package/src/enums/constants.ts +5 -0
- package/src/enums/definitions.json +3409 -0
- package/src/enums/field.ts +84 -0
- package/src/enums/index.ts +34 -0
- package/src/enums/utils-renumber.ts +134 -0
- package/src/enums/xrpl-definitions-base.ts +150 -0
- package/src/enums/xrpl-definitions.ts +33 -0
- package/src/hash-prefixes.ts +42 -0
- package/src/hashes.ts +75 -0
- package/src/index.ts +166 -0
- package/src/ledger-hashes.ts +191 -0
- package/src/quality.ts +38 -0
- package/src/serdes/binary-parser.ts +228 -0
- package/src/serdes/binary-serializer.ts +166 -0
- package/src/shamap.ts +189 -0
- package/src/types/account-id.ts +91 -0
- package/src/types/amount.ts +366 -0
- package/src/types/blob.ts +50 -0
- package/src/types/currency.ts +145 -0
- package/src/types/data.ts +496 -0
- package/src/types/dataType.ts +178 -0
- package/src/types/hash-128.ts +38 -0
- package/src/types/hash-160.ts +24 -0
- package/src/types/hash-192.ts +24 -0
- package/src/types/hash-256.ts +20 -0
- package/src/types/hash.ts +86 -0
- package/src/types/index.ts +74 -0
- package/src/types/issue.ts +140 -0
- package/src/types/json.ts +641 -0
- package/src/types/path-set.ts +294 -0
- package/src/types/serialized-type.ts +271 -0
- package/src/types/st-array.ts +117 -0
- package/src/types/st-number.ts +238 -0
- package/src/types/st-object.ts +219 -0
- package/src/types/uint-16.ts +58 -0
- package/src/types/uint-32.ts +64 -0
- package/src/types/uint-64.ts +141 -0
- package/src/types/uint-8.ts +57 -0
- package/src/types/uint.ts +60 -0
- package/src/types/vector-256.ts +83 -0
- package/src/types/xchain-bridge.ts +132 -0
- package/src/utils.ts +220 -0
- package/test/amount.test.js +0 -43
- package/test/binary-json.test.js +0 -45
- package/test/binary-parser.test.js +0 -396
- package/test/binary-serializer.test.js +0 -319
- package/test/definitions.test.js +0 -100
- package/test/fixtures/account-tx-transactions.db +0 -0
- package/test/fixtures/codec-fixtures.json +0 -4466
- package/test/fixtures/data-driven-tests.json +0 -2919
- package/test/fixtures/delivermin-tx-binary.json +0 -1
- package/test/fixtures/delivermin-tx.json +0 -98
- package/test/fixtures/deposit-preauth-tx-binary.json +0 -1
- package/test/fixtures/deposit-preauth-tx-meta-binary.json +0 -1
- package/test/fixtures/deposit-preauth-tx.json +0 -58
- package/test/fixtures/escrow-cancel-binary.json +0 -1
- package/test/fixtures/escrow-cancel-tx.json +0 -6
- package/test/fixtures/escrow-create-binary.json +0 -1
- package/test/fixtures/escrow-create-tx.json +0 -10
- package/test/fixtures/escrow-finish-binary.json +0 -1
- package/test/fixtures/escrow-finish-meta-binary.json +0 -1
- package/test/fixtures/escrow-finish-tx.json +0 -95
- package/test/fixtures/ledger-full-38129.json +0 -1
- package/test/fixtures/ledger-full-40000.json +0 -1
- package/test/fixtures/negative-unl.json +0 -12
- package/test/fixtures/nf-token.json +0 -547
- package/test/fixtures/payment-channel-claim-binary.json +0 -1
- package/test/fixtures/payment-channel-claim-tx.json +0 -8
- package/test/fixtures/payment-channel-create-binary.json +0 -1
- package/test/fixtures/payment-channel-create-tx.json +0 -11
- package/test/fixtures/payment-channel-fund-binary.json +0 -1
- package/test/fixtures/payment-channel-fund-tx.json +0 -7
- package/test/fixtures/remit-binary.json +0 -1
- package/test/fixtures/remit-tx.json +0 -39
- package/test/fixtures/signerlistset-tx-binary.json +0 -1
- package/test/fixtures/signerlistset-tx-meta-binary.json +0 -1
- package/test/fixtures/signerlistset-tx.json +0 -94
- package/test/fixtures/ticket-create-binary.json +0 -1
- package/test/fixtures/ticket-create-tx.json +0 -7
- package/test/fixtures/unl-report-binary.json +0 -1
- package/test/fixtures/unl-report-meta-binary.json +0 -1
- package/test/fixtures/unl-report.json +0 -89
- package/test/fixtures/x-codec-fixtures.json +0 -188
- package/test/hash.test.js +0 -135
- package/test/ledger.test.js +0 -29
- package/test/lower-case-hex.test.js +0 -46
- package/test/pseudo-transaction.test.js +0 -38
- package/test/quality.test.js +0 -15
- package/test/shamap.test.js +0 -89
- package/test/signing-data-encoding.test.js +0 -213
- package/test/tx-encode-decode.test.js +0 -119
- package/test/types.test.js +0 -34
- package/test/uint.test.js +0 -148
- package/test/utils.js +0 -30
- package/test/x-address.test.js +0 -181
|
@@ -1,2769 +1,3404 @@
|
|
|
1
1
|
{
|
|
2
|
-
"TYPES": {
|
|
3
|
-
"Done": -1,
|
|
4
|
-
"Unknown": -2,
|
|
5
|
-
"NotPresent": 0,
|
|
6
|
-
"UInt16": 1,
|
|
7
|
-
"UInt32": 2,
|
|
8
|
-
"UInt64": 3,
|
|
9
|
-
"Hash128": 4,
|
|
10
|
-
"Hash256": 5,
|
|
11
|
-
"Amount": 6,
|
|
12
|
-
"Blob": 7,
|
|
13
|
-
"AccountID": 8,
|
|
14
|
-
"STObject": 14,
|
|
15
|
-
"STArray": 15,
|
|
16
|
-
"UInt8": 16,
|
|
17
|
-
"Hash160": 17,
|
|
18
|
-
"PathSet": 18,
|
|
19
|
-
"Vector256": 19,
|
|
20
|
-
"UInt96": 20,
|
|
21
|
-
"UInt192": 21,
|
|
22
|
-
"UInt384": 22,
|
|
23
|
-
"UInt512": 23,
|
|
24
|
-
"Transaction": 10001,
|
|
25
|
-
"LedgerEntry": 10002,
|
|
26
|
-
"Validation": 10003,
|
|
27
|
-
"Metadata": 10004
|
|
28
|
-
},
|
|
29
|
-
"LEDGER_ENTRY_TYPES": {
|
|
30
|
-
"Invalid": -1,
|
|
31
|
-
"AccountRoot": 97,
|
|
32
|
-
"DirectoryNode": 100,
|
|
33
|
-
"RippleState": 114,
|
|
34
|
-
"Ticket": 84,
|
|
35
|
-
"SignerList": 83,
|
|
36
|
-
"Offer": 111,
|
|
37
|
-
"LedgerHashes": 104,
|
|
38
|
-
"Amendments": 102,
|
|
39
|
-
"FeeSettings": 115,
|
|
40
|
-
"ImportVLSequence": 73,
|
|
41
|
-
"Escrow": 117,
|
|
42
|
-
"PayChannel": 120,
|
|
43
|
-
"Check": 67,
|
|
44
|
-
"DepositPreauth": 112,
|
|
45
|
-
"NegativeUNL": 78,
|
|
46
|
-
"NFTokenPage": 80,
|
|
47
|
-
"NFTokenOffer": 55,
|
|
48
|
-
"URIToken": 85,
|
|
49
|
-
"UNLReport": 82,
|
|
50
|
-
"Any": -3,
|
|
51
|
-
"Child": -2,
|
|
52
|
-
"Nickname": 110,
|
|
53
|
-
"Contract": 99,
|
|
54
|
-
"GeneratorMap": 103,
|
|
55
|
-
"Hook": 72,
|
|
56
|
-
"HookState": 118,
|
|
57
|
-
"HookDefinition": 68,
|
|
58
|
-
"EmittedTxn": 69
|
|
59
|
-
},
|
|
60
2
|
"FIELDS": [
|
|
61
3
|
[
|
|
62
4
|
"Generic",
|
|
63
5
|
{
|
|
64
|
-
"nth": 0,
|
|
65
|
-
"isVLEncoded": false,
|
|
66
6
|
"isSerialized": false,
|
|
67
7
|
"isSigningField": false,
|
|
8
|
+
"isVLEncoded": false,
|
|
9
|
+
"nth": 0,
|
|
68
10
|
"type": "Unknown"
|
|
69
11
|
}
|
|
70
12
|
],
|
|
71
13
|
[
|
|
72
14
|
"Invalid",
|
|
73
15
|
{
|
|
74
|
-
"nth": -1,
|
|
75
|
-
"isVLEncoded": false,
|
|
76
16
|
"isSerialized": false,
|
|
77
17
|
"isSigningField": false,
|
|
18
|
+
"isVLEncoded": false,
|
|
19
|
+
"nth": -1,
|
|
78
20
|
"type": "Unknown"
|
|
79
21
|
}
|
|
80
22
|
],
|
|
81
23
|
[
|
|
82
24
|
"ObjectEndMarker",
|
|
83
25
|
{
|
|
84
|
-
"nth": 1,
|
|
85
|
-
"isVLEncoded": false,
|
|
86
26
|
"isSerialized": true,
|
|
87
27
|
"isSigningField": true,
|
|
28
|
+
"isVLEncoded": false,
|
|
29
|
+
"nth": 1,
|
|
88
30
|
"type": "STObject"
|
|
89
31
|
}
|
|
90
32
|
],
|
|
91
33
|
[
|
|
92
34
|
"ArrayEndMarker",
|
|
93
35
|
{
|
|
94
|
-
"nth": 1,
|
|
95
|
-
"isVLEncoded": false,
|
|
96
36
|
"isSerialized": true,
|
|
97
37
|
"isSigningField": true,
|
|
38
|
+
"isVLEncoded": false,
|
|
39
|
+
"nth": 1,
|
|
98
40
|
"type": "STArray"
|
|
99
41
|
}
|
|
100
42
|
],
|
|
101
43
|
[
|
|
102
|
-
"
|
|
44
|
+
"taker_gets_funded",
|
|
103
45
|
{
|
|
104
|
-
"nth": 257,
|
|
105
|
-
"isVLEncoded": false,
|
|
106
46
|
"isSerialized": false,
|
|
107
47
|
"isSigningField": false,
|
|
108
|
-
"type": "Hash256"
|
|
109
|
-
}
|
|
110
|
-
],
|
|
111
|
-
[
|
|
112
|
-
"index",
|
|
113
|
-
{
|
|
114
|
-
"nth": 258,
|
|
115
48
|
"isVLEncoded": false,
|
|
116
|
-
"isSerialized": false,
|
|
117
|
-
"isSigningField": false,
|
|
118
|
-
"type": "Hash256"
|
|
119
|
-
}
|
|
120
|
-
],
|
|
121
|
-
[
|
|
122
|
-
"taker_gets_funded",
|
|
123
|
-
{
|
|
124
49
|
"nth": 258,
|
|
125
|
-
"isVLEncoded": false,
|
|
126
|
-
"isSerialized": false,
|
|
127
|
-
"isSigningField": false,
|
|
128
50
|
"type": "Amount"
|
|
129
51
|
}
|
|
130
52
|
],
|
|
131
53
|
[
|
|
132
54
|
"taker_pays_funded",
|
|
133
55
|
{
|
|
134
|
-
"nth": 259,
|
|
135
|
-
"isVLEncoded": false,
|
|
136
56
|
"isSerialized": false,
|
|
137
57
|
"isSigningField": false,
|
|
58
|
+
"isVLEncoded": false,
|
|
59
|
+
"nth": 259,
|
|
138
60
|
"type": "Amount"
|
|
139
61
|
}
|
|
140
62
|
],
|
|
141
63
|
[
|
|
142
|
-
"
|
|
64
|
+
"LedgerEntryType",
|
|
143
65
|
{
|
|
144
|
-
"
|
|
66
|
+
"isSerialized": true,
|
|
67
|
+
"isSigningField": true,
|
|
145
68
|
"isVLEncoded": false,
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"type": "LedgerEntry"
|
|
69
|
+
"nth": 1,
|
|
70
|
+
"type": "UInt16"
|
|
149
71
|
}
|
|
150
72
|
],
|
|
151
73
|
[
|
|
152
|
-
"
|
|
74
|
+
"TransactionType",
|
|
153
75
|
{
|
|
154
|
-
"
|
|
76
|
+
"isSerialized": true,
|
|
77
|
+
"isSigningField": true,
|
|
155
78
|
"isVLEncoded": false,
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"type": "Transaction"
|
|
79
|
+
"nth": 2,
|
|
80
|
+
"type": "UInt16"
|
|
159
81
|
}
|
|
160
82
|
],
|
|
161
83
|
[
|
|
162
|
-
"
|
|
84
|
+
"SignerWeight",
|
|
163
85
|
{
|
|
164
|
-
"
|
|
86
|
+
"isSerialized": true,
|
|
87
|
+
"isSigningField": true,
|
|
165
88
|
"isVLEncoded": false,
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"type": "Validation"
|
|
89
|
+
"nth": 3,
|
|
90
|
+
"type": "UInt16"
|
|
169
91
|
}
|
|
170
92
|
],
|
|
171
93
|
[
|
|
172
|
-
"
|
|
94
|
+
"TransferFee",
|
|
173
95
|
{
|
|
174
|
-
"
|
|
96
|
+
"isSerialized": true,
|
|
97
|
+
"isSigningField": true,
|
|
175
98
|
"isVLEncoded": false,
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"type": "Metadata"
|
|
99
|
+
"nth": 4,
|
|
100
|
+
"type": "UInt16"
|
|
179
101
|
}
|
|
180
102
|
],
|
|
181
103
|
[
|
|
182
|
-
"
|
|
104
|
+
"TradingFee",
|
|
183
105
|
{
|
|
184
|
-
"nth": 1,
|
|
185
|
-
"isVLEncoded": false,
|
|
186
106
|
"isSerialized": true,
|
|
187
107
|
"isSigningField": true,
|
|
188
|
-
"
|
|
108
|
+
"isVLEncoded": false,
|
|
109
|
+
"nth": 5,
|
|
110
|
+
"type": "UInt16"
|
|
189
111
|
}
|
|
190
112
|
],
|
|
191
113
|
[
|
|
192
|
-
"
|
|
114
|
+
"DiscountedFee",
|
|
193
115
|
{
|
|
194
|
-
"nth": 2,
|
|
195
|
-
"isVLEncoded": false,
|
|
196
116
|
"isSerialized": true,
|
|
197
117
|
"isSigningField": true,
|
|
198
|
-
"
|
|
118
|
+
"isVLEncoded": false,
|
|
119
|
+
"nth": 6,
|
|
120
|
+
"type": "UInt16"
|
|
199
121
|
}
|
|
200
122
|
],
|
|
201
123
|
[
|
|
202
|
-
"
|
|
124
|
+
"Version",
|
|
203
125
|
{
|
|
204
|
-
"nth": 3,
|
|
205
|
-
"isVLEncoded": false,
|
|
206
126
|
"isSerialized": true,
|
|
207
127
|
"isSigningField": true,
|
|
208
|
-
"
|
|
128
|
+
"isVLEncoded": false,
|
|
129
|
+
"nth": 16,
|
|
130
|
+
"type": "UInt16"
|
|
209
131
|
}
|
|
210
132
|
],
|
|
211
133
|
[
|
|
212
|
-
"
|
|
134
|
+
"LedgerFixType",
|
|
213
135
|
{
|
|
214
|
-
"nth": 16,
|
|
215
|
-
"isVLEncoded": false,
|
|
216
136
|
"isSerialized": true,
|
|
217
137
|
"isSigningField": true,
|
|
218
|
-
"
|
|
138
|
+
"isVLEncoded": false,
|
|
139
|
+
"nth": 21,
|
|
140
|
+
"type": "UInt16"
|
|
219
141
|
}
|
|
220
142
|
],
|
|
221
143
|
[
|
|
222
|
-
"
|
|
144
|
+
"NetworkID",
|
|
223
145
|
{
|
|
224
|
-
"nth": 17,
|
|
225
|
-
"isVLEncoded": false,
|
|
226
146
|
"isSerialized": true,
|
|
227
147
|
"isSigningField": true,
|
|
228
|
-
"
|
|
148
|
+
"isVLEncoded": false,
|
|
149
|
+
"nth": 1,
|
|
150
|
+
"type": "UInt32"
|
|
229
151
|
}
|
|
230
152
|
],
|
|
231
153
|
[
|
|
232
|
-
"
|
|
154
|
+
"Flags",
|
|
233
155
|
{
|
|
234
|
-
"nth": 18,
|
|
235
|
-
"isVLEncoded": false,
|
|
236
156
|
"isSerialized": true,
|
|
237
157
|
"isSigningField": true,
|
|
238
|
-
"
|
|
158
|
+
"isVLEncoded": false,
|
|
159
|
+
"nth": 2,
|
|
160
|
+
"type": "UInt32"
|
|
239
161
|
}
|
|
240
162
|
],
|
|
241
163
|
[
|
|
242
|
-
"
|
|
164
|
+
"SourceTag",
|
|
243
165
|
{
|
|
244
|
-
"nth": 1,
|
|
245
|
-
"isVLEncoded": false,
|
|
246
166
|
"isSerialized": true,
|
|
247
167
|
"isSigningField": true,
|
|
248
|
-
"
|
|
168
|
+
"isVLEncoded": false,
|
|
169
|
+
"nth": 3,
|
|
170
|
+
"type": "UInt32"
|
|
249
171
|
}
|
|
250
172
|
],
|
|
251
173
|
[
|
|
252
|
-
"
|
|
174
|
+
"Sequence",
|
|
253
175
|
{
|
|
254
|
-
"nth": 2,
|
|
255
|
-
"isVLEncoded": false,
|
|
256
176
|
"isSerialized": true,
|
|
257
177
|
"isSigningField": true,
|
|
258
|
-
"
|
|
178
|
+
"isVLEncoded": false,
|
|
179
|
+
"nth": 4,
|
|
180
|
+
"type": "UInt32"
|
|
259
181
|
}
|
|
260
182
|
],
|
|
261
183
|
[
|
|
262
|
-
"
|
|
184
|
+
"PreviousTxnLgrSeq",
|
|
263
185
|
{
|
|
264
|
-
"nth": 3,
|
|
265
|
-
"isVLEncoded": false,
|
|
266
186
|
"isSerialized": true,
|
|
267
187
|
"isSigningField": true,
|
|
268
|
-
"
|
|
188
|
+
"isVLEncoded": false,
|
|
189
|
+
"nth": 5,
|
|
190
|
+
"type": "UInt32"
|
|
269
191
|
}
|
|
270
192
|
],
|
|
271
193
|
[
|
|
272
|
-
"
|
|
194
|
+
"LedgerSequence",
|
|
273
195
|
{
|
|
274
|
-
"nth": 4,
|
|
275
|
-
"isVLEncoded": false,
|
|
276
196
|
"isSerialized": true,
|
|
277
197
|
"isSigningField": true,
|
|
278
|
-
"
|
|
198
|
+
"isVLEncoded": false,
|
|
199
|
+
"nth": 6,
|
|
200
|
+
"type": "UInt32"
|
|
279
201
|
}
|
|
280
202
|
],
|
|
281
203
|
[
|
|
282
|
-
"
|
|
204
|
+
"CloseTime",
|
|
283
205
|
{
|
|
284
|
-
"nth": 16,
|
|
285
|
-
"isVLEncoded": false,
|
|
286
206
|
"isSerialized": true,
|
|
287
207
|
"isSigningField": true,
|
|
288
|
-
"
|
|
208
|
+
"isVLEncoded": false,
|
|
209
|
+
"nth": 7,
|
|
210
|
+
"type": "UInt32"
|
|
289
211
|
}
|
|
290
212
|
],
|
|
291
213
|
[
|
|
292
|
-
"
|
|
214
|
+
"ParentCloseTime",
|
|
293
215
|
{
|
|
294
|
-
"nth": 17,
|
|
295
|
-
"isVLEncoded": false,
|
|
296
216
|
"isSerialized": true,
|
|
297
217
|
"isSigningField": true,
|
|
298
|
-
"
|
|
218
|
+
"isVLEncoded": false,
|
|
219
|
+
"nth": 8,
|
|
220
|
+
"type": "UInt32"
|
|
299
221
|
}
|
|
300
222
|
],
|
|
301
223
|
[
|
|
302
|
-
"
|
|
224
|
+
"SigningTime",
|
|
303
225
|
{
|
|
304
|
-
"nth": 18,
|
|
305
|
-
"isVLEncoded": false,
|
|
306
226
|
"isSerialized": true,
|
|
307
227
|
"isSigningField": true,
|
|
308
|
-
"
|
|
228
|
+
"isVLEncoded": false,
|
|
229
|
+
"nth": 9,
|
|
230
|
+
"type": "UInt32"
|
|
309
231
|
}
|
|
310
232
|
],
|
|
311
233
|
[
|
|
312
|
-
"
|
|
234
|
+
"Expiration",
|
|
313
235
|
{
|
|
314
|
-
"nth": 19,
|
|
315
|
-
"isVLEncoded": false,
|
|
316
236
|
"isSerialized": true,
|
|
317
237
|
"isSigningField": true,
|
|
318
|
-
"
|
|
238
|
+
"isVLEncoded": false,
|
|
239
|
+
"nth": 10,
|
|
240
|
+
"type": "UInt32"
|
|
319
241
|
}
|
|
320
242
|
],
|
|
321
243
|
[
|
|
322
|
-
"
|
|
244
|
+
"TransferRate",
|
|
323
245
|
{
|
|
324
|
-
"nth": 20,
|
|
325
|
-
"isVLEncoded": false,
|
|
326
246
|
"isSerialized": true,
|
|
327
247
|
"isSigningField": true,
|
|
328
|
-
"
|
|
248
|
+
"isVLEncoded": false,
|
|
249
|
+
"nth": 11,
|
|
250
|
+
"type": "UInt32"
|
|
329
251
|
}
|
|
330
252
|
],
|
|
331
253
|
[
|
|
332
|
-
"
|
|
254
|
+
"WalletSize",
|
|
333
255
|
{
|
|
334
|
-
"nth": 1,
|
|
335
|
-
"isVLEncoded": false,
|
|
336
256
|
"isSerialized": true,
|
|
337
257
|
"isSigningField": true,
|
|
258
|
+
"isVLEncoded": false,
|
|
259
|
+
"nth": 12,
|
|
338
260
|
"type": "UInt32"
|
|
339
261
|
}
|
|
340
262
|
],
|
|
341
263
|
[
|
|
342
|
-
"
|
|
264
|
+
"OwnerCount",
|
|
343
265
|
{
|
|
344
|
-
"nth": 2,
|
|
345
|
-
"isVLEncoded": false,
|
|
346
266
|
"isSerialized": true,
|
|
347
267
|
"isSigningField": true,
|
|
268
|
+
"isVLEncoded": false,
|
|
269
|
+
"nth": 13,
|
|
348
270
|
"type": "UInt32"
|
|
349
271
|
}
|
|
350
272
|
],
|
|
351
273
|
[
|
|
352
|
-
"
|
|
274
|
+
"DestinationTag",
|
|
353
275
|
{
|
|
354
|
-
"nth": 3,
|
|
355
|
-
"isVLEncoded": false,
|
|
356
276
|
"isSerialized": true,
|
|
357
277
|
"isSigningField": true,
|
|
278
|
+
"isVLEncoded": false,
|
|
279
|
+
"nth": 14,
|
|
358
280
|
"type": "UInt32"
|
|
359
281
|
}
|
|
360
282
|
],
|
|
361
283
|
[
|
|
362
|
-
"
|
|
363
|
-
{
|
|
364
|
-
"nth": 4,
|
|
365
|
-
"isVLEncoded": false,
|
|
366
|
-
"isSerialized": true,
|
|
367
|
-
"isSigningField": true,
|
|
368
|
-
"type": "UInt32"
|
|
369
|
-
}
|
|
370
|
-
],
|
|
371
|
-
[
|
|
372
|
-
"PreviousTxnLgrSeq",
|
|
373
|
-
{
|
|
374
|
-
"nth": 5,
|
|
375
|
-
"isVLEncoded": false,
|
|
376
|
-
"isSerialized": true,
|
|
377
|
-
"isSigningField": true,
|
|
378
|
-
"type": "UInt32"
|
|
379
|
-
}
|
|
380
|
-
],
|
|
381
|
-
[
|
|
382
|
-
"LedgerSequence",
|
|
383
|
-
{
|
|
384
|
-
"nth": 6,
|
|
385
|
-
"isVLEncoded": false,
|
|
386
|
-
"isSerialized": true,
|
|
387
|
-
"isSigningField": true,
|
|
388
|
-
"type": "UInt32"
|
|
389
|
-
}
|
|
390
|
-
],
|
|
391
|
-
[
|
|
392
|
-
"CloseTime",
|
|
393
|
-
{
|
|
394
|
-
"nth": 7,
|
|
395
|
-
"isVLEncoded": false,
|
|
396
|
-
"isSerialized": true,
|
|
397
|
-
"isSigningField": true,
|
|
398
|
-
"type": "UInt32"
|
|
399
|
-
}
|
|
400
|
-
],
|
|
401
|
-
[
|
|
402
|
-
"ParentCloseTime",
|
|
403
|
-
{
|
|
404
|
-
"nth": 8,
|
|
405
|
-
"isVLEncoded": false,
|
|
406
|
-
"isSerialized": true,
|
|
407
|
-
"isSigningField": true,
|
|
408
|
-
"type": "UInt32"
|
|
409
|
-
}
|
|
410
|
-
],
|
|
411
|
-
[
|
|
412
|
-
"SigningTime",
|
|
413
|
-
{
|
|
414
|
-
"nth": 9,
|
|
415
|
-
"isVLEncoded": false,
|
|
416
|
-
"isSerialized": true,
|
|
417
|
-
"isSigningField": true,
|
|
418
|
-
"type": "UInt32"
|
|
419
|
-
}
|
|
420
|
-
],
|
|
421
|
-
[
|
|
422
|
-
"Expiration",
|
|
423
|
-
{
|
|
424
|
-
"nth": 10,
|
|
425
|
-
"isVLEncoded": false,
|
|
426
|
-
"isSerialized": true,
|
|
427
|
-
"isSigningField": true,
|
|
428
|
-
"type": "UInt32"
|
|
429
|
-
}
|
|
430
|
-
],
|
|
431
|
-
[
|
|
432
|
-
"TransferRate",
|
|
284
|
+
"LastUpdateTime",
|
|
433
285
|
{
|
|
434
|
-
"nth": 11,
|
|
435
|
-
"isVLEncoded": false,
|
|
436
286
|
"isSerialized": true,
|
|
437
287
|
"isSigningField": true,
|
|
438
|
-
"type": "UInt32"
|
|
439
|
-
}
|
|
440
|
-
],
|
|
441
|
-
[
|
|
442
|
-
"WalletSize",
|
|
443
|
-
{
|
|
444
|
-
"nth": 12,
|
|
445
288
|
"isVLEncoded": false,
|
|
446
|
-
"
|
|
447
|
-
"isSigningField": true,
|
|
289
|
+
"nth": 15,
|
|
448
290
|
"type": "UInt32"
|
|
449
291
|
}
|
|
450
292
|
],
|
|
451
293
|
[
|
|
452
|
-
"
|
|
294
|
+
"HighQualityIn",
|
|
453
295
|
{
|
|
454
|
-
"nth": 13,
|
|
455
|
-
"isVLEncoded": false,
|
|
456
296
|
"isSerialized": true,
|
|
457
297
|
"isSigningField": true,
|
|
458
|
-
"type": "UInt32"
|
|
459
|
-
}
|
|
460
|
-
],
|
|
461
|
-
[
|
|
462
|
-
"DestinationTag",
|
|
463
|
-
{
|
|
464
|
-
"nth": 14,
|
|
465
298
|
"isVLEncoded": false,
|
|
466
|
-
"isSerialized": true,
|
|
467
|
-
"isSigningField": true,
|
|
468
|
-
"type": "UInt32"
|
|
469
|
-
}
|
|
470
|
-
],
|
|
471
|
-
[
|
|
472
|
-
"HighQualityIn",
|
|
473
|
-
{
|
|
474
299
|
"nth": 16,
|
|
475
|
-
"isVLEncoded": false,
|
|
476
|
-
"isSerialized": true,
|
|
477
|
-
"isSigningField": true,
|
|
478
300
|
"type": "UInt32"
|
|
479
301
|
}
|
|
480
302
|
],
|
|
481
303
|
[
|
|
482
304
|
"HighQualityOut",
|
|
483
305
|
{
|
|
484
|
-
"nth": 17,
|
|
485
|
-
"isVLEncoded": false,
|
|
486
306
|
"isSerialized": true,
|
|
487
307
|
"isSigningField": true,
|
|
308
|
+
"isVLEncoded": false,
|
|
309
|
+
"nth": 17,
|
|
488
310
|
"type": "UInt32"
|
|
489
311
|
}
|
|
490
312
|
],
|
|
491
313
|
[
|
|
492
314
|
"LowQualityIn",
|
|
493
315
|
{
|
|
494
|
-
"nth": 18,
|
|
495
|
-
"isVLEncoded": false,
|
|
496
316
|
"isSerialized": true,
|
|
497
317
|
"isSigningField": true,
|
|
318
|
+
"isVLEncoded": false,
|
|
319
|
+
"nth": 18,
|
|
498
320
|
"type": "UInt32"
|
|
499
321
|
}
|
|
500
322
|
],
|
|
501
323
|
[
|
|
502
324
|
"LowQualityOut",
|
|
503
325
|
{
|
|
504
|
-
"nth": 19,
|
|
505
|
-
"isVLEncoded": false,
|
|
506
326
|
"isSerialized": true,
|
|
507
327
|
"isSigningField": true,
|
|
328
|
+
"isVLEncoded": false,
|
|
329
|
+
"nth": 19,
|
|
508
330
|
"type": "UInt32"
|
|
509
331
|
}
|
|
510
332
|
],
|
|
511
333
|
[
|
|
512
334
|
"QualityIn",
|
|
513
335
|
{
|
|
514
|
-
"nth": 20,
|
|
515
|
-
"isVLEncoded": false,
|
|
516
336
|
"isSerialized": true,
|
|
517
337
|
"isSigningField": true,
|
|
338
|
+
"isVLEncoded": false,
|
|
339
|
+
"nth": 20,
|
|
518
340
|
"type": "UInt32"
|
|
519
341
|
}
|
|
520
342
|
],
|
|
521
343
|
[
|
|
522
344
|
"QualityOut",
|
|
523
345
|
{
|
|
524
|
-
"nth": 21,
|
|
525
|
-
"isVLEncoded": false,
|
|
526
346
|
"isSerialized": true,
|
|
527
347
|
"isSigningField": true,
|
|
348
|
+
"isVLEncoded": false,
|
|
349
|
+
"nth": 21,
|
|
528
350
|
"type": "UInt32"
|
|
529
351
|
}
|
|
530
352
|
],
|
|
531
353
|
[
|
|
532
354
|
"StampEscrow",
|
|
533
355
|
{
|
|
534
|
-
"nth": 22,
|
|
535
|
-
"isVLEncoded": false,
|
|
536
356
|
"isSerialized": true,
|
|
537
357
|
"isSigningField": true,
|
|
358
|
+
"isVLEncoded": false,
|
|
359
|
+
"nth": 22,
|
|
538
360
|
"type": "UInt32"
|
|
539
361
|
}
|
|
540
362
|
],
|
|
541
363
|
[
|
|
542
364
|
"BondAmount",
|
|
543
365
|
{
|
|
544
|
-
"nth": 23,
|
|
545
|
-
"isVLEncoded": false,
|
|
546
366
|
"isSerialized": true,
|
|
547
367
|
"isSigningField": true,
|
|
368
|
+
"isVLEncoded": false,
|
|
369
|
+
"nth": 23,
|
|
548
370
|
"type": "UInt32"
|
|
549
371
|
}
|
|
550
372
|
],
|
|
551
373
|
[
|
|
552
374
|
"LoadFee",
|
|
553
375
|
{
|
|
554
|
-
"nth": 24,
|
|
555
|
-
"isVLEncoded": false,
|
|
556
376
|
"isSerialized": true,
|
|
557
377
|
"isSigningField": true,
|
|
378
|
+
"isVLEncoded": false,
|
|
379
|
+
"nth": 24,
|
|
558
380
|
"type": "UInt32"
|
|
559
381
|
}
|
|
560
382
|
],
|
|
561
383
|
[
|
|
562
384
|
"OfferSequence",
|
|
563
385
|
{
|
|
564
|
-
"nth": 25,
|
|
565
|
-
"isVLEncoded": false,
|
|
566
386
|
"isSerialized": true,
|
|
567
387
|
"isSigningField": true,
|
|
388
|
+
"isVLEncoded": false,
|
|
389
|
+
"nth": 25,
|
|
568
390
|
"type": "UInt32"
|
|
569
391
|
}
|
|
570
392
|
],
|
|
571
393
|
[
|
|
572
394
|
"FirstLedgerSequence",
|
|
573
395
|
{
|
|
574
|
-
"nth": 26,
|
|
575
|
-
"isVLEncoded": false,
|
|
576
396
|
"isSerialized": true,
|
|
577
397
|
"isSigningField": true,
|
|
398
|
+
"isVLEncoded": false,
|
|
399
|
+
"nth": 26,
|
|
578
400
|
"type": "UInt32"
|
|
579
401
|
}
|
|
580
402
|
],
|
|
581
403
|
[
|
|
582
404
|
"LastLedgerSequence",
|
|
583
405
|
{
|
|
584
|
-
"nth": 27,
|
|
585
|
-
"isVLEncoded": false,
|
|
586
406
|
"isSerialized": true,
|
|
587
407
|
"isSigningField": true,
|
|
408
|
+
"isVLEncoded": false,
|
|
409
|
+
"nth": 27,
|
|
588
410
|
"type": "UInt32"
|
|
589
411
|
}
|
|
590
412
|
],
|
|
591
413
|
[
|
|
592
414
|
"TransactionIndex",
|
|
593
415
|
{
|
|
594
|
-
"nth": 28,
|
|
595
|
-
"isVLEncoded": false,
|
|
596
416
|
"isSerialized": true,
|
|
597
417
|
"isSigningField": true,
|
|
418
|
+
"isVLEncoded": false,
|
|
419
|
+
"nth": 28,
|
|
598
420
|
"type": "UInt32"
|
|
599
421
|
}
|
|
600
422
|
],
|
|
601
423
|
[
|
|
602
424
|
"OperationLimit",
|
|
603
425
|
{
|
|
604
|
-
"nth": 29,
|
|
605
|
-
"isVLEncoded": false,
|
|
606
426
|
"isSerialized": true,
|
|
607
427
|
"isSigningField": true,
|
|
428
|
+
"isVLEncoded": false,
|
|
429
|
+
"nth": 29,
|
|
608
430
|
"type": "UInt32"
|
|
609
431
|
}
|
|
610
432
|
],
|
|
611
433
|
[
|
|
612
434
|
"ReferenceFeeUnits",
|
|
613
435
|
{
|
|
614
|
-
"nth": 30,
|
|
615
|
-
"isVLEncoded": false,
|
|
616
436
|
"isSerialized": true,
|
|
617
437
|
"isSigningField": true,
|
|
438
|
+
"isVLEncoded": false,
|
|
439
|
+
"nth": 30,
|
|
618
440
|
"type": "UInt32"
|
|
619
441
|
}
|
|
620
442
|
],
|
|
621
443
|
[
|
|
622
444
|
"ReserveBase",
|
|
623
445
|
{
|
|
624
|
-
"nth": 31,
|
|
625
|
-
"isVLEncoded": false,
|
|
626
446
|
"isSerialized": true,
|
|
627
447
|
"isSigningField": true,
|
|
448
|
+
"isVLEncoded": false,
|
|
449
|
+
"nth": 31,
|
|
628
450
|
"type": "UInt32"
|
|
629
451
|
}
|
|
630
452
|
],
|
|
631
453
|
[
|
|
632
454
|
"ReserveIncrement",
|
|
633
455
|
{
|
|
634
|
-
"nth": 32,
|
|
635
|
-
"isVLEncoded": false,
|
|
636
456
|
"isSerialized": true,
|
|
637
457
|
"isSigningField": true,
|
|
458
|
+
"isVLEncoded": false,
|
|
459
|
+
"nth": 32,
|
|
638
460
|
"type": "UInt32"
|
|
639
461
|
}
|
|
640
462
|
],
|
|
641
463
|
[
|
|
642
464
|
"SetFlag",
|
|
643
465
|
{
|
|
644
|
-
"nth": 33,
|
|
645
|
-
"isVLEncoded": false,
|
|
646
466
|
"isSerialized": true,
|
|
647
467
|
"isSigningField": true,
|
|
468
|
+
"isVLEncoded": false,
|
|
469
|
+
"nth": 33,
|
|
648
470
|
"type": "UInt32"
|
|
649
471
|
}
|
|
650
472
|
],
|
|
651
473
|
[
|
|
652
474
|
"ClearFlag",
|
|
653
475
|
{
|
|
654
|
-
"nth": 34,
|
|
655
|
-
"isVLEncoded": false,
|
|
656
476
|
"isSerialized": true,
|
|
657
477
|
"isSigningField": true,
|
|
478
|
+
"isVLEncoded": false,
|
|
479
|
+
"nth": 34,
|
|
658
480
|
"type": "UInt32"
|
|
659
481
|
}
|
|
660
482
|
],
|
|
661
483
|
[
|
|
662
484
|
"SignerQuorum",
|
|
663
485
|
{
|
|
664
|
-
"nth": 35,
|
|
665
|
-
"isVLEncoded": false,
|
|
666
486
|
"isSerialized": true,
|
|
667
487
|
"isSigningField": true,
|
|
488
|
+
"isVLEncoded": false,
|
|
489
|
+
"nth": 35,
|
|
668
490
|
"type": "UInt32"
|
|
669
491
|
}
|
|
670
492
|
],
|
|
671
493
|
[
|
|
672
494
|
"CancelAfter",
|
|
673
495
|
{
|
|
674
|
-
"nth": 36,
|
|
675
|
-
"isVLEncoded": false,
|
|
676
496
|
"isSerialized": true,
|
|
677
497
|
"isSigningField": true,
|
|
498
|
+
"isVLEncoded": false,
|
|
499
|
+
"nth": 36,
|
|
678
500
|
"type": "UInt32"
|
|
679
501
|
}
|
|
680
502
|
],
|
|
681
503
|
[
|
|
682
504
|
"FinishAfter",
|
|
683
505
|
{
|
|
684
|
-
"nth": 37,
|
|
685
|
-
"isVLEncoded": false,
|
|
686
506
|
"isSerialized": true,
|
|
687
507
|
"isSigningField": true,
|
|
508
|
+
"isVLEncoded": false,
|
|
509
|
+
"nth": 37,
|
|
688
510
|
"type": "UInt32"
|
|
689
511
|
}
|
|
690
512
|
],
|
|
691
513
|
[
|
|
692
514
|
"SignerListID",
|
|
693
515
|
{
|
|
694
|
-
"nth": 38,
|
|
695
|
-
"isVLEncoded": false,
|
|
696
516
|
"isSerialized": true,
|
|
697
517
|
"isSigningField": true,
|
|
518
|
+
"isVLEncoded": false,
|
|
519
|
+
"nth": 38,
|
|
698
520
|
"type": "UInt32"
|
|
699
521
|
}
|
|
700
522
|
],
|
|
701
523
|
[
|
|
702
524
|
"SettleDelay",
|
|
703
525
|
{
|
|
704
|
-
"nth": 39,
|
|
705
|
-
"isVLEncoded": false,
|
|
706
526
|
"isSerialized": true,
|
|
707
527
|
"isSigningField": true,
|
|
528
|
+
"isVLEncoded": false,
|
|
529
|
+
"nth": 39,
|
|
708
530
|
"type": "UInt32"
|
|
709
531
|
}
|
|
710
532
|
],
|
|
711
533
|
[
|
|
712
534
|
"TicketCount",
|
|
713
535
|
{
|
|
714
|
-
"nth": 40,
|
|
715
|
-
"isVLEncoded": false,
|
|
716
536
|
"isSerialized": true,
|
|
717
537
|
"isSigningField": true,
|
|
538
|
+
"isVLEncoded": false,
|
|
539
|
+
"nth": 40,
|
|
718
540
|
"type": "UInt32"
|
|
719
541
|
}
|
|
720
542
|
],
|
|
721
543
|
[
|
|
722
544
|
"TicketSequence",
|
|
723
545
|
{
|
|
724
|
-
"nth": 41,
|
|
725
|
-
"isVLEncoded": false,
|
|
726
546
|
"isSerialized": true,
|
|
727
547
|
"isSigningField": true,
|
|
548
|
+
"isVLEncoded": false,
|
|
549
|
+
"nth": 41,
|
|
728
550
|
"type": "UInt32"
|
|
729
551
|
}
|
|
730
552
|
],
|
|
731
553
|
[
|
|
732
554
|
"NFTokenTaxon",
|
|
733
555
|
{
|
|
734
|
-
"nth": 42,
|
|
735
|
-
"isVLEncoded": false,
|
|
736
556
|
"isSerialized": true,
|
|
737
557
|
"isSigningField": true,
|
|
558
|
+
"isVLEncoded": false,
|
|
559
|
+
"nth": 42,
|
|
738
560
|
"type": "UInt32"
|
|
739
561
|
}
|
|
740
562
|
],
|
|
741
563
|
[
|
|
742
564
|
"MintedNFTokens",
|
|
743
565
|
{
|
|
744
|
-
"nth": 43,
|
|
745
|
-
"isVLEncoded": false,
|
|
746
566
|
"isSerialized": true,
|
|
747
567
|
"isSigningField": true,
|
|
568
|
+
"isVLEncoded": false,
|
|
569
|
+
"nth": 43,
|
|
748
570
|
"type": "UInt32"
|
|
749
571
|
}
|
|
750
572
|
],
|
|
751
573
|
[
|
|
752
574
|
"BurnedNFTokens",
|
|
753
575
|
{
|
|
754
|
-
"nth": 44,
|
|
755
|
-
"isVLEncoded": false,
|
|
756
576
|
"isSerialized": true,
|
|
757
577
|
"isSigningField": true,
|
|
578
|
+
"isVLEncoded": false,
|
|
579
|
+
"nth": 44,
|
|
758
580
|
"type": "UInt32"
|
|
759
581
|
}
|
|
760
582
|
],
|
|
761
583
|
[
|
|
762
|
-
"
|
|
584
|
+
"VoteWeight",
|
|
763
585
|
{
|
|
764
|
-
"nth": 45,
|
|
765
|
-
"isVLEncoded": false,
|
|
766
586
|
"isSerialized": true,
|
|
767
587
|
"isSigningField": true,
|
|
588
|
+
"isVLEncoded": false,
|
|
589
|
+
"nth": 48,
|
|
768
590
|
"type": "UInt32"
|
|
769
591
|
}
|
|
770
592
|
],
|
|
771
593
|
[
|
|
772
|
-
"
|
|
594
|
+
"FirstNFTokenSequence",
|
|
773
595
|
{
|
|
774
|
-
"nth": 46,
|
|
775
|
-
"isVLEncoded": false,
|
|
776
596
|
"isSerialized": true,
|
|
777
597
|
"isSigningField": true,
|
|
598
|
+
"isVLEncoded": false,
|
|
599
|
+
"nth": 50,
|
|
778
600
|
"type": "UInt32"
|
|
779
601
|
}
|
|
780
602
|
],
|
|
781
603
|
[
|
|
782
|
-
"
|
|
604
|
+
"OracleDocumentID",
|
|
783
605
|
{
|
|
784
|
-
"nth": 49,
|
|
785
|
-
"isVLEncoded": false,
|
|
786
606
|
"isSerialized": true,
|
|
787
607
|
"isSigningField": true,
|
|
608
|
+
"isVLEncoded": false,
|
|
609
|
+
"nth": 51,
|
|
788
610
|
"type": "UInt32"
|
|
789
611
|
}
|
|
790
612
|
],
|
|
791
613
|
[
|
|
792
|
-
"
|
|
614
|
+
"PermissionValue",
|
|
793
615
|
{
|
|
794
|
-
"nth": 50,
|
|
795
|
-
"isVLEncoded": false,
|
|
796
616
|
"isSerialized": true,
|
|
797
617
|
"isSigningField": true,
|
|
618
|
+
"isVLEncoded": false,
|
|
619
|
+
"nth": 52,
|
|
798
620
|
"type": "UInt32"
|
|
799
621
|
}
|
|
800
622
|
],
|
|
801
623
|
[
|
|
802
|
-
"
|
|
624
|
+
"MutableFlags",
|
|
803
625
|
{
|
|
804
|
-
"nth": 96,
|
|
805
|
-
"isVLEncoded": false,
|
|
806
626
|
"isSerialized": true,
|
|
807
627
|
"isSigningField": true,
|
|
628
|
+
"isVLEncoded": false,
|
|
629
|
+
"nth": 53,
|
|
808
630
|
"type": "UInt32"
|
|
809
631
|
}
|
|
810
632
|
],
|
|
811
633
|
[
|
|
812
|
-
"
|
|
634
|
+
"ExtensionComputeLimit",
|
|
813
635
|
{
|
|
814
|
-
"nth": 97,
|
|
815
|
-
"isVLEncoded": false,
|
|
816
636
|
"isSerialized": true,
|
|
817
637
|
"isSigningField": true,
|
|
638
|
+
"isVLEncoded": false,
|
|
639
|
+
"nth": 54,
|
|
818
640
|
"type": "UInt32"
|
|
819
641
|
}
|
|
820
642
|
],
|
|
821
643
|
[
|
|
822
|
-
"
|
|
644
|
+
"ExtensionSizeLimit",
|
|
823
645
|
{
|
|
824
|
-
"nth": 98,
|
|
825
|
-
"isVLEncoded": false,
|
|
826
646
|
"isSerialized": true,
|
|
827
647
|
"isSigningField": true,
|
|
648
|
+
"isVLEncoded": false,
|
|
649
|
+
"nth": 55,
|
|
828
650
|
"type": "UInt32"
|
|
829
651
|
}
|
|
830
652
|
],
|
|
831
653
|
[
|
|
832
|
-
"
|
|
654
|
+
"GasPrice",
|
|
833
655
|
{
|
|
834
|
-
"nth": 99,
|
|
835
|
-
"isVLEncoded": false,
|
|
836
656
|
"isSerialized": true,
|
|
837
657
|
"isSigningField": true,
|
|
658
|
+
"isVLEncoded": false,
|
|
659
|
+
"nth": 56,
|
|
838
660
|
"type": "UInt32"
|
|
839
661
|
}
|
|
840
662
|
],
|
|
841
663
|
[
|
|
842
|
-
"
|
|
664
|
+
"ComputationAllowance",
|
|
843
665
|
{
|
|
844
|
-
"nth": 100,
|
|
845
|
-
"isVLEncoded": false,
|
|
846
666
|
"isSerialized": true,
|
|
847
667
|
"isSigningField": true,
|
|
668
|
+
"isVLEncoded": false,
|
|
669
|
+
"nth": 57,
|
|
848
670
|
"type": "UInt32"
|
|
849
671
|
}
|
|
850
672
|
],
|
|
851
673
|
[
|
|
852
|
-
"
|
|
674
|
+
"GasUsed",
|
|
853
675
|
{
|
|
854
|
-
"nth": 1,
|
|
855
|
-
"isVLEncoded": false,
|
|
856
676
|
"isSerialized": true,
|
|
857
677
|
"isSigningField": true,
|
|
858
|
-
"
|
|
678
|
+
"isVLEncoded": false,
|
|
679
|
+
"nth": 58,
|
|
680
|
+
"type": "UInt32"
|
|
859
681
|
}
|
|
860
682
|
],
|
|
861
683
|
[
|
|
862
|
-
"
|
|
684
|
+
"ParameterFlag",
|
|
863
685
|
{
|
|
864
|
-
"nth": 2,
|
|
865
|
-
"isVLEncoded": false,
|
|
866
686
|
"isSerialized": true,
|
|
867
687
|
"isSigningField": true,
|
|
868
|
-
"
|
|
688
|
+
"isVLEncoded": false,
|
|
689
|
+
"nth": 59,
|
|
690
|
+
"type": "UInt32"
|
|
869
691
|
}
|
|
870
692
|
],
|
|
871
693
|
[
|
|
872
|
-
"
|
|
694
|
+
"IndexNext",
|
|
873
695
|
{
|
|
874
|
-
"nth": 3,
|
|
875
|
-
"isVLEncoded": false,
|
|
876
696
|
"isSerialized": true,
|
|
877
697
|
"isSigningField": true,
|
|
698
|
+
"isVLEncoded": false,
|
|
699
|
+
"nth": 1,
|
|
878
700
|
"type": "UInt64"
|
|
879
701
|
}
|
|
880
702
|
],
|
|
881
703
|
[
|
|
882
|
-
"
|
|
704
|
+
"IndexPrevious",
|
|
883
705
|
{
|
|
884
|
-
"
|
|
706
|
+
"isSerialized": true,
|
|
707
|
+
"isSigningField": true,
|
|
885
708
|
"isVLEncoded": false,
|
|
709
|
+
"nth": 2,
|
|
710
|
+
"type": "UInt64"
|
|
711
|
+
}
|
|
712
|
+
],
|
|
713
|
+
[
|
|
714
|
+
"BookNode",
|
|
715
|
+
{
|
|
886
716
|
"isSerialized": true,
|
|
887
717
|
"isSigningField": true,
|
|
718
|
+
"isVLEncoded": false,
|
|
719
|
+
"nth": 3,
|
|
888
720
|
"type": "UInt64"
|
|
889
721
|
}
|
|
890
722
|
],
|
|
891
723
|
[
|
|
892
|
-
"
|
|
724
|
+
"OwnerNode",
|
|
893
725
|
{
|
|
894
|
-
"
|
|
726
|
+
"isSerialized": true,
|
|
727
|
+
"isSigningField": true,
|
|
895
728
|
"isVLEncoded": false,
|
|
729
|
+
"nth": 4,
|
|
730
|
+
"type": "UInt64"
|
|
731
|
+
}
|
|
732
|
+
],
|
|
733
|
+
[
|
|
734
|
+
"BaseFee",
|
|
735
|
+
{
|
|
896
736
|
"isSerialized": true,
|
|
897
737
|
"isSigningField": true,
|
|
738
|
+
"isVLEncoded": false,
|
|
739
|
+
"nth": 5,
|
|
898
740
|
"type": "UInt64"
|
|
899
741
|
}
|
|
900
742
|
],
|
|
901
743
|
[
|
|
902
744
|
"ExchangeRate",
|
|
903
745
|
{
|
|
904
|
-
"nth": 6,
|
|
905
|
-
"isVLEncoded": false,
|
|
906
746
|
"isSerialized": true,
|
|
907
747
|
"isSigningField": true,
|
|
748
|
+
"isVLEncoded": false,
|
|
749
|
+
"nth": 6,
|
|
908
750
|
"type": "UInt64"
|
|
909
751
|
}
|
|
910
752
|
],
|
|
911
753
|
[
|
|
912
754
|
"LowNode",
|
|
913
755
|
{
|
|
914
|
-
"nth": 7,
|
|
915
|
-
"isVLEncoded": false,
|
|
916
756
|
"isSerialized": true,
|
|
917
757
|
"isSigningField": true,
|
|
758
|
+
"isVLEncoded": false,
|
|
759
|
+
"nth": 7,
|
|
918
760
|
"type": "UInt64"
|
|
919
761
|
}
|
|
920
762
|
],
|
|
921
763
|
[
|
|
922
764
|
"HighNode",
|
|
923
765
|
{
|
|
924
|
-
"nth": 8,
|
|
925
|
-
"isVLEncoded": false,
|
|
926
766
|
"isSerialized": true,
|
|
927
767
|
"isSigningField": true,
|
|
768
|
+
"isVLEncoded": false,
|
|
769
|
+
"nth": 8,
|
|
928
770
|
"type": "UInt64"
|
|
929
771
|
}
|
|
930
772
|
],
|
|
931
773
|
[
|
|
932
774
|
"DestinationNode",
|
|
933
775
|
{
|
|
934
|
-
"nth": 9,
|
|
935
|
-
"isVLEncoded": false,
|
|
936
776
|
"isSerialized": true,
|
|
937
777
|
"isSigningField": true,
|
|
778
|
+
"isVLEncoded": false,
|
|
779
|
+
"nth": 9,
|
|
938
780
|
"type": "UInt64"
|
|
939
781
|
}
|
|
940
782
|
],
|
|
941
783
|
[
|
|
942
784
|
"Cookie",
|
|
943
785
|
{
|
|
944
|
-
"nth": 10,
|
|
945
|
-
"isVLEncoded": false,
|
|
946
786
|
"isSerialized": true,
|
|
947
787
|
"isSigningField": true,
|
|
788
|
+
"isVLEncoded": false,
|
|
789
|
+
"nth": 10,
|
|
948
790
|
"type": "UInt64"
|
|
949
791
|
}
|
|
950
792
|
],
|
|
951
793
|
[
|
|
952
794
|
"ServerVersion",
|
|
953
795
|
{
|
|
954
|
-
"nth": 11,
|
|
955
|
-
"isVLEncoded": false,
|
|
956
796
|
"isSerialized": true,
|
|
957
797
|
"isSigningField": true,
|
|
798
|
+
"isVLEncoded": false,
|
|
799
|
+
"nth": 11,
|
|
958
800
|
"type": "UInt64"
|
|
959
801
|
}
|
|
960
802
|
],
|
|
961
803
|
[
|
|
962
804
|
"NFTokenOfferNode",
|
|
963
805
|
{
|
|
964
|
-
"nth": 12,
|
|
965
|
-
"isVLEncoded": false,
|
|
966
806
|
"isSerialized": true,
|
|
967
807
|
"isSigningField": true,
|
|
808
|
+
"isVLEncoded": false,
|
|
809
|
+
"nth": 12,
|
|
968
810
|
"type": "UInt64"
|
|
969
811
|
}
|
|
970
812
|
],
|
|
971
813
|
[
|
|
972
814
|
"EmitBurden",
|
|
973
815
|
{
|
|
974
|
-
"nth": 13,
|
|
975
|
-
"isVLEncoded": false,
|
|
976
816
|
"isSerialized": true,
|
|
977
817
|
"isSigningField": true,
|
|
818
|
+
"isVLEncoded": false,
|
|
819
|
+
"nth": 13,
|
|
978
820
|
"type": "UInt64"
|
|
979
821
|
}
|
|
980
822
|
],
|
|
981
823
|
[
|
|
982
|
-
"
|
|
824
|
+
"ReferenceCount",
|
|
983
825
|
{
|
|
984
|
-
"nth": 17,
|
|
985
|
-
"isVLEncoded": false,
|
|
986
826
|
"isSerialized": true,
|
|
987
827
|
"isSigningField": true,
|
|
828
|
+
"isVLEncoded": false,
|
|
829
|
+
"nth": 19,
|
|
988
830
|
"type": "UInt64"
|
|
989
831
|
}
|
|
990
832
|
],
|
|
991
833
|
[
|
|
992
|
-
"
|
|
834
|
+
"XChainClaimID",
|
|
993
835
|
{
|
|
994
|
-
"nth": 18,
|
|
995
|
-
"isVLEncoded": false,
|
|
996
836
|
"isSerialized": true,
|
|
997
837
|
"isSigningField": true,
|
|
838
|
+
"isVLEncoded": false,
|
|
839
|
+
"nth": 20,
|
|
998
840
|
"type": "UInt64"
|
|
999
841
|
}
|
|
1000
842
|
],
|
|
1001
843
|
[
|
|
1002
|
-
"
|
|
844
|
+
"XChainAccountCreateCount",
|
|
1003
845
|
{
|
|
1004
|
-
"nth": 19,
|
|
1005
|
-
"isVLEncoded": false,
|
|
1006
846
|
"isSerialized": true,
|
|
1007
847
|
"isSigningField": true,
|
|
848
|
+
"isVLEncoded": false,
|
|
849
|
+
"nth": 21,
|
|
1008
850
|
"type": "UInt64"
|
|
1009
851
|
}
|
|
1010
852
|
],
|
|
1011
853
|
[
|
|
1012
|
-
"
|
|
854
|
+
"XChainAccountClaimCount",
|
|
1013
855
|
{
|
|
1014
|
-
"nth": 98,
|
|
1015
|
-
"isVLEncoded": false,
|
|
1016
856
|
"isSerialized": true,
|
|
1017
857
|
"isSigningField": true,
|
|
858
|
+
"isVLEncoded": false,
|
|
859
|
+
"nth": 22,
|
|
1018
860
|
"type": "UInt64"
|
|
1019
861
|
}
|
|
1020
862
|
],
|
|
1021
863
|
[
|
|
1022
|
-
"
|
|
864
|
+
"AssetPrice",
|
|
1023
865
|
{
|
|
1024
|
-
"nth": 99,
|
|
1025
|
-
"isVLEncoded": false,
|
|
1026
866
|
"isSerialized": true,
|
|
1027
867
|
"isSigningField": true,
|
|
868
|
+
"isVLEncoded": false,
|
|
869
|
+
"nth": 23,
|
|
1028
870
|
"type": "UInt64"
|
|
1029
871
|
}
|
|
1030
872
|
],
|
|
1031
873
|
[
|
|
1032
|
-
"
|
|
874
|
+
"MaximumAmount",
|
|
1033
875
|
{
|
|
1034
|
-
"nth": 100,
|
|
1035
|
-
"isVLEncoded": false,
|
|
1036
876
|
"isSerialized": true,
|
|
1037
877
|
"isSigningField": true,
|
|
878
|
+
"isVLEncoded": false,
|
|
879
|
+
"nth": 24,
|
|
1038
880
|
"type": "UInt64"
|
|
1039
881
|
}
|
|
1040
882
|
],
|
|
1041
883
|
[
|
|
1042
|
-
"
|
|
884
|
+
"OutstandingAmount",
|
|
1043
885
|
{
|
|
1044
|
-
"nth": 1,
|
|
1045
|
-
"isVLEncoded": false,
|
|
1046
886
|
"isSerialized": true,
|
|
1047
887
|
"isSigningField": true,
|
|
1048
|
-
"
|
|
888
|
+
"isVLEncoded": false,
|
|
889
|
+
"nth": 25,
|
|
890
|
+
"type": "UInt64"
|
|
1049
891
|
}
|
|
1050
892
|
],
|
|
1051
893
|
[
|
|
1052
|
-
"
|
|
894
|
+
"MPTAmount",
|
|
1053
895
|
{
|
|
1054
|
-
"nth": 1,
|
|
1055
|
-
"isVLEncoded": false,
|
|
1056
896
|
"isSerialized": true,
|
|
1057
897
|
"isSigningField": true,
|
|
1058
|
-
"
|
|
898
|
+
"isVLEncoded": false,
|
|
899
|
+
"nth": 26,
|
|
900
|
+
"type": "UInt64"
|
|
1059
901
|
}
|
|
1060
902
|
],
|
|
1061
903
|
[
|
|
1062
|
-
"
|
|
904
|
+
"IssuerNode",
|
|
1063
905
|
{
|
|
1064
|
-
"nth": 2,
|
|
1065
|
-
"isVLEncoded": false,
|
|
1066
906
|
"isSerialized": true,
|
|
1067
907
|
"isSigningField": true,
|
|
1068
|
-
"
|
|
908
|
+
"isVLEncoded": false,
|
|
909
|
+
"nth": 27,
|
|
910
|
+
"type": "UInt64"
|
|
1069
911
|
}
|
|
1070
912
|
],
|
|
1071
913
|
[
|
|
1072
|
-
"
|
|
914
|
+
"SubjectNode",
|
|
1073
915
|
{
|
|
1074
|
-
"
|
|
916
|
+
"isSerialized": true,
|
|
917
|
+
"isSigningField": true,
|
|
1075
918
|
"isVLEncoded": false,
|
|
919
|
+
"nth": 28,
|
|
920
|
+
"type": "UInt64"
|
|
921
|
+
}
|
|
922
|
+
],
|
|
923
|
+
[
|
|
924
|
+
"LockedAmount",
|
|
925
|
+
{
|
|
1076
926
|
"isSerialized": true,
|
|
1077
927
|
"isSigningField": true,
|
|
1078
|
-
"
|
|
928
|
+
"isVLEncoded": false,
|
|
929
|
+
"nth": 29,
|
|
930
|
+
"type": "UInt64"
|
|
1079
931
|
}
|
|
1080
932
|
],
|
|
1081
933
|
[
|
|
1082
|
-
"
|
|
934
|
+
"ContractReturnCode",
|
|
1083
935
|
{
|
|
1084
|
-
"
|
|
936
|
+
"isSerialized": true,
|
|
937
|
+
"isSigningField": true,
|
|
1085
938
|
"isVLEncoded": false,
|
|
939
|
+
"nth": 30,
|
|
940
|
+
"type": "UInt64"
|
|
941
|
+
}
|
|
942
|
+
],
|
|
943
|
+
[
|
|
944
|
+
"EmailHash",
|
|
945
|
+
{
|
|
1086
946
|
"isSerialized": true,
|
|
1087
947
|
"isSigningField": true,
|
|
1088
|
-
"
|
|
948
|
+
"isVLEncoded": false,
|
|
949
|
+
"nth": 1,
|
|
950
|
+
"type": "Hash128"
|
|
1089
951
|
}
|
|
1090
952
|
],
|
|
1091
953
|
[
|
|
1092
954
|
"LedgerHash",
|
|
1093
955
|
{
|
|
1094
|
-
"nth": 1,
|
|
1095
|
-
"isVLEncoded": false,
|
|
1096
956
|
"isSerialized": true,
|
|
1097
957
|
"isSigningField": true,
|
|
958
|
+
"isVLEncoded": false,
|
|
959
|
+
"nth": 1,
|
|
1098
960
|
"type": "Hash256"
|
|
1099
961
|
}
|
|
1100
962
|
],
|
|
1101
963
|
[
|
|
1102
964
|
"ParentHash",
|
|
1103
965
|
{
|
|
1104
|
-
"nth": 2,
|
|
1105
|
-
"isVLEncoded": false,
|
|
1106
966
|
"isSerialized": true,
|
|
1107
967
|
"isSigningField": true,
|
|
968
|
+
"isVLEncoded": false,
|
|
969
|
+
"nth": 2,
|
|
1108
970
|
"type": "Hash256"
|
|
1109
971
|
}
|
|
1110
972
|
],
|
|
1111
973
|
[
|
|
1112
974
|
"TransactionHash",
|
|
1113
975
|
{
|
|
1114
|
-
"nth": 3,
|
|
1115
|
-
"isVLEncoded": false,
|
|
1116
976
|
"isSerialized": true,
|
|
1117
977
|
"isSigningField": true,
|
|
978
|
+
"isVLEncoded": false,
|
|
979
|
+
"nth": 3,
|
|
1118
980
|
"type": "Hash256"
|
|
1119
981
|
}
|
|
1120
982
|
],
|
|
1121
983
|
[
|
|
1122
984
|
"AccountHash",
|
|
1123
985
|
{
|
|
1124
|
-
"nth": 4,
|
|
1125
|
-
"isVLEncoded": false,
|
|
1126
986
|
"isSerialized": true,
|
|
1127
987
|
"isSigningField": true,
|
|
988
|
+
"isVLEncoded": false,
|
|
989
|
+
"nth": 4,
|
|
1128
990
|
"type": "Hash256"
|
|
1129
991
|
}
|
|
1130
992
|
],
|
|
1131
993
|
[
|
|
1132
994
|
"PreviousTxnID",
|
|
1133
995
|
{
|
|
1134
|
-
"nth": 5,
|
|
1135
|
-
"isVLEncoded": false,
|
|
1136
996
|
"isSerialized": true,
|
|
1137
997
|
"isSigningField": true,
|
|
998
|
+
"isVLEncoded": false,
|
|
999
|
+
"nth": 5,
|
|
1138
1000
|
"type": "Hash256"
|
|
1139
1001
|
}
|
|
1140
1002
|
],
|
|
1141
1003
|
[
|
|
1142
1004
|
"LedgerIndex",
|
|
1143
1005
|
{
|
|
1144
|
-
"nth": 6,
|
|
1145
|
-
"isVLEncoded": false,
|
|
1146
1006
|
"isSerialized": true,
|
|
1147
1007
|
"isSigningField": true,
|
|
1008
|
+
"isVLEncoded": false,
|
|
1009
|
+
"nth": 6,
|
|
1148
1010
|
"type": "Hash256"
|
|
1149
1011
|
}
|
|
1150
1012
|
],
|
|
1151
1013
|
[
|
|
1152
1014
|
"WalletLocator",
|
|
1153
1015
|
{
|
|
1154
|
-
"nth": 7,
|
|
1155
|
-
"isVLEncoded": false,
|
|
1156
1016
|
"isSerialized": true,
|
|
1157
1017
|
"isSigningField": true,
|
|
1018
|
+
"isVLEncoded": false,
|
|
1019
|
+
"nth": 7,
|
|
1158
1020
|
"type": "Hash256"
|
|
1159
1021
|
}
|
|
1160
1022
|
],
|
|
1161
1023
|
[
|
|
1162
1024
|
"RootIndex",
|
|
1163
1025
|
{
|
|
1164
|
-
"nth": 8,
|
|
1165
|
-
"isVLEncoded": false,
|
|
1166
1026
|
"isSerialized": true,
|
|
1167
1027
|
"isSigningField": true,
|
|
1028
|
+
"isVLEncoded": false,
|
|
1029
|
+
"nth": 8,
|
|
1168
1030
|
"type": "Hash256"
|
|
1169
1031
|
}
|
|
1170
1032
|
],
|
|
1171
1033
|
[
|
|
1172
1034
|
"AccountTxnID",
|
|
1173
1035
|
{
|
|
1174
|
-
"nth": 9,
|
|
1175
|
-
"isVLEncoded": false,
|
|
1176
1036
|
"isSerialized": true,
|
|
1177
1037
|
"isSigningField": true,
|
|
1038
|
+
"isVLEncoded": false,
|
|
1039
|
+
"nth": 9,
|
|
1178
1040
|
"type": "Hash256"
|
|
1179
1041
|
}
|
|
1180
1042
|
],
|
|
1181
1043
|
[
|
|
1182
1044
|
"NFTokenID",
|
|
1183
1045
|
{
|
|
1184
|
-
"nth": 10,
|
|
1185
|
-
"isVLEncoded": false,
|
|
1186
1046
|
"isSerialized": true,
|
|
1187
1047
|
"isSigningField": true,
|
|
1048
|
+
"isVLEncoded": false,
|
|
1049
|
+
"nth": 10,
|
|
1188
1050
|
"type": "Hash256"
|
|
1189
1051
|
}
|
|
1190
1052
|
],
|
|
1191
1053
|
[
|
|
1192
1054
|
"EmitParentTxnID",
|
|
1193
1055
|
{
|
|
1194
|
-
"nth": 11,
|
|
1195
|
-
"isVLEncoded": false,
|
|
1196
1056
|
"isSerialized": true,
|
|
1197
1057
|
"isSigningField": true,
|
|
1058
|
+
"isVLEncoded": false,
|
|
1059
|
+
"nth": 11,
|
|
1198
1060
|
"type": "Hash256"
|
|
1199
1061
|
}
|
|
1200
1062
|
],
|
|
1201
1063
|
[
|
|
1202
1064
|
"EmitNonce",
|
|
1203
1065
|
{
|
|
1204
|
-
"nth": 12,
|
|
1205
|
-
"isVLEncoded": false,
|
|
1206
1066
|
"isSerialized": true,
|
|
1207
1067
|
"isSigningField": true,
|
|
1068
|
+
"isVLEncoded": false,
|
|
1069
|
+
"nth": 12,
|
|
1208
1070
|
"type": "Hash256"
|
|
1209
1071
|
}
|
|
1210
1072
|
],
|
|
1211
1073
|
[
|
|
1212
1074
|
"EmitHookHash",
|
|
1213
1075
|
{
|
|
1214
|
-
"nth": 13,
|
|
1215
|
-
"isVLEncoded": false,
|
|
1216
1076
|
"isSerialized": true,
|
|
1217
1077
|
"isSigningField": true,
|
|
1078
|
+
"isVLEncoded": false,
|
|
1079
|
+
"nth": 13,
|
|
1218
1080
|
"type": "Hash256"
|
|
1219
1081
|
}
|
|
1220
1082
|
],
|
|
1221
1083
|
[
|
|
1222
|
-
"
|
|
1084
|
+
"AMMID",
|
|
1223
1085
|
{
|
|
1224
|
-
"nth": 16,
|
|
1225
|
-
"isVLEncoded": false,
|
|
1226
1086
|
"isSerialized": true,
|
|
1227
1087
|
"isSigningField": true,
|
|
1088
|
+
"isVLEncoded": false,
|
|
1089
|
+
"nth": 14,
|
|
1228
1090
|
"type": "Hash256"
|
|
1229
1091
|
}
|
|
1230
1092
|
],
|
|
1231
1093
|
[
|
|
1232
|
-
"
|
|
1094
|
+
"BookDirectory",
|
|
1233
1095
|
{
|
|
1234
|
-
"nth": 17,
|
|
1235
|
-
"isVLEncoded": false,
|
|
1236
1096
|
"isSerialized": true,
|
|
1237
1097
|
"isSigningField": true,
|
|
1098
|
+
"isVLEncoded": false,
|
|
1099
|
+
"nth": 16,
|
|
1238
1100
|
"type": "Hash256"
|
|
1239
1101
|
}
|
|
1240
1102
|
],
|
|
1241
1103
|
[
|
|
1242
|
-
"
|
|
1104
|
+
"InvoiceID",
|
|
1243
1105
|
{
|
|
1244
|
-
"nth": 18,
|
|
1245
|
-
"isVLEncoded": false,
|
|
1246
1106
|
"isSerialized": true,
|
|
1247
1107
|
"isSigningField": true,
|
|
1108
|
+
"isVLEncoded": false,
|
|
1109
|
+
"nth": 17,
|
|
1248
1110
|
"type": "Hash256"
|
|
1249
1111
|
}
|
|
1250
1112
|
],
|
|
1251
1113
|
[
|
|
1252
|
-
"
|
|
1114
|
+
"Nickname",
|
|
1253
1115
|
{
|
|
1254
|
-
"nth": 19,
|
|
1255
|
-
"isVLEncoded": false,
|
|
1256
1116
|
"isSerialized": true,
|
|
1257
1117
|
"isSigningField": true,
|
|
1118
|
+
"isVLEncoded": false,
|
|
1119
|
+
"nth": 18,
|
|
1258
1120
|
"type": "Hash256"
|
|
1259
1121
|
}
|
|
1260
1122
|
],
|
|
1261
1123
|
[
|
|
1262
|
-
"
|
|
1124
|
+
"Amendment",
|
|
1263
1125
|
{
|
|
1264
|
-
"nth": 20,
|
|
1265
|
-
"isVLEncoded": false,
|
|
1266
1126
|
"isSerialized": true,
|
|
1267
1127
|
"isSigningField": true,
|
|
1128
|
+
"isVLEncoded": false,
|
|
1129
|
+
"nth": 19,
|
|
1268
1130
|
"type": "Hash256"
|
|
1269
1131
|
}
|
|
1270
1132
|
],
|
|
1271
1133
|
[
|
|
1272
1134
|
"Digest",
|
|
1273
1135
|
{
|
|
1274
|
-
"nth": 21,
|
|
1275
|
-
"isVLEncoded": false,
|
|
1276
1136
|
"isSerialized": true,
|
|
1277
1137
|
"isSigningField": true,
|
|
1138
|
+
"isVLEncoded": false,
|
|
1139
|
+
"nth": 21,
|
|
1278
1140
|
"type": "Hash256"
|
|
1279
1141
|
}
|
|
1280
1142
|
],
|
|
1281
1143
|
[
|
|
1282
1144
|
"Channel",
|
|
1283
1145
|
{
|
|
1284
|
-
"nth": 22,
|
|
1285
|
-
"isVLEncoded": false,
|
|
1286
1146
|
"isSerialized": true,
|
|
1287
1147
|
"isSigningField": true,
|
|
1148
|
+
"isVLEncoded": false,
|
|
1149
|
+
"nth": 22,
|
|
1288
1150
|
"type": "Hash256"
|
|
1289
1151
|
}
|
|
1290
1152
|
],
|
|
1291
1153
|
[
|
|
1292
1154
|
"ConsensusHash",
|
|
1293
1155
|
{
|
|
1294
|
-
"nth": 23,
|
|
1295
|
-
"isVLEncoded": false,
|
|
1296
1156
|
"isSerialized": true,
|
|
1297
1157
|
"isSigningField": true,
|
|
1158
|
+
"isVLEncoded": false,
|
|
1159
|
+
"nth": 23,
|
|
1298
1160
|
"type": "Hash256"
|
|
1299
1161
|
}
|
|
1300
1162
|
],
|
|
1301
1163
|
[
|
|
1302
1164
|
"CheckID",
|
|
1303
1165
|
{
|
|
1304
|
-
"nth": 24,
|
|
1305
|
-
"isVLEncoded": false,
|
|
1306
1166
|
"isSerialized": true,
|
|
1307
1167
|
"isSigningField": true,
|
|
1168
|
+
"isVLEncoded": false,
|
|
1169
|
+
"nth": 24,
|
|
1308
1170
|
"type": "Hash256"
|
|
1309
1171
|
}
|
|
1310
1172
|
],
|
|
1311
1173
|
[
|
|
1312
1174
|
"ValidatedHash",
|
|
1313
1175
|
{
|
|
1314
|
-
"nth": 25,
|
|
1315
|
-
"isVLEncoded": false,
|
|
1316
1176
|
"isSerialized": true,
|
|
1317
1177
|
"isSigningField": true,
|
|
1178
|
+
"isVLEncoded": false,
|
|
1179
|
+
"nth": 25,
|
|
1318
1180
|
"type": "Hash256"
|
|
1319
1181
|
}
|
|
1320
1182
|
],
|
|
1321
1183
|
[
|
|
1322
1184
|
"PreviousPageMin",
|
|
1323
1185
|
{
|
|
1324
|
-
"nth": 26,
|
|
1325
|
-
"isVLEncoded": false,
|
|
1326
1186
|
"isSerialized": true,
|
|
1327
1187
|
"isSigningField": true,
|
|
1188
|
+
"isVLEncoded": false,
|
|
1189
|
+
"nth": 26,
|
|
1328
1190
|
"type": "Hash256"
|
|
1329
1191
|
}
|
|
1330
1192
|
],
|
|
1331
1193
|
[
|
|
1332
1194
|
"NextPageMin",
|
|
1333
1195
|
{
|
|
1334
|
-
"nth": 27,
|
|
1335
|
-
"isVLEncoded": false,
|
|
1336
1196
|
"isSerialized": true,
|
|
1337
1197
|
"isSigningField": true,
|
|
1198
|
+
"isVLEncoded": false,
|
|
1199
|
+
"nth": 27,
|
|
1338
1200
|
"type": "Hash256"
|
|
1339
1201
|
}
|
|
1340
1202
|
],
|
|
1341
1203
|
[
|
|
1342
1204
|
"NFTokenBuyOffer",
|
|
1343
1205
|
{
|
|
1344
|
-
"nth": 28,
|
|
1345
|
-
"isVLEncoded": false,
|
|
1346
1206
|
"isSerialized": true,
|
|
1347
1207
|
"isSigningField": true,
|
|
1208
|
+
"isVLEncoded": false,
|
|
1209
|
+
"nth": 28,
|
|
1348
1210
|
"type": "Hash256"
|
|
1349
1211
|
}
|
|
1350
1212
|
],
|
|
1351
1213
|
[
|
|
1352
1214
|
"NFTokenSellOffer",
|
|
1353
1215
|
{
|
|
1354
|
-
"nth": 29,
|
|
1355
|
-
"isVLEncoded": false,
|
|
1356
1216
|
"isSerialized": true,
|
|
1357
1217
|
"isSigningField": true,
|
|
1218
|
+
"isVLEncoded": false,
|
|
1219
|
+
"nth": 29,
|
|
1358
1220
|
"type": "Hash256"
|
|
1359
1221
|
}
|
|
1360
1222
|
],
|
|
1361
1223
|
[
|
|
1362
|
-
"
|
|
1224
|
+
"DomainID",
|
|
1363
1225
|
{
|
|
1364
|
-
"nth": 30,
|
|
1365
|
-
"isVLEncoded": false,
|
|
1366
1226
|
"isSerialized": true,
|
|
1367
1227
|
"isSigningField": true,
|
|
1228
|
+
"isVLEncoded": false,
|
|
1229
|
+
"nth": 34,
|
|
1368
1230
|
"type": "Hash256"
|
|
1369
1231
|
}
|
|
1370
1232
|
],
|
|
1371
1233
|
[
|
|
1372
|
-
"
|
|
1234
|
+
"VaultID",
|
|
1373
1235
|
{
|
|
1374
|
-
"nth": 31,
|
|
1375
|
-
"isVLEncoded": false,
|
|
1376
1236
|
"isSerialized": true,
|
|
1377
1237
|
"isSigningField": true,
|
|
1378
|
-
"
|
|
1238
|
+
"isVLEncoded": false,
|
|
1239
|
+
"nth": 35,
|
|
1240
|
+
"type": "Hash256"
|
|
1379
1241
|
}
|
|
1380
1242
|
],
|
|
1381
1243
|
[
|
|
1382
|
-
"
|
|
1244
|
+
"ParentBatchID",
|
|
1383
1245
|
{
|
|
1384
|
-
"nth": 32,
|
|
1385
|
-
"isVLEncoded": false,
|
|
1386
1246
|
"isSerialized": true,
|
|
1387
1247
|
"isSigningField": true,
|
|
1248
|
+
"isVLEncoded": false,
|
|
1249
|
+
"nth": 36,
|
|
1388
1250
|
"type": "Hash256"
|
|
1389
1251
|
}
|
|
1390
1252
|
],
|
|
1391
1253
|
[
|
|
1392
|
-
"
|
|
1254
|
+
"ContractHash",
|
|
1393
1255
|
{
|
|
1394
|
-
"nth": 33,
|
|
1395
|
-
"isVLEncoded": false,
|
|
1396
1256
|
"isSerialized": true,
|
|
1397
1257
|
"isSigningField": true,
|
|
1258
|
+
"isVLEncoded": false,
|
|
1259
|
+
"nth": 37,
|
|
1398
1260
|
"type": "Hash256"
|
|
1399
1261
|
}
|
|
1400
1262
|
],
|
|
1401
1263
|
[
|
|
1402
|
-
"
|
|
1264
|
+
"ContractID",
|
|
1403
1265
|
{
|
|
1404
|
-
"nth": 34,
|
|
1405
|
-
"isVLEncoded": false,
|
|
1406
1266
|
"isSerialized": true,
|
|
1407
1267
|
"isSigningField": true,
|
|
1268
|
+
"isVLEncoded": false,
|
|
1269
|
+
"nth": 38,
|
|
1408
1270
|
"type": "Hash256"
|
|
1409
1271
|
}
|
|
1410
1272
|
],
|
|
1411
1273
|
[
|
|
1412
|
-
"
|
|
1274
|
+
"hash",
|
|
1413
1275
|
{
|
|
1414
|
-
"
|
|
1276
|
+
"isSerialized": false,
|
|
1277
|
+
"isSigningField": false,
|
|
1415
1278
|
"isVLEncoded": false,
|
|
1416
|
-
"
|
|
1417
|
-
"isSigningField": true,
|
|
1279
|
+
"nth": 257,
|
|
1418
1280
|
"type": "Hash256"
|
|
1419
1281
|
}
|
|
1420
1282
|
],
|
|
1421
1283
|
[
|
|
1422
|
-
"
|
|
1284
|
+
"index",
|
|
1423
1285
|
{
|
|
1424
|
-
"
|
|
1286
|
+
"isSerialized": false,
|
|
1287
|
+
"isSigningField": false,
|
|
1425
1288
|
"isVLEncoded": false,
|
|
1426
|
-
"
|
|
1427
|
-
"isSigningField": true,
|
|
1289
|
+
"nth": 258,
|
|
1428
1290
|
"type": "Hash256"
|
|
1429
1291
|
}
|
|
1430
1292
|
],
|
|
1431
1293
|
[
|
|
1432
|
-
"
|
|
1294
|
+
"Amount",
|
|
1433
1295
|
{
|
|
1434
|
-
"nth": 99,
|
|
1435
|
-
"isVLEncoded": false,
|
|
1436
1296
|
"isSerialized": true,
|
|
1437
1297
|
"isSigningField": true,
|
|
1438
|
-
"
|
|
1298
|
+
"isVLEncoded": false,
|
|
1299
|
+
"nth": 1,
|
|
1300
|
+
"type": "Amount"
|
|
1439
1301
|
}
|
|
1440
1302
|
],
|
|
1441
1303
|
[
|
|
1442
|
-
"
|
|
1304
|
+
"Balance",
|
|
1443
1305
|
{
|
|
1444
|
-
"nth": 98,
|
|
1445
|
-
"isVLEncoded": false,
|
|
1446
1306
|
"isSerialized": true,
|
|
1447
1307
|
"isSigningField": true,
|
|
1448
|
-
"
|
|
1308
|
+
"isVLEncoded": false,
|
|
1309
|
+
"nth": 2,
|
|
1310
|
+
"type": "Amount"
|
|
1449
1311
|
}
|
|
1450
1312
|
],
|
|
1451
1313
|
[
|
|
1452
|
-
"
|
|
1314
|
+
"LimitAmount",
|
|
1453
1315
|
{
|
|
1454
|
-
"nth": 97,
|
|
1455
|
-
"isVLEncoded": false,
|
|
1456
1316
|
"isSerialized": true,
|
|
1457
1317
|
"isSigningField": true,
|
|
1458
|
-
"
|
|
1318
|
+
"isVLEncoded": false,
|
|
1319
|
+
"nth": 3,
|
|
1320
|
+
"type": "Amount"
|
|
1459
1321
|
}
|
|
1460
1322
|
],
|
|
1461
1323
|
[
|
|
1462
|
-
"
|
|
1324
|
+
"TakerPays",
|
|
1463
1325
|
{
|
|
1464
|
-
"nth": 1,
|
|
1465
|
-
"isVLEncoded": false,
|
|
1466
1326
|
"isSerialized": true,
|
|
1467
1327
|
"isSigningField": true,
|
|
1328
|
+
"isVLEncoded": false,
|
|
1329
|
+
"nth": 4,
|
|
1468
1330
|
"type": "Amount"
|
|
1469
1331
|
}
|
|
1470
1332
|
],
|
|
1471
1333
|
[
|
|
1472
|
-
"
|
|
1334
|
+
"TakerGets",
|
|
1473
1335
|
{
|
|
1474
|
-
"nth": 2,
|
|
1475
|
-
"isVLEncoded": false,
|
|
1476
1336
|
"isSerialized": true,
|
|
1477
1337
|
"isSigningField": true,
|
|
1338
|
+
"isVLEncoded": false,
|
|
1339
|
+
"nth": 5,
|
|
1478
1340
|
"type": "Amount"
|
|
1479
1341
|
}
|
|
1480
1342
|
],
|
|
1481
1343
|
[
|
|
1482
|
-
"
|
|
1344
|
+
"LowLimit",
|
|
1483
1345
|
{
|
|
1484
|
-
"nth": 3,
|
|
1485
|
-
"isVLEncoded": false,
|
|
1486
1346
|
"isSerialized": true,
|
|
1487
1347
|
"isSigningField": true,
|
|
1348
|
+
"isVLEncoded": false,
|
|
1349
|
+
"nth": 6,
|
|
1488
1350
|
"type": "Amount"
|
|
1489
1351
|
}
|
|
1490
1352
|
],
|
|
1491
1353
|
[
|
|
1492
|
-
"
|
|
1354
|
+
"HighLimit",
|
|
1493
1355
|
{
|
|
1494
|
-
"nth": 4,
|
|
1495
|
-
"isVLEncoded": false,
|
|
1496
1356
|
"isSerialized": true,
|
|
1497
1357
|
"isSigningField": true,
|
|
1358
|
+
"isVLEncoded": false,
|
|
1359
|
+
"nth": 7,
|
|
1498
1360
|
"type": "Amount"
|
|
1499
1361
|
}
|
|
1500
1362
|
],
|
|
1501
1363
|
[
|
|
1502
|
-
"
|
|
1364
|
+
"Fee",
|
|
1503
1365
|
{
|
|
1504
|
-
"nth": 5,
|
|
1505
|
-
"isVLEncoded": false,
|
|
1506
1366
|
"isSerialized": true,
|
|
1507
1367
|
"isSigningField": true,
|
|
1368
|
+
"isVLEncoded": false,
|
|
1369
|
+
"nth": 8,
|
|
1508
1370
|
"type": "Amount"
|
|
1509
1371
|
}
|
|
1510
1372
|
],
|
|
1511
1373
|
[
|
|
1512
|
-
"
|
|
1374
|
+
"SendMax",
|
|
1513
1375
|
{
|
|
1514
|
-
"nth": 6,
|
|
1515
|
-
"isVLEncoded": false,
|
|
1516
1376
|
"isSerialized": true,
|
|
1517
1377
|
"isSigningField": true,
|
|
1378
|
+
"isVLEncoded": false,
|
|
1379
|
+
"nth": 9,
|
|
1518
1380
|
"type": "Amount"
|
|
1519
1381
|
}
|
|
1520
1382
|
],
|
|
1521
1383
|
[
|
|
1522
|
-
"
|
|
1384
|
+
"DeliverMin",
|
|
1523
1385
|
{
|
|
1524
|
-
"nth": 7,
|
|
1525
|
-
"isVLEncoded": false,
|
|
1526
1386
|
"isSerialized": true,
|
|
1527
1387
|
"isSigningField": true,
|
|
1388
|
+
"isVLEncoded": false,
|
|
1389
|
+
"nth": 10,
|
|
1528
1390
|
"type": "Amount"
|
|
1529
1391
|
}
|
|
1530
1392
|
],
|
|
1531
1393
|
[
|
|
1532
|
-
"
|
|
1394
|
+
"Amount2",
|
|
1533
1395
|
{
|
|
1534
|
-
"nth": 8,
|
|
1535
|
-
"isVLEncoded": false,
|
|
1536
1396
|
"isSerialized": true,
|
|
1537
1397
|
"isSigningField": true,
|
|
1398
|
+
"isVLEncoded": false,
|
|
1399
|
+
"nth": 11,
|
|
1538
1400
|
"type": "Amount"
|
|
1539
1401
|
}
|
|
1540
1402
|
],
|
|
1541
1403
|
[
|
|
1542
|
-
"
|
|
1404
|
+
"BidMin",
|
|
1543
1405
|
{
|
|
1544
|
-
"nth": 9,
|
|
1545
|
-
"isVLEncoded": false,
|
|
1546
1406
|
"isSerialized": true,
|
|
1547
1407
|
"isSigningField": true,
|
|
1408
|
+
"isVLEncoded": false,
|
|
1409
|
+
"nth": 12,
|
|
1548
1410
|
"type": "Amount"
|
|
1549
1411
|
}
|
|
1550
1412
|
],
|
|
1551
1413
|
[
|
|
1552
|
-
"
|
|
1414
|
+
"BidMax",
|
|
1553
1415
|
{
|
|
1554
|
-
"nth": 10,
|
|
1555
|
-
"isVLEncoded": false,
|
|
1556
1416
|
"isSerialized": true,
|
|
1557
1417
|
"isSigningField": true,
|
|
1418
|
+
"isVLEncoded": false,
|
|
1419
|
+
"nth": 13,
|
|
1558
1420
|
"type": "Amount"
|
|
1559
1421
|
}
|
|
1560
1422
|
],
|
|
1561
1423
|
[
|
|
1562
1424
|
"MinimumOffer",
|
|
1563
1425
|
{
|
|
1564
|
-
"nth": 16,
|
|
1565
|
-
"isVLEncoded": false,
|
|
1566
1426
|
"isSerialized": true,
|
|
1567
1427
|
"isSigningField": true,
|
|
1428
|
+
"isVLEncoded": false,
|
|
1429
|
+
"nth": 16,
|
|
1568
1430
|
"type": "Amount"
|
|
1569
1431
|
}
|
|
1570
1432
|
],
|
|
1571
1433
|
[
|
|
1572
1434
|
"RippleEscrow",
|
|
1573
1435
|
{
|
|
1574
|
-
"nth": 17,
|
|
1575
|
-
"isVLEncoded": false,
|
|
1576
1436
|
"isSerialized": true,
|
|
1577
1437
|
"isSigningField": true,
|
|
1438
|
+
"isVLEncoded": false,
|
|
1439
|
+
"nth": 17,
|
|
1578
1440
|
"type": "Amount"
|
|
1579
1441
|
}
|
|
1580
1442
|
],
|
|
1581
1443
|
[
|
|
1582
1444
|
"DeliveredAmount",
|
|
1583
1445
|
{
|
|
1584
|
-
"nth": 18,
|
|
1585
|
-
"isVLEncoded": false,
|
|
1586
1446
|
"isSerialized": true,
|
|
1587
1447
|
"isSigningField": true,
|
|
1448
|
+
"isVLEncoded": false,
|
|
1449
|
+
"nth": 18,
|
|
1588
1450
|
"type": "Amount"
|
|
1589
1451
|
}
|
|
1590
1452
|
],
|
|
1591
1453
|
[
|
|
1592
1454
|
"NFTokenBrokerFee",
|
|
1593
1455
|
{
|
|
1594
|
-
"nth": 19,
|
|
1595
|
-
"isVLEncoded": false,
|
|
1596
1456
|
"isSerialized": true,
|
|
1597
1457
|
"isSigningField": true,
|
|
1458
|
+
"isVLEncoded": false,
|
|
1459
|
+
"nth": 19,
|
|
1598
1460
|
"type": "Amount"
|
|
1599
1461
|
}
|
|
1600
1462
|
],
|
|
1601
1463
|
[
|
|
1602
|
-
"
|
|
1464
|
+
"BaseFeeDrops",
|
|
1603
1465
|
{
|
|
1604
|
-
"
|
|
1466
|
+
"isSerialized": true,
|
|
1467
|
+
"isSigningField": true,
|
|
1605
1468
|
"isVLEncoded": false,
|
|
1469
|
+
"nth": 22,
|
|
1470
|
+
"type": "Amount"
|
|
1471
|
+
}
|
|
1472
|
+
],
|
|
1473
|
+
[
|
|
1474
|
+
"ReserveBaseDrops",
|
|
1475
|
+
{
|
|
1606
1476
|
"isSerialized": true,
|
|
1607
1477
|
"isSigningField": true,
|
|
1478
|
+
"isVLEncoded": false,
|
|
1479
|
+
"nth": 23,
|
|
1608
1480
|
"type": "Amount"
|
|
1609
1481
|
}
|
|
1610
1482
|
],
|
|
1611
1483
|
[
|
|
1612
|
-
"
|
|
1484
|
+
"ReserveIncrementDrops",
|
|
1613
1485
|
{
|
|
1614
|
-
"
|
|
1486
|
+
"isSerialized": true,
|
|
1487
|
+
"isSigningField": true,
|
|
1615
1488
|
"isVLEncoded": false,
|
|
1489
|
+
"nth": 24,
|
|
1490
|
+
"type": "Amount"
|
|
1491
|
+
}
|
|
1492
|
+
],
|
|
1493
|
+
[
|
|
1494
|
+
"LPTokenOut",
|
|
1495
|
+
{
|
|
1616
1496
|
"isSerialized": true,
|
|
1617
1497
|
"isSigningField": true,
|
|
1498
|
+
"isVLEncoded": false,
|
|
1499
|
+
"nth": 25,
|
|
1618
1500
|
"type": "Amount"
|
|
1619
1501
|
}
|
|
1620
1502
|
],
|
|
1621
1503
|
[
|
|
1622
|
-
"
|
|
1504
|
+
"LPTokenIn",
|
|
1623
1505
|
{
|
|
1624
|
-
"
|
|
1506
|
+
"isSerialized": true,
|
|
1507
|
+
"isSigningField": true,
|
|
1625
1508
|
"isVLEncoded": false,
|
|
1509
|
+
"nth": 26,
|
|
1510
|
+
"type": "Amount"
|
|
1511
|
+
}
|
|
1512
|
+
],
|
|
1513
|
+
[
|
|
1514
|
+
"EPrice",
|
|
1515
|
+
{
|
|
1626
1516
|
"isSerialized": true,
|
|
1627
1517
|
"isSigningField": true,
|
|
1518
|
+
"isVLEncoded": false,
|
|
1519
|
+
"nth": 27,
|
|
1628
1520
|
"type": "Amount"
|
|
1629
1521
|
}
|
|
1630
1522
|
],
|
|
1631
1523
|
[
|
|
1632
|
-
"
|
|
1524
|
+
"Price",
|
|
1633
1525
|
{
|
|
1634
|
-
"
|
|
1526
|
+
"isSerialized": true,
|
|
1527
|
+
"isSigningField": true,
|
|
1635
1528
|
"isVLEncoded": false,
|
|
1529
|
+
"nth": 28,
|
|
1530
|
+
"type": "Amount"
|
|
1531
|
+
}
|
|
1532
|
+
],
|
|
1533
|
+
[
|
|
1534
|
+
"SignatureReward",
|
|
1535
|
+
{
|
|
1636
1536
|
"isSerialized": true,
|
|
1637
1537
|
"isSigningField": true,
|
|
1538
|
+
"isVLEncoded": false,
|
|
1539
|
+
"nth": 29,
|
|
1638
1540
|
"type": "Amount"
|
|
1639
1541
|
}
|
|
1640
1542
|
],
|
|
1641
1543
|
[
|
|
1642
|
-
"
|
|
1544
|
+
"MinAccountCreateAmount",
|
|
1643
1545
|
{
|
|
1644
|
-
"
|
|
1546
|
+
"isSerialized": true,
|
|
1547
|
+
"isSigningField": true,
|
|
1645
1548
|
"isVLEncoded": false,
|
|
1549
|
+
"nth": 30,
|
|
1550
|
+
"type": "Amount"
|
|
1551
|
+
}
|
|
1552
|
+
],
|
|
1553
|
+
[
|
|
1554
|
+
"LPTokenBalance",
|
|
1555
|
+
{
|
|
1646
1556
|
"isSerialized": true,
|
|
1647
1557
|
"isSigningField": true,
|
|
1558
|
+
"isVLEncoded": false,
|
|
1559
|
+
"nth": 31,
|
|
1648
1560
|
"type": "Amount"
|
|
1649
1561
|
}
|
|
1650
1562
|
],
|
|
1651
1563
|
[
|
|
1652
1564
|
"PublicKey",
|
|
1653
1565
|
{
|
|
1654
|
-
"nth": 1,
|
|
1655
|
-
"isVLEncoded": true,
|
|
1656
1566
|
"isSerialized": true,
|
|
1657
1567
|
"isSigningField": true,
|
|
1568
|
+
"isVLEncoded": true,
|
|
1569
|
+
"nth": 1,
|
|
1658
1570
|
"type": "Blob"
|
|
1659
1571
|
}
|
|
1660
1572
|
],
|
|
1661
1573
|
[
|
|
1662
1574
|
"MessageKey",
|
|
1663
1575
|
{
|
|
1664
|
-
"nth": 2,
|
|
1665
|
-
"isVLEncoded": true,
|
|
1666
1576
|
"isSerialized": true,
|
|
1667
1577
|
"isSigningField": true,
|
|
1578
|
+
"isVLEncoded": true,
|
|
1579
|
+
"nth": 2,
|
|
1668
1580
|
"type": "Blob"
|
|
1669
1581
|
}
|
|
1670
1582
|
],
|
|
1671
1583
|
[
|
|
1672
1584
|
"SigningPubKey",
|
|
1673
1585
|
{
|
|
1674
|
-
"nth": 3,
|
|
1675
|
-
"isVLEncoded": true,
|
|
1676
1586
|
"isSerialized": true,
|
|
1677
1587
|
"isSigningField": true,
|
|
1588
|
+
"isVLEncoded": true,
|
|
1589
|
+
"nth": 3,
|
|
1678
1590
|
"type": "Blob"
|
|
1679
1591
|
}
|
|
1680
1592
|
],
|
|
1681
1593
|
[
|
|
1682
1594
|
"TxnSignature",
|
|
1683
1595
|
{
|
|
1684
|
-
"nth": 4,
|
|
1685
|
-
"isVLEncoded": true,
|
|
1686
1596
|
"isSerialized": true,
|
|
1687
1597
|
"isSigningField": false,
|
|
1598
|
+
"isVLEncoded": true,
|
|
1599
|
+
"nth": 4,
|
|
1688
1600
|
"type": "Blob"
|
|
1689
1601
|
}
|
|
1690
1602
|
],
|
|
1691
1603
|
[
|
|
1692
1604
|
"URI",
|
|
1693
1605
|
{
|
|
1694
|
-
"nth": 5,
|
|
1695
|
-
"isVLEncoded": true,
|
|
1696
1606
|
"isSerialized": true,
|
|
1697
1607
|
"isSigningField": true,
|
|
1608
|
+
"isVLEncoded": true,
|
|
1609
|
+
"nth": 5,
|
|
1698
1610
|
"type": "Blob"
|
|
1699
1611
|
}
|
|
1700
1612
|
],
|
|
1701
1613
|
[
|
|
1702
1614
|
"Signature",
|
|
1703
1615
|
{
|
|
1704
|
-
"nth": 6,
|
|
1705
|
-
"isVLEncoded": true,
|
|
1706
1616
|
"isSerialized": true,
|
|
1707
1617
|
"isSigningField": false,
|
|
1618
|
+
"isVLEncoded": true,
|
|
1619
|
+
"nth": 6,
|
|
1708
1620
|
"type": "Blob"
|
|
1709
1621
|
}
|
|
1710
1622
|
],
|
|
1711
1623
|
[
|
|
1712
1624
|
"Domain",
|
|
1713
1625
|
{
|
|
1714
|
-
"nth": 7,
|
|
1715
|
-
"isVLEncoded": true,
|
|
1716
1626
|
"isSerialized": true,
|
|
1717
1627
|
"isSigningField": true,
|
|
1628
|
+
"isVLEncoded": true,
|
|
1629
|
+
"nth": 7,
|
|
1718
1630
|
"type": "Blob"
|
|
1719
1631
|
}
|
|
1720
1632
|
],
|
|
1721
1633
|
[
|
|
1722
1634
|
"FundCode",
|
|
1723
1635
|
{
|
|
1724
|
-
"nth": 8,
|
|
1725
|
-
"isVLEncoded": true,
|
|
1726
1636
|
"isSerialized": true,
|
|
1727
1637
|
"isSigningField": true,
|
|
1638
|
+
"isVLEncoded": true,
|
|
1639
|
+
"nth": 8,
|
|
1728
1640
|
"type": "Blob"
|
|
1729
1641
|
}
|
|
1730
1642
|
],
|
|
1731
1643
|
[
|
|
1732
1644
|
"RemoveCode",
|
|
1733
1645
|
{
|
|
1734
|
-
"nth": 9,
|
|
1735
|
-
"isVLEncoded": true,
|
|
1736
1646
|
"isSerialized": true,
|
|
1737
1647
|
"isSigningField": true,
|
|
1648
|
+
"isVLEncoded": true,
|
|
1649
|
+
"nth": 9,
|
|
1738
1650
|
"type": "Blob"
|
|
1739
1651
|
}
|
|
1740
1652
|
],
|
|
1741
1653
|
[
|
|
1742
1654
|
"ExpireCode",
|
|
1743
1655
|
{
|
|
1744
|
-
"nth": 10,
|
|
1745
|
-
"isVLEncoded": true,
|
|
1746
1656
|
"isSerialized": true,
|
|
1747
1657
|
"isSigningField": true,
|
|
1658
|
+
"isVLEncoded": true,
|
|
1659
|
+
"nth": 10,
|
|
1748
1660
|
"type": "Blob"
|
|
1749
1661
|
}
|
|
1750
1662
|
],
|
|
1751
1663
|
[
|
|
1752
1664
|
"CreateCode",
|
|
1753
1665
|
{
|
|
1754
|
-
"nth": 11,
|
|
1755
|
-
"isVLEncoded": true,
|
|
1756
1666
|
"isSerialized": true,
|
|
1757
1667
|
"isSigningField": true,
|
|
1668
|
+
"isVLEncoded": true,
|
|
1669
|
+
"nth": 11,
|
|
1758
1670
|
"type": "Blob"
|
|
1759
1671
|
}
|
|
1760
1672
|
],
|
|
1761
1673
|
[
|
|
1762
1674
|
"MemoType",
|
|
1763
1675
|
{
|
|
1764
|
-
"nth": 12,
|
|
1765
|
-
"isVLEncoded": true,
|
|
1766
1676
|
"isSerialized": true,
|
|
1767
1677
|
"isSigningField": true,
|
|
1678
|
+
"isVLEncoded": true,
|
|
1679
|
+
"nth": 12,
|
|
1768
1680
|
"type": "Blob"
|
|
1769
1681
|
}
|
|
1770
1682
|
],
|
|
1771
1683
|
[
|
|
1772
1684
|
"MemoData",
|
|
1773
1685
|
{
|
|
1774
|
-
"nth": 13,
|
|
1775
|
-
"isVLEncoded": true,
|
|
1776
1686
|
"isSerialized": true,
|
|
1777
1687
|
"isSigningField": true,
|
|
1688
|
+
"isVLEncoded": true,
|
|
1689
|
+
"nth": 13,
|
|
1778
1690
|
"type": "Blob"
|
|
1779
1691
|
}
|
|
1780
1692
|
],
|
|
1781
1693
|
[
|
|
1782
1694
|
"MemoFormat",
|
|
1783
1695
|
{
|
|
1784
|
-
"nth": 14,
|
|
1785
|
-
"isVLEncoded": true,
|
|
1786
1696
|
"isSerialized": true,
|
|
1787
1697
|
"isSigningField": true,
|
|
1698
|
+
"isVLEncoded": true,
|
|
1699
|
+
"nth": 14,
|
|
1788
1700
|
"type": "Blob"
|
|
1789
1701
|
}
|
|
1790
1702
|
],
|
|
1791
1703
|
[
|
|
1792
1704
|
"Fulfillment",
|
|
1793
1705
|
{
|
|
1794
|
-
"nth": 16,
|
|
1795
|
-
"isVLEncoded": true,
|
|
1796
1706
|
"isSerialized": true,
|
|
1797
1707
|
"isSigningField": true,
|
|
1708
|
+
"isVLEncoded": true,
|
|
1709
|
+
"nth": 16,
|
|
1798
1710
|
"type": "Blob"
|
|
1799
1711
|
}
|
|
1800
1712
|
],
|
|
1801
1713
|
[
|
|
1802
1714
|
"Condition",
|
|
1803
1715
|
{
|
|
1804
|
-
"nth": 17,
|
|
1805
|
-
"isVLEncoded": true,
|
|
1806
1716
|
"isSerialized": true,
|
|
1807
1717
|
"isSigningField": true,
|
|
1718
|
+
"isVLEncoded": true,
|
|
1719
|
+
"nth": 17,
|
|
1808
1720
|
"type": "Blob"
|
|
1809
1721
|
}
|
|
1810
1722
|
],
|
|
1811
1723
|
[
|
|
1812
1724
|
"MasterSignature",
|
|
1813
1725
|
{
|
|
1814
|
-
"nth": 18,
|
|
1815
|
-
"isVLEncoded": true,
|
|
1816
1726
|
"isSerialized": true,
|
|
1817
1727
|
"isSigningField": false,
|
|
1728
|
+
"isVLEncoded": true,
|
|
1729
|
+
"nth": 18,
|
|
1818
1730
|
"type": "Blob"
|
|
1819
1731
|
}
|
|
1820
1732
|
],
|
|
1821
1733
|
[
|
|
1822
1734
|
"UNLModifyValidator",
|
|
1823
1735
|
{
|
|
1824
|
-
"nth": 19,
|
|
1825
|
-
"isVLEncoded": true,
|
|
1826
1736
|
"isSerialized": true,
|
|
1827
1737
|
"isSigningField": true,
|
|
1738
|
+
"isVLEncoded": true,
|
|
1739
|
+
"nth": 19,
|
|
1828
1740
|
"type": "Blob"
|
|
1829
1741
|
}
|
|
1830
1742
|
],
|
|
1831
1743
|
[
|
|
1832
1744
|
"ValidatorToDisable",
|
|
1833
1745
|
{
|
|
1834
|
-
"nth": 20,
|
|
1835
|
-
"isVLEncoded": true,
|
|
1836
1746
|
"isSerialized": true,
|
|
1837
1747
|
"isSigningField": true,
|
|
1838
|
-
"
|
|
1748
|
+
"isVLEncoded": true,
|
|
1749
|
+
"nth": 20,
|
|
1750
|
+
"type": "Blob"
|
|
1839
1751
|
}
|
|
1840
1752
|
],
|
|
1841
1753
|
[
|
|
1842
1754
|
"ValidatorToReEnable",
|
|
1843
1755
|
{
|
|
1844
|
-
"
|
|
1756
|
+
"isSerialized": true,
|
|
1757
|
+
"isSigningField": true,
|
|
1845
1758
|
"isVLEncoded": true,
|
|
1759
|
+
"nth": 21,
|
|
1760
|
+
"type": "Blob"
|
|
1761
|
+
}
|
|
1762
|
+
],
|
|
1763
|
+
[
|
|
1764
|
+
"DIDDocument",
|
|
1765
|
+
{
|
|
1846
1766
|
"isSerialized": true,
|
|
1847
1767
|
"isSigningField": true,
|
|
1768
|
+
"isVLEncoded": true,
|
|
1769
|
+
"nth": 26,
|
|
1848
1770
|
"type": "Blob"
|
|
1849
1771
|
}
|
|
1850
1772
|
],
|
|
1851
1773
|
[
|
|
1852
|
-
"
|
|
1774
|
+
"Data",
|
|
1853
1775
|
{
|
|
1854
|
-
"
|
|
1776
|
+
"isSerialized": true,
|
|
1777
|
+
"isSigningField": true,
|
|
1855
1778
|
"isVLEncoded": true,
|
|
1779
|
+
"nth": 27,
|
|
1780
|
+
"type": "Blob"
|
|
1781
|
+
}
|
|
1782
|
+
],
|
|
1783
|
+
[
|
|
1784
|
+
"AssetClass",
|
|
1785
|
+
{
|
|
1856
1786
|
"isSerialized": true,
|
|
1857
1787
|
"isSigningField": true,
|
|
1788
|
+
"isVLEncoded": true,
|
|
1789
|
+
"nth": 28,
|
|
1858
1790
|
"type": "Blob"
|
|
1859
1791
|
}
|
|
1860
1792
|
],
|
|
1861
1793
|
[
|
|
1862
|
-
"
|
|
1794
|
+
"Provider",
|
|
1863
1795
|
{
|
|
1864
|
-
"
|
|
1796
|
+
"isSerialized": true,
|
|
1797
|
+
"isSigningField": true,
|
|
1865
1798
|
"isVLEncoded": true,
|
|
1799
|
+
"nth": 29,
|
|
1800
|
+
"type": "Blob"
|
|
1801
|
+
}
|
|
1802
|
+
],
|
|
1803
|
+
[
|
|
1804
|
+
"MPTokenMetadata",
|
|
1805
|
+
{
|
|
1866
1806
|
"isSerialized": true,
|
|
1867
1807
|
"isSigningField": true,
|
|
1808
|
+
"isVLEncoded": true,
|
|
1809
|
+
"nth": 30,
|
|
1868
1810
|
"type": "Blob"
|
|
1869
1811
|
}
|
|
1870
1812
|
],
|
|
1871
1813
|
[
|
|
1872
|
-
"
|
|
1814
|
+
"CredentialType",
|
|
1873
1815
|
{
|
|
1874
|
-
"
|
|
1816
|
+
"isSerialized": true,
|
|
1817
|
+
"isSigningField": true,
|
|
1875
1818
|
"isVLEncoded": true,
|
|
1819
|
+
"nth": 31,
|
|
1820
|
+
"type": "Blob"
|
|
1821
|
+
}
|
|
1822
|
+
],
|
|
1823
|
+
[
|
|
1824
|
+
"FinishFunction",
|
|
1825
|
+
{
|
|
1876
1826
|
"isSerialized": true,
|
|
1877
1827
|
"isSigningField": true,
|
|
1828
|
+
"isVLEncoded": true,
|
|
1829
|
+
"nth": 32,
|
|
1878
1830
|
"type": "Blob"
|
|
1879
1831
|
}
|
|
1880
1832
|
],
|
|
1881
1833
|
[
|
|
1882
|
-
"
|
|
1834
|
+
"ContractCode",
|
|
1883
1835
|
{
|
|
1884
|
-
"
|
|
1836
|
+
"isSerialized": true,
|
|
1837
|
+
"isSigningField": true,
|
|
1885
1838
|
"isVLEncoded": true,
|
|
1839
|
+
"nth": 33,
|
|
1840
|
+
"type": "Blob"
|
|
1841
|
+
}
|
|
1842
|
+
],
|
|
1843
|
+
[
|
|
1844
|
+
"FunctionName",
|
|
1845
|
+
{
|
|
1886
1846
|
"isSerialized": true,
|
|
1887
1847
|
"isSigningField": true,
|
|
1848
|
+
"isVLEncoded": true,
|
|
1849
|
+
"nth": 34,
|
|
1888
1850
|
"type": "Blob"
|
|
1889
1851
|
}
|
|
1890
1852
|
],
|
|
1891
1853
|
[
|
|
1892
|
-
"
|
|
1854
|
+
"ParameterName",
|
|
1893
1855
|
{
|
|
1894
|
-
"
|
|
1856
|
+
"isSerialized": true,
|
|
1857
|
+
"isSigningField": true,
|
|
1895
1858
|
"isVLEncoded": true,
|
|
1859
|
+
"nth": 35,
|
|
1860
|
+
"type": "Blob"
|
|
1861
|
+
}
|
|
1862
|
+
],
|
|
1863
|
+
[
|
|
1864
|
+
"ContractReturnString",
|
|
1865
|
+
{
|
|
1896
1866
|
"isSerialized": true,
|
|
1897
1867
|
"isSigningField": true,
|
|
1868
|
+
"isVLEncoded": true,
|
|
1869
|
+
"nth": 36,
|
|
1898
1870
|
"type": "Blob"
|
|
1899
1871
|
}
|
|
1900
1872
|
],
|
|
1901
1873
|
[
|
|
1902
1874
|
"Account",
|
|
1903
1875
|
{
|
|
1904
|
-
"nth": 1,
|
|
1905
|
-
"isVLEncoded": true,
|
|
1906
1876
|
"isSerialized": true,
|
|
1907
1877
|
"isSigningField": true,
|
|
1878
|
+
"isVLEncoded": true,
|
|
1879
|
+
"nth": 1,
|
|
1908
1880
|
"type": "AccountID"
|
|
1909
1881
|
}
|
|
1910
1882
|
],
|
|
1911
1883
|
[
|
|
1912
1884
|
"Owner",
|
|
1913
1885
|
{
|
|
1914
|
-
"nth": 2,
|
|
1915
|
-
"isVLEncoded": true,
|
|
1916
1886
|
"isSerialized": true,
|
|
1917
1887
|
"isSigningField": true,
|
|
1888
|
+
"isVLEncoded": true,
|
|
1889
|
+
"nth": 2,
|
|
1918
1890
|
"type": "AccountID"
|
|
1919
1891
|
}
|
|
1920
1892
|
],
|
|
1921
1893
|
[
|
|
1922
1894
|
"Destination",
|
|
1923
1895
|
{
|
|
1924
|
-
"nth": 3,
|
|
1925
|
-
"isVLEncoded": true,
|
|
1926
1896
|
"isSerialized": true,
|
|
1927
1897
|
"isSigningField": true,
|
|
1898
|
+
"isVLEncoded": true,
|
|
1899
|
+
"nth": 3,
|
|
1928
1900
|
"type": "AccountID"
|
|
1929
1901
|
}
|
|
1930
1902
|
],
|
|
1931
1903
|
[
|
|
1932
1904
|
"Issuer",
|
|
1933
1905
|
{
|
|
1934
|
-
"nth": 4,
|
|
1935
|
-
"isVLEncoded": true,
|
|
1936
1906
|
"isSerialized": true,
|
|
1937
1907
|
"isSigningField": true,
|
|
1908
|
+
"isVLEncoded": true,
|
|
1909
|
+
"nth": 4,
|
|
1938
1910
|
"type": "AccountID"
|
|
1939
1911
|
}
|
|
1940
1912
|
],
|
|
1941
1913
|
[
|
|
1942
1914
|
"Authorize",
|
|
1943
1915
|
{
|
|
1944
|
-
"nth": 5,
|
|
1945
|
-
"isVLEncoded": true,
|
|
1946
1916
|
"isSerialized": true,
|
|
1947
1917
|
"isSigningField": true,
|
|
1918
|
+
"isVLEncoded": true,
|
|
1919
|
+
"nth": 5,
|
|
1948
1920
|
"type": "AccountID"
|
|
1949
1921
|
}
|
|
1950
1922
|
],
|
|
1951
1923
|
[
|
|
1952
1924
|
"Unauthorize",
|
|
1953
1925
|
{
|
|
1954
|
-
"nth": 6,
|
|
1955
|
-
"isVLEncoded": true,
|
|
1956
1926
|
"isSerialized": true,
|
|
1957
1927
|
"isSigningField": true,
|
|
1928
|
+
"isVLEncoded": true,
|
|
1929
|
+
"nth": 6,
|
|
1958
1930
|
"type": "AccountID"
|
|
1959
1931
|
}
|
|
1960
1932
|
],
|
|
1961
1933
|
[
|
|
1962
1934
|
"RegularKey",
|
|
1963
1935
|
{
|
|
1964
|
-
"nth": 8,
|
|
1965
|
-
"isVLEncoded": true,
|
|
1966
1936
|
"isSerialized": true,
|
|
1967
1937
|
"isSigningField": true,
|
|
1938
|
+
"isVLEncoded": true,
|
|
1939
|
+
"nth": 8,
|
|
1968
1940
|
"type": "AccountID"
|
|
1969
1941
|
}
|
|
1970
1942
|
],
|
|
1971
1943
|
[
|
|
1972
1944
|
"NFTokenMinter",
|
|
1973
1945
|
{
|
|
1974
|
-
"nth": 9,
|
|
1975
|
-
"isVLEncoded": true,
|
|
1976
1946
|
"isSerialized": true,
|
|
1977
1947
|
"isSigningField": true,
|
|
1948
|
+
"isVLEncoded": true,
|
|
1949
|
+
"nth": 9,
|
|
1978
1950
|
"type": "AccountID"
|
|
1979
1951
|
}
|
|
1980
1952
|
],
|
|
1981
1953
|
[
|
|
1982
1954
|
"EmitCallback",
|
|
1983
1955
|
{
|
|
1984
|
-
"
|
|
1956
|
+
"isSerialized": true,
|
|
1957
|
+
"isSigningField": true,
|
|
1985
1958
|
"isVLEncoded": true,
|
|
1959
|
+
"nth": 10,
|
|
1960
|
+
"type": "AccountID"
|
|
1961
|
+
}
|
|
1962
|
+
],
|
|
1963
|
+
[
|
|
1964
|
+
"Holder",
|
|
1965
|
+
{
|
|
1986
1966
|
"isSerialized": true,
|
|
1987
1967
|
"isSigningField": true,
|
|
1968
|
+
"isVLEncoded": true,
|
|
1969
|
+
"nth": 11,
|
|
1988
1970
|
"type": "AccountID"
|
|
1989
1971
|
}
|
|
1990
1972
|
],
|
|
1991
1973
|
[
|
|
1992
|
-
"
|
|
1974
|
+
"Delegate",
|
|
1993
1975
|
{
|
|
1994
|
-
"
|
|
1976
|
+
"isSerialized": true,
|
|
1977
|
+
"isSigningField": true,
|
|
1995
1978
|
"isVLEncoded": true,
|
|
1979
|
+
"nth": 12,
|
|
1980
|
+
"type": "AccountID"
|
|
1981
|
+
}
|
|
1982
|
+
],
|
|
1983
|
+
[
|
|
1984
|
+
"OtherChainSource",
|
|
1985
|
+
{
|
|
1996
1986
|
"isSerialized": true,
|
|
1997
1987
|
"isSigningField": true,
|
|
1988
|
+
"isVLEncoded": true,
|
|
1989
|
+
"nth": 18,
|
|
1998
1990
|
"type": "AccountID"
|
|
1999
1991
|
}
|
|
2000
1992
|
],
|
|
2001
1993
|
[
|
|
2002
|
-
"
|
|
1994
|
+
"OtherChainDestination",
|
|
2003
1995
|
{
|
|
2004
|
-
"
|
|
1996
|
+
"isSerialized": true,
|
|
1997
|
+
"isSigningField": true,
|
|
2005
1998
|
"isVLEncoded": true,
|
|
1999
|
+
"nth": 19,
|
|
2000
|
+
"type": "AccountID"
|
|
2001
|
+
}
|
|
2002
|
+
],
|
|
2003
|
+
[
|
|
2004
|
+
"AttestationSignerAccount",
|
|
2005
|
+
{
|
|
2006
2006
|
"isSerialized": true,
|
|
2007
2007
|
"isSigningField": true,
|
|
2008
|
+
"isVLEncoded": true,
|
|
2009
|
+
"nth": 20,
|
|
2008
2010
|
"type": "AccountID"
|
|
2009
2011
|
}
|
|
2010
2012
|
],
|
|
2011
2013
|
[
|
|
2012
|
-
"
|
|
2014
|
+
"AttestationRewardAccount",
|
|
2013
2015
|
{
|
|
2014
|
-
"
|
|
2016
|
+
"isSerialized": true,
|
|
2017
|
+
"isSigningField": true,
|
|
2015
2018
|
"isVLEncoded": true,
|
|
2019
|
+
"nth": 21,
|
|
2020
|
+
"type": "AccountID"
|
|
2021
|
+
}
|
|
2022
|
+
],
|
|
2023
|
+
[
|
|
2024
|
+
"LockingChainDoor",
|
|
2025
|
+
{
|
|
2016
2026
|
"isSerialized": true,
|
|
2017
2027
|
"isSigningField": true,
|
|
2018
|
-
"
|
|
2028
|
+
"isVLEncoded": true,
|
|
2029
|
+
"nth": 22,
|
|
2030
|
+
"type": "AccountID"
|
|
2019
2031
|
}
|
|
2020
2032
|
],
|
|
2021
2033
|
[
|
|
2022
|
-
"
|
|
2034
|
+
"IssuingChainDoor",
|
|
2023
2035
|
{
|
|
2024
|
-
"
|
|
2036
|
+
"isSerialized": true,
|
|
2037
|
+
"isSigningField": true,
|
|
2025
2038
|
"isVLEncoded": true,
|
|
2039
|
+
"nth": 23,
|
|
2040
|
+
"type": "AccountID"
|
|
2041
|
+
}
|
|
2042
|
+
],
|
|
2043
|
+
[
|
|
2044
|
+
"Subject",
|
|
2045
|
+
{
|
|
2026
2046
|
"isSerialized": true,
|
|
2027
2047
|
"isSigningField": true,
|
|
2028
|
-
"
|
|
2048
|
+
"isVLEncoded": true,
|
|
2049
|
+
"nth": 24,
|
|
2050
|
+
"type": "AccountID"
|
|
2029
2051
|
}
|
|
2030
2052
|
],
|
|
2031
2053
|
[
|
|
2032
|
-
"
|
|
2054
|
+
"ContractAccount",
|
|
2033
2055
|
{
|
|
2034
|
-
"
|
|
2056
|
+
"isSerialized": true,
|
|
2057
|
+
"isSigningField": true,
|
|
2035
2058
|
"isVLEncoded": true,
|
|
2059
|
+
"nth": 25,
|
|
2060
|
+
"type": "AccountID"
|
|
2061
|
+
}
|
|
2062
|
+
],
|
|
2063
|
+
[
|
|
2064
|
+
"Number",
|
|
2065
|
+
{
|
|
2036
2066
|
"isSerialized": true,
|
|
2037
2067
|
"isSigningField": true,
|
|
2038
|
-
"
|
|
2068
|
+
"isVLEncoded": false,
|
|
2069
|
+
"nth": 1,
|
|
2070
|
+
"type": "Number"
|
|
2039
2071
|
}
|
|
2040
2072
|
],
|
|
2041
2073
|
[
|
|
2042
|
-
"
|
|
2074
|
+
"AssetsAvailable",
|
|
2043
2075
|
{
|
|
2044
|
-
"nth": 4,
|
|
2045
|
-
"isVLEncoded": true,
|
|
2046
2076
|
"isSerialized": true,
|
|
2047
2077
|
"isSigningField": true,
|
|
2048
|
-
"
|
|
2078
|
+
"isVLEncoded": false,
|
|
2079
|
+
"nth": 2,
|
|
2080
|
+
"type": "Number"
|
|
2049
2081
|
}
|
|
2050
2082
|
],
|
|
2051
2083
|
[
|
|
2052
|
-
"
|
|
2084
|
+
"AssetsMaximum",
|
|
2053
2085
|
{
|
|
2054
|
-
"nth": 5,
|
|
2055
|
-
"isVLEncoded": true,
|
|
2056
2086
|
"isSerialized": true,
|
|
2057
2087
|
"isSigningField": true,
|
|
2058
|
-
"
|
|
2088
|
+
"isVLEncoded": false,
|
|
2089
|
+
"nth": 3,
|
|
2090
|
+
"type": "Number"
|
|
2059
2091
|
}
|
|
2060
2092
|
],
|
|
2061
2093
|
[
|
|
2062
|
-
"
|
|
2094
|
+
"AssetsTotal",
|
|
2063
2095
|
{
|
|
2064
|
-
"nth": 99,
|
|
2065
|
-
"isVLEncoded": true,
|
|
2066
2096
|
"isSerialized": true,
|
|
2067
2097
|
"isSigningField": true,
|
|
2068
|
-
"
|
|
2098
|
+
"isVLEncoded": false,
|
|
2099
|
+
"nth": 4,
|
|
2100
|
+
"type": "Number"
|
|
2069
2101
|
}
|
|
2070
2102
|
],
|
|
2071
2103
|
[
|
|
2072
|
-
"
|
|
2104
|
+
"LossUnrealized",
|
|
2073
2105
|
{
|
|
2074
|
-
"
|
|
2106
|
+
"isSerialized": true,
|
|
2107
|
+
"isSigningField": true,
|
|
2075
2108
|
"isVLEncoded": false,
|
|
2109
|
+
"nth": 5,
|
|
2110
|
+
"type": "Number"
|
|
2111
|
+
}
|
|
2112
|
+
],
|
|
2113
|
+
[
|
|
2114
|
+
"WasmReturnCode",
|
|
2115
|
+
{
|
|
2076
2116
|
"isSerialized": true,
|
|
2077
2117
|
"isSigningField": true,
|
|
2078
|
-
"
|
|
2118
|
+
"isVLEncoded": false,
|
|
2119
|
+
"nth": 1,
|
|
2120
|
+
"type": "Int32"
|
|
2079
2121
|
}
|
|
2080
2122
|
],
|
|
2081
2123
|
[
|
|
2082
2124
|
"TransactionMetaData",
|
|
2083
2125
|
{
|
|
2084
|
-
"nth": 2,
|
|
2085
|
-
"isVLEncoded": false,
|
|
2086
2126
|
"isSerialized": true,
|
|
2087
2127
|
"isSigningField": true,
|
|
2128
|
+
"isVLEncoded": false,
|
|
2129
|
+
"nth": 2,
|
|
2088
2130
|
"type": "STObject"
|
|
2089
2131
|
}
|
|
2090
2132
|
],
|
|
2091
2133
|
[
|
|
2092
2134
|
"CreatedNode",
|
|
2093
2135
|
{
|
|
2094
|
-
"nth": 3,
|
|
2095
|
-
"isVLEncoded": false,
|
|
2096
2136
|
"isSerialized": true,
|
|
2097
2137
|
"isSigningField": true,
|
|
2138
|
+
"isVLEncoded": false,
|
|
2139
|
+
"nth": 3,
|
|
2098
2140
|
"type": "STObject"
|
|
2099
2141
|
}
|
|
2100
2142
|
],
|
|
2101
2143
|
[
|
|
2102
2144
|
"DeletedNode",
|
|
2103
2145
|
{
|
|
2104
|
-
"nth": 4,
|
|
2105
|
-
"isVLEncoded": false,
|
|
2106
2146
|
"isSerialized": true,
|
|
2107
2147
|
"isSigningField": true,
|
|
2148
|
+
"isVLEncoded": false,
|
|
2149
|
+
"nth": 4,
|
|
2108
2150
|
"type": "STObject"
|
|
2109
2151
|
}
|
|
2110
2152
|
],
|
|
2111
2153
|
[
|
|
2112
2154
|
"ModifiedNode",
|
|
2113
2155
|
{
|
|
2114
|
-
"nth": 5,
|
|
2115
|
-
"isVLEncoded": false,
|
|
2116
2156
|
"isSerialized": true,
|
|
2117
2157
|
"isSigningField": true,
|
|
2158
|
+
"isVLEncoded": false,
|
|
2159
|
+
"nth": 5,
|
|
2118
2160
|
"type": "STObject"
|
|
2119
2161
|
}
|
|
2120
2162
|
],
|
|
2121
2163
|
[
|
|
2122
2164
|
"PreviousFields",
|
|
2123
2165
|
{
|
|
2124
|
-
"nth": 6,
|
|
2125
|
-
"isVLEncoded": false,
|
|
2126
2166
|
"isSerialized": true,
|
|
2127
2167
|
"isSigningField": true,
|
|
2168
|
+
"isVLEncoded": false,
|
|
2169
|
+
"nth": 6,
|
|
2128
2170
|
"type": "STObject"
|
|
2129
2171
|
}
|
|
2130
2172
|
],
|
|
2131
2173
|
[
|
|
2132
2174
|
"FinalFields",
|
|
2133
2175
|
{
|
|
2134
|
-
"nth": 7,
|
|
2135
|
-
"isVLEncoded": false,
|
|
2136
2176
|
"isSerialized": true,
|
|
2137
2177
|
"isSigningField": true,
|
|
2178
|
+
"isVLEncoded": false,
|
|
2179
|
+
"nth": 7,
|
|
2138
2180
|
"type": "STObject"
|
|
2139
2181
|
}
|
|
2140
2182
|
],
|
|
2141
2183
|
[
|
|
2142
2184
|
"NewFields",
|
|
2143
2185
|
{
|
|
2144
|
-
"nth": 8,
|
|
2145
|
-
"isVLEncoded": false,
|
|
2146
2186
|
"isSerialized": true,
|
|
2147
2187
|
"isSigningField": true,
|
|
2188
|
+
"isVLEncoded": false,
|
|
2189
|
+
"nth": 8,
|
|
2148
2190
|
"type": "STObject"
|
|
2149
2191
|
}
|
|
2150
2192
|
],
|
|
2151
2193
|
[
|
|
2152
2194
|
"TemplateEntry",
|
|
2153
2195
|
{
|
|
2154
|
-
"nth": 9,
|
|
2155
|
-
"isVLEncoded": false,
|
|
2156
2196
|
"isSerialized": true,
|
|
2157
2197
|
"isSigningField": true,
|
|
2198
|
+
"isVLEncoded": false,
|
|
2199
|
+
"nth": 9,
|
|
2158
2200
|
"type": "STObject"
|
|
2159
2201
|
}
|
|
2160
2202
|
],
|
|
2161
2203
|
[
|
|
2162
2204
|
"Memo",
|
|
2163
2205
|
{
|
|
2164
|
-
"nth": 10,
|
|
2165
|
-
"isVLEncoded": false,
|
|
2166
2206
|
"isSerialized": true,
|
|
2167
2207
|
"isSigningField": true,
|
|
2208
|
+
"isVLEncoded": false,
|
|
2209
|
+
"nth": 10,
|
|
2168
2210
|
"type": "STObject"
|
|
2169
2211
|
}
|
|
2170
2212
|
],
|
|
2171
2213
|
[
|
|
2172
2214
|
"SignerEntry",
|
|
2173
2215
|
{
|
|
2174
|
-
"nth": 11,
|
|
2175
|
-
"isVLEncoded": false,
|
|
2176
2216
|
"isSerialized": true,
|
|
2177
2217
|
"isSigningField": true,
|
|
2218
|
+
"isVLEncoded": false,
|
|
2219
|
+
"nth": 11,
|
|
2178
2220
|
"type": "STObject"
|
|
2179
2221
|
}
|
|
2180
2222
|
],
|
|
2181
2223
|
[
|
|
2182
2224
|
"NFToken",
|
|
2183
2225
|
{
|
|
2184
|
-
"nth": 12,
|
|
2185
|
-
"isVLEncoded": false,
|
|
2186
2226
|
"isSerialized": true,
|
|
2187
2227
|
"isSigningField": true,
|
|
2228
|
+
"isVLEncoded": false,
|
|
2229
|
+
"nth": 12,
|
|
2188
2230
|
"type": "STObject"
|
|
2189
2231
|
}
|
|
2190
2232
|
],
|
|
2191
2233
|
[
|
|
2192
2234
|
"EmitDetails",
|
|
2193
2235
|
{
|
|
2194
|
-
"nth": 13,
|
|
2195
|
-
"isVLEncoded": false,
|
|
2196
2236
|
"isSerialized": true,
|
|
2197
2237
|
"isSigningField": true,
|
|
2238
|
+
"isVLEncoded": false,
|
|
2239
|
+
"nth": 13,
|
|
2198
2240
|
"type": "STObject"
|
|
2199
2241
|
}
|
|
2200
2242
|
],
|
|
2201
2243
|
[
|
|
2202
|
-
"
|
|
2244
|
+
"Permission",
|
|
2203
2245
|
{
|
|
2204
|
-
"nth": 14,
|
|
2205
|
-
"isVLEncoded": false,
|
|
2206
2246
|
"isSerialized": true,
|
|
2207
2247
|
"isSigningField": true,
|
|
2248
|
+
"isVLEncoded": false,
|
|
2249
|
+
"nth": 15,
|
|
2208
2250
|
"type": "STObject"
|
|
2209
2251
|
}
|
|
2210
2252
|
],
|
|
2211
2253
|
[
|
|
2212
2254
|
"Signer",
|
|
2213
2255
|
{
|
|
2214
|
-
"nth": 16,
|
|
2215
|
-
"isVLEncoded": false,
|
|
2216
2256
|
"isSerialized": true,
|
|
2217
2257
|
"isSigningField": true,
|
|
2258
|
+
"isVLEncoded": false,
|
|
2259
|
+
"nth": 16,
|
|
2218
2260
|
"type": "STObject"
|
|
2219
2261
|
}
|
|
2220
2262
|
],
|
|
2221
2263
|
[
|
|
2222
2264
|
"Majority",
|
|
2223
2265
|
{
|
|
2224
|
-
"nth": 18,
|
|
2225
|
-
"isVLEncoded": false,
|
|
2226
2266
|
"isSerialized": true,
|
|
2227
2267
|
"isSigningField": true,
|
|
2268
|
+
"isVLEncoded": false,
|
|
2269
|
+
"nth": 18,
|
|
2228
2270
|
"type": "STObject"
|
|
2229
2271
|
}
|
|
2230
2272
|
],
|
|
2231
2273
|
[
|
|
2232
2274
|
"DisabledValidator",
|
|
2233
2275
|
{
|
|
2234
|
-
"nth": 19,
|
|
2235
|
-
"isVLEncoded": false,
|
|
2236
2276
|
"isSerialized": true,
|
|
2237
2277
|
"isSigningField": true,
|
|
2278
|
+
"isVLEncoded": false,
|
|
2279
|
+
"nth": 19,
|
|
2238
2280
|
"type": "STObject"
|
|
2239
2281
|
}
|
|
2240
2282
|
],
|
|
2241
2283
|
[
|
|
2242
|
-
"
|
|
2284
|
+
"VoteEntry",
|
|
2243
2285
|
{
|
|
2244
|
-
"nth": 20,
|
|
2245
|
-
"isVLEncoded": false,
|
|
2246
2286
|
"isSerialized": true,
|
|
2247
2287
|
"isSigningField": true,
|
|
2288
|
+
"isVLEncoded": false,
|
|
2289
|
+
"nth": 25,
|
|
2248
2290
|
"type": "STObject"
|
|
2249
2291
|
}
|
|
2250
2292
|
],
|
|
2251
2293
|
[
|
|
2252
|
-
"
|
|
2294
|
+
"AuctionSlot",
|
|
2253
2295
|
{
|
|
2254
|
-
"nth": 21,
|
|
2255
|
-
"isVLEncoded": false,
|
|
2256
2296
|
"isSerialized": true,
|
|
2257
2297
|
"isSigningField": true,
|
|
2298
|
+
"isVLEncoded": false,
|
|
2299
|
+
"nth": 26,
|
|
2258
2300
|
"type": "STObject"
|
|
2259
2301
|
}
|
|
2260
2302
|
],
|
|
2261
2303
|
[
|
|
2262
|
-
"
|
|
2304
|
+
"AuthAccount",
|
|
2263
2305
|
{
|
|
2264
|
-
"nth": 22,
|
|
2265
|
-
"isVLEncoded": false,
|
|
2266
2306
|
"isSerialized": true,
|
|
2267
2307
|
"isSigningField": true,
|
|
2308
|
+
"isVLEncoded": false,
|
|
2309
|
+
"nth": 27,
|
|
2268
2310
|
"type": "STObject"
|
|
2269
2311
|
}
|
|
2270
2312
|
],
|
|
2271
2313
|
[
|
|
2272
|
-
"
|
|
2314
|
+
"XChainClaimProofSig",
|
|
2273
2315
|
{
|
|
2274
|
-
"nth": 23,
|
|
2275
|
-
"isVLEncoded": false,
|
|
2276
2316
|
"isSerialized": true,
|
|
2277
2317
|
"isSigningField": true,
|
|
2318
|
+
"isVLEncoded": false,
|
|
2319
|
+
"nth": 28,
|
|
2278
2320
|
"type": "STObject"
|
|
2279
2321
|
}
|
|
2280
2322
|
],
|
|
2281
2323
|
[
|
|
2282
|
-
"
|
|
2324
|
+
"XChainCreateAccountProofSig",
|
|
2283
2325
|
{
|
|
2284
|
-
"nth": 24,
|
|
2285
|
-
"isVLEncoded": false,
|
|
2286
2326
|
"isSerialized": true,
|
|
2287
2327
|
"isSigningField": true,
|
|
2328
|
+
"isVLEncoded": false,
|
|
2329
|
+
"nth": 29,
|
|
2288
2330
|
"type": "STObject"
|
|
2289
2331
|
}
|
|
2290
2332
|
],
|
|
2291
2333
|
[
|
|
2292
|
-
"
|
|
2334
|
+
"XChainClaimAttestationCollectionElement",
|
|
2293
2335
|
{
|
|
2294
|
-
"nth": 96,
|
|
2295
|
-
"isVLEncoded": false,
|
|
2296
2336
|
"isSerialized": true,
|
|
2297
2337
|
"isSigningField": true,
|
|
2338
|
+
"isVLEncoded": false,
|
|
2339
|
+
"nth": 30,
|
|
2298
2340
|
"type": "STObject"
|
|
2299
2341
|
}
|
|
2300
2342
|
],
|
|
2301
2343
|
[
|
|
2302
|
-
"
|
|
2344
|
+
"XChainCreateAccountAttestationCollectionElement",
|
|
2303
2345
|
{
|
|
2304
|
-
"
|
|
2346
|
+
"isSerialized": true,
|
|
2347
|
+
"isSigningField": true,
|
|
2305
2348
|
"isVLEncoded": false,
|
|
2349
|
+
"nth": 31,
|
|
2350
|
+
"type": "STObject"
|
|
2351
|
+
}
|
|
2352
|
+
],
|
|
2353
|
+
[
|
|
2354
|
+
"PriceData",
|
|
2355
|
+
{
|
|
2306
2356
|
"isSerialized": true,
|
|
2307
2357
|
"isSigningField": true,
|
|
2358
|
+
"isVLEncoded": false,
|
|
2359
|
+
"nth": 32,
|
|
2308
2360
|
"type": "STObject"
|
|
2309
2361
|
}
|
|
2310
2362
|
],
|
|
2311
2363
|
[
|
|
2312
|
-
"
|
|
2364
|
+
"Credential",
|
|
2313
2365
|
{
|
|
2314
|
-
"
|
|
2366
|
+
"isSerialized": true,
|
|
2367
|
+
"isSigningField": true,
|
|
2315
2368
|
"isVLEncoded": false,
|
|
2369
|
+
"nth": 33,
|
|
2370
|
+
"type": "STObject"
|
|
2371
|
+
}
|
|
2372
|
+
],
|
|
2373
|
+
[
|
|
2374
|
+
"RawTransaction",
|
|
2375
|
+
{
|
|
2316
2376
|
"isSerialized": true,
|
|
2317
2377
|
"isSigningField": true,
|
|
2378
|
+
"isVLEncoded": false,
|
|
2379
|
+
"nth": 34,
|
|
2318
2380
|
"type": "STObject"
|
|
2319
2381
|
}
|
|
2320
2382
|
],
|
|
2321
2383
|
[
|
|
2322
|
-
"
|
|
2384
|
+
"BatchSigner",
|
|
2323
2385
|
{
|
|
2324
|
-
"
|
|
2386
|
+
"isSerialized": true,
|
|
2387
|
+
"isSigningField": true,
|
|
2325
2388
|
"isVLEncoded": false,
|
|
2389
|
+
"nth": 35,
|
|
2390
|
+
"type": "STObject"
|
|
2391
|
+
}
|
|
2392
|
+
],
|
|
2393
|
+
[
|
|
2394
|
+
"Book",
|
|
2395
|
+
{
|
|
2326
2396
|
"isSerialized": true,
|
|
2327
2397
|
"isSigningField": true,
|
|
2398
|
+
"isVLEncoded": false,
|
|
2399
|
+
"nth": 36,
|
|
2328
2400
|
"type": "STObject"
|
|
2329
2401
|
}
|
|
2330
2402
|
],
|
|
2331
2403
|
[
|
|
2332
|
-
"
|
|
2404
|
+
"Function",
|
|
2333
2405
|
{
|
|
2334
|
-
"
|
|
2406
|
+
"isSerialized": true,
|
|
2407
|
+
"isSigningField": true,
|
|
2335
2408
|
"isVLEncoded": false,
|
|
2409
|
+
"nth": 37,
|
|
2410
|
+
"type": "STObject"
|
|
2411
|
+
}
|
|
2412
|
+
],
|
|
2413
|
+
[
|
|
2414
|
+
"InstanceParameter",
|
|
2415
|
+
{
|
|
2336
2416
|
"isSerialized": true,
|
|
2337
2417
|
"isSigningField": true,
|
|
2418
|
+
"isVLEncoded": false,
|
|
2419
|
+
"nth": 38,
|
|
2338
2420
|
"type": "STObject"
|
|
2339
2421
|
}
|
|
2340
2422
|
],
|
|
2341
2423
|
[
|
|
2342
|
-
"
|
|
2424
|
+
"InstanceParameterValue",
|
|
2343
2425
|
{
|
|
2344
|
-
"
|
|
2426
|
+
"isSerialized": true,
|
|
2427
|
+
"isSigningField": true,
|
|
2345
2428
|
"isVLEncoded": false,
|
|
2429
|
+
"nth": 39,
|
|
2430
|
+
"type": "STObject"
|
|
2431
|
+
}
|
|
2432
|
+
],
|
|
2433
|
+
[
|
|
2434
|
+
"Parameter",
|
|
2435
|
+
{
|
|
2346
2436
|
"isSerialized": true,
|
|
2347
2437
|
"isSigningField": true,
|
|
2438
|
+
"isVLEncoded": false,
|
|
2439
|
+
"nth": 40,
|
|
2348
2440
|
"type": "STObject"
|
|
2349
2441
|
}
|
|
2350
2442
|
],
|
|
2351
2443
|
[
|
|
2352
2444
|
"Signers",
|
|
2353
2445
|
{
|
|
2354
|
-
"nth": 3,
|
|
2355
|
-
"isVLEncoded": false,
|
|
2356
2446
|
"isSerialized": true,
|
|
2357
2447
|
"isSigningField": false,
|
|
2448
|
+
"isVLEncoded": false,
|
|
2449
|
+
"nth": 3,
|
|
2358
2450
|
"type": "STArray"
|
|
2359
2451
|
}
|
|
2360
2452
|
],
|
|
2361
2453
|
[
|
|
2362
2454
|
"SignerEntries",
|
|
2363
2455
|
{
|
|
2364
|
-
"nth": 4,
|
|
2365
|
-
"isVLEncoded": false,
|
|
2366
2456
|
"isSerialized": true,
|
|
2367
2457
|
"isSigningField": true,
|
|
2458
|
+
"isVLEncoded": false,
|
|
2459
|
+
"nth": 4,
|
|
2368
2460
|
"type": "STArray"
|
|
2369
2461
|
}
|
|
2370
2462
|
],
|
|
2371
2463
|
[
|
|
2372
2464
|
"Template",
|
|
2373
2465
|
{
|
|
2374
|
-
"nth": 5,
|
|
2375
|
-
"isVLEncoded": false,
|
|
2376
2466
|
"isSerialized": true,
|
|
2377
2467
|
"isSigningField": true,
|
|
2468
|
+
"isVLEncoded": false,
|
|
2469
|
+
"nth": 5,
|
|
2378
2470
|
"type": "STArray"
|
|
2379
2471
|
}
|
|
2380
2472
|
],
|
|
2381
2473
|
[
|
|
2382
2474
|
"Necessary",
|
|
2383
2475
|
{
|
|
2384
|
-
"nth": 6,
|
|
2385
|
-
"isVLEncoded": false,
|
|
2386
2476
|
"isSerialized": true,
|
|
2387
2477
|
"isSigningField": true,
|
|
2478
|
+
"isVLEncoded": false,
|
|
2479
|
+
"nth": 6,
|
|
2388
2480
|
"type": "STArray"
|
|
2389
2481
|
}
|
|
2390
2482
|
],
|
|
2391
2483
|
[
|
|
2392
2484
|
"Sufficient",
|
|
2393
2485
|
{
|
|
2394
|
-
"nth": 7,
|
|
2395
|
-
"isVLEncoded": false,
|
|
2396
2486
|
"isSerialized": true,
|
|
2397
2487
|
"isSigningField": true,
|
|
2488
|
+
"isVLEncoded": false,
|
|
2489
|
+
"nth": 7,
|
|
2398
2490
|
"type": "STArray"
|
|
2399
2491
|
}
|
|
2400
2492
|
],
|
|
2401
2493
|
[
|
|
2402
2494
|
"AffectedNodes",
|
|
2403
2495
|
{
|
|
2404
|
-
"nth": 8,
|
|
2405
|
-
"isVLEncoded": false,
|
|
2406
2496
|
"isSerialized": true,
|
|
2407
2497
|
"isSigningField": true,
|
|
2498
|
+
"isVLEncoded": false,
|
|
2499
|
+
"nth": 8,
|
|
2408
2500
|
"type": "STArray"
|
|
2409
2501
|
}
|
|
2410
2502
|
],
|
|
2411
2503
|
[
|
|
2412
2504
|
"Memos",
|
|
2413
2505
|
{
|
|
2414
|
-
"nth": 9,
|
|
2415
|
-
"isVLEncoded": false,
|
|
2416
2506
|
"isSerialized": true,
|
|
2417
2507
|
"isSigningField": true,
|
|
2508
|
+
"isVLEncoded": false,
|
|
2509
|
+
"nth": 9,
|
|
2418
2510
|
"type": "STArray"
|
|
2419
2511
|
}
|
|
2420
2512
|
],
|
|
2421
2513
|
[
|
|
2422
2514
|
"NFTokens",
|
|
2423
2515
|
{
|
|
2424
|
-
"nth": 10,
|
|
2425
|
-
"isVLEncoded": false,
|
|
2426
2516
|
"isSerialized": true,
|
|
2427
2517
|
"isSigningField": true,
|
|
2518
|
+
"isVLEncoded": false,
|
|
2519
|
+
"nth": 10,
|
|
2428
2520
|
"type": "STArray"
|
|
2429
2521
|
}
|
|
2430
2522
|
],
|
|
2431
2523
|
[
|
|
2432
|
-
"
|
|
2524
|
+
"VoteSlots",
|
|
2433
2525
|
{
|
|
2434
|
-
"
|
|
2526
|
+
"isSerialized": true,
|
|
2527
|
+
"isSigningField": true,
|
|
2435
2528
|
"isVLEncoded": false,
|
|
2529
|
+
"nth": 12,
|
|
2530
|
+
"type": "STArray"
|
|
2531
|
+
}
|
|
2532
|
+
],
|
|
2533
|
+
[
|
|
2534
|
+
"AdditionalBooks",
|
|
2535
|
+
{
|
|
2436
2536
|
"isSerialized": true,
|
|
2437
2537
|
"isSigningField": true,
|
|
2538
|
+
"isVLEncoded": false,
|
|
2539
|
+
"nth": 13,
|
|
2438
2540
|
"type": "STArray"
|
|
2439
2541
|
}
|
|
2440
2542
|
],
|
|
2441
2543
|
[
|
|
2442
2544
|
"Majorities",
|
|
2443
2545
|
{
|
|
2444
|
-
"nth": 16,
|
|
2445
|
-
"isVLEncoded": false,
|
|
2446
2546
|
"isSerialized": true,
|
|
2447
2547
|
"isSigningField": true,
|
|
2548
|
+
"isVLEncoded": false,
|
|
2549
|
+
"nth": 16,
|
|
2448
2550
|
"type": "STArray"
|
|
2449
2551
|
}
|
|
2450
2552
|
],
|
|
2451
2553
|
[
|
|
2452
2554
|
"DisabledValidators",
|
|
2453
2555
|
{
|
|
2454
|
-
"
|
|
2556
|
+
"isSerialized": true,
|
|
2557
|
+
"isSigningField": true,
|
|
2455
2558
|
"isVLEncoded": false,
|
|
2559
|
+
"nth": 17,
|
|
2560
|
+
"type": "STArray"
|
|
2561
|
+
}
|
|
2562
|
+
],
|
|
2563
|
+
[
|
|
2564
|
+
"XChainClaimAttestations",
|
|
2565
|
+
{
|
|
2456
2566
|
"isSerialized": true,
|
|
2457
2567
|
"isSigningField": true,
|
|
2568
|
+
"isVLEncoded": false,
|
|
2569
|
+
"nth": 21,
|
|
2458
2570
|
"type": "STArray"
|
|
2459
2571
|
}
|
|
2460
2572
|
],
|
|
2461
2573
|
[
|
|
2462
|
-
"
|
|
2574
|
+
"XChainCreateAccountAttestations",
|
|
2463
2575
|
{
|
|
2464
|
-
"
|
|
2576
|
+
"isSerialized": true,
|
|
2577
|
+
"isSigningField": true,
|
|
2465
2578
|
"isVLEncoded": false,
|
|
2579
|
+
"nth": 22,
|
|
2580
|
+
"type": "STArray"
|
|
2581
|
+
}
|
|
2582
|
+
],
|
|
2583
|
+
[
|
|
2584
|
+
"PriceDataSeries",
|
|
2585
|
+
{
|
|
2466
2586
|
"isSerialized": true,
|
|
2467
2587
|
"isSigningField": true,
|
|
2588
|
+
"isVLEncoded": false,
|
|
2589
|
+
"nth": 24,
|
|
2468
2590
|
"type": "STArray"
|
|
2469
2591
|
}
|
|
2470
2592
|
],
|
|
2471
2593
|
[
|
|
2472
|
-
"
|
|
2594
|
+
"AuthAccounts",
|
|
2473
2595
|
{
|
|
2474
|
-
"
|
|
2596
|
+
"isSerialized": true,
|
|
2597
|
+
"isSigningField": true,
|
|
2475
2598
|
"isVLEncoded": false,
|
|
2599
|
+
"nth": 25,
|
|
2600
|
+
"type": "STArray"
|
|
2601
|
+
}
|
|
2602
|
+
],
|
|
2603
|
+
[
|
|
2604
|
+
"AuthorizeCredentials",
|
|
2605
|
+
{
|
|
2476
2606
|
"isSerialized": true,
|
|
2477
2607
|
"isSigningField": true,
|
|
2608
|
+
"isVLEncoded": false,
|
|
2609
|
+
"nth": 26,
|
|
2478
2610
|
"type": "STArray"
|
|
2479
2611
|
}
|
|
2480
2612
|
],
|
|
2481
2613
|
[
|
|
2482
|
-
"
|
|
2614
|
+
"UnauthorizeCredentials",
|
|
2483
2615
|
{
|
|
2484
|
-
"
|
|
2616
|
+
"isSerialized": true,
|
|
2617
|
+
"isSigningField": true,
|
|
2485
2618
|
"isVLEncoded": false,
|
|
2619
|
+
"nth": 27,
|
|
2620
|
+
"type": "STArray"
|
|
2621
|
+
}
|
|
2622
|
+
],
|
|
2623
|
+
[
|
|
2624
|
+
"AcceptedCredentials",
|
|
2625
|
+
{
|
|
2486
2626
|
"isSerialized": true,
|
|
2487
2627
|
"isSigningField": true,
|
|
2628
|
+
"isVLEncoded": false,
|
|
2629
|
+
"nth": 28,
|
|
2488
2630
|
"type": "STArray"
|
|
2489
2631
|
}
|
|
2490
2632
|
],
|
|
2491
2633
|
[
|
|
2492
|
-
"
|
|
2634
|
+
"Permissions",
|
|
2493
2635
|
{
|
|
2494
|
-
"
|
|
2636
|
+
"isSerialized": true,
|
|
2637
|
+
"isSigningField": true,
|
|
2495
2638
|
"isVLEncoded": false,
|
|
2639
|
+
"nth": 29,
|
|
2640
|
+
"type": "STArray"
|
|
2641
|
+
}
|
|
2642
|
+
],
|
|
2643
|
+
[
|
|
2644
|
+
"RawTransactions",
|
|
2645
|
+
{
|
|
2496
2646
|
"isSerialized": true,
|
|
2497
2647
|
"isSigningField": true,
|
|
2648
|
+
"isVLEncoded": false,
|
|
2649
|
+
"nth": 30,
|
|
2498
2650
|
"type": "STArray"
|
|
2499
2651
|
}
|
|
2500
2652
|
],
|
|
2501
2653
|
[
|
|
2502
|
-
"
|
|
2654
|
+
"BatchSigners",
|
|
2503
2655
|
{
|
|
2504
|
-
"
|
|
2656
|
+
"isSerialized": true,
|
|
2657
|
+
"isSigningField": false,
|
|
2505
2658
|
"isVLEncoded": false,
|
|
2659
|
+
"nth": 31,
|
|
2660
|
+
"type": "STArray"
|
|
2661
|
+
}
|
|
2662
|
+
],
|
|
2663
|
+
[
|
|
2664
|
+
"Functions",
|
|
2665
|
+
{
|
|
2506
2666
|
"isSerialized": true,
|
|
2507
2667
|
"isSigningField": true,
|
|
2668
|
+
"isVLEncoded": false,
|
|
2669
|
+
"nth": 33,
|
|
2508
2670
|
"type": "STArray"
|
|
2509
2671
|
}
|
|
2510
2672
|
],
|
|
2511
2673
|
[
|
|
2512
|
-
"
|
|
2674
|
+
"InstanceParameters",
|
|
2513
2675
|
{
|
|
2514
|
-
"nth": 94,
|
|
2515
|
-
"isVLEncoded": false,
|
|
2516
2676
|
"isSerialized": true,
|
|
2517
2677
|
"isSigningField": true,
|
|
2678
|
+
"isVLEncoded": false,
|
|
2679
|
+
"nth": 34,
|
|
2518
2680
|
"type": "STArray"
|
|
2519
2681
|
}
|
|
2520
2682
|
],
|
|
2521
2683
|
[
|
|
2522
|
-
"
|
|
2684
|
+
"InstanceParameterValues",
|
|
2523
2685
|
{
|
|
2524
|
-
"
|
|
2686
|
+
"isSerialized": true,
|
|
2687
|
+
"isSigningField": true,
|
|
2525
2688
|
"isVLEncoded": false,
|
|
2689
|
+
"nth": 35,
|
|
2690
|
+
"type": "STArray"
|
|
2691
|
+
}
|
|
2692
|
+
],
|
|
2693
|
+
[
|
|
2694
|
+
"Parameters",
|
|
2695
|
+
{
|
|
2526
2696
|
"isSerialized": true,
|
|
2527
2697
|
"isSigningField": true,
|
|
2698
|
+
"isVLEncoded": false,
|
|
2699
|
+
"nth": 36,
|
|
2528
2700
|
"type": "STArray"
|
|
2529
2701
|
}
|
|
2530
2702
|
],
|
|
2531
2703
|
[
|
|
2532
|
-
"
|
|
2704
|
+
"CloseResolution",
|
|
2533
2705
|
{
|
|
2534
|
-
"
|
|
2706
|
+
"isSerialized": true,
|
|
2707
|
+
"isSigningField": true,
|
|
2535
2708
|
"isVLEncoded": false,
|
|
2709
|
+
"nth": 1,
|
|
2710
|
+
"type": "UInt8"
|
|
2711
|
+
}
|
|
2712
|
+
],
|
|
2713
|
+
[
|
|
2714
|
+
"Method",
|
|
2715
|
+
{
|
|
2536
2716
|
"isSerialized": true,
|
|
2537
2717
|
"isSigningField": true,
|
|
2538
|
-
"
|
|
2718
|
+
"isVLEncoded": false,
|
|
2719
|
+
"nth": 2,
|
|
2720
|
+
"type": "UInt8"
|
|
2539
2721
|
}
|
|
2540
|
-
]
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2722
|
+
],
|
|
2723
|
+
[
|
|
2724
|
+
"TransactionResult",
|
|
2725
|
+
{
|
|
2726
|
+
"isSerialized": true,
|
|
2727
|
+
"isSigningField": true,
|
|
2728
|
+
"isVLEncoded": false,
|
|
2729
|
+
"nth": 3,
|
|
2730
|
+
"type": "UInt8"
|
|
2731
|
+
}
|
|
2732
|
+
],
|
|
2733
|
+
[
|
|
2734
|
+
"Scale",
|
|
2735
|
+
{
|
|
2736
|
+
"isSerialized": true,
|
|
2737
|
+
"isSigningField": true,
|
|
2738
|
+
"isVLEncoded": false,
|
|
2739
|
+
"nth": 4,
|
|
2740
|
+
"type": "UInt8"
|
|
2741
|
+
}
|
|
2742
|
+
],
|
|
2743
|
+
[
|
|
2744
|
+
"AssetScale",
|
|
2745
|
+
{
|
|
2746
|
+
"isSerialized": true,
|
|
2747
|
+
"isSigningField": true,
|
|
2748
|
+
"isVLEncoded": false,
|
|
2749
|
+
"nth": 5,
|
|
2750
|
+
"type": "UInt8"
|
|
2751
|
+
}
|
|
2752
|
+
],
|
|
2753
|
+
[
|
|
2754
|
+
"TickSize",
|
|
2755
|
+
{
|
|
2756
|
+
"isSerialized": true,
|
|
2757
|
+
"isSigningField": true,
|
|
2758
|
+
"isVLEncoded": false,
|
|
2759
|
+
"nth": 16,
|
|
2760
|
+
"type": "UInt8"
|
|
2761
|
+
}
|
|
2762
|
+
],
|
|
2763
|
+
[
|
|
2764
|
+
"UNLModifyDisabling",
|
|
2765
|
+
{
|
|
2766
|
+
"isSerialized": true,
|
|
2767
|
+
"isSigningField": true,
|
|
2768
|
+
"isVLEncoded": false,
|
|
2769
|
+
"nth": 17,
|
|
2770
|
+
"type": "UInt8"
|
|
2771
|
+
}
|
|
2772
|
+
],
|
|
2773
|
+
[
|
|
2774
|
+
"WasLockingChainSend",
|
|
2775
|
+
{
|
|
2776
|
+
"isSerialized": true,
|
|
2777
|
+
"isSigningField": true,
|
|
2778
|
+
"isVLEncoded": false,
|
|
2779
|
+
"nth": 19,
|
|
2780
|
+
"type": "UInt8"
|
|
2781
|
+
}
|
|
2782
|
+
],
|
|
2783
|
+
[
|
|
2784
|
+
"WithdrawalPolicy",
|
|
2785
|
+
{
|
|
2786
|
+
"isSerialized": true,
|
|
2787
|
+
"isSigningField": true,
|
|
2788
|
+
"isVLEncoded": false,
|
|
2789
|
+
"nth": 20,
|
|
2790
|
+
"type": "UInt8"
|
|
2791
|
+
}
|
|
2792
|
+
],
|
|
2793
|
+
[
|
|
2794
|
+
"ContractResult",
|
|
2795
|
+
{
|
|
2796
|
+
"isSerialized": true,
|
|
2797
|
+
"isSigningField": true,
|
|
2798
|
+
"isVLEncoded": false,
|
|
2799
|
+
"nth": 21,
|
|
2800
|
+
"type": "UInt8"
|
|
2801
|
+
}
|
|
2802
|
+
],
|
|
2803
|
+
[
|
|
2804
|
+
"TakerPaysCurrency",
|
|
2805
|
+
{
|
|
2806
|
+
"isSerialized": true,
|
|
2807
|
+
"isSigningField": true,
|
|
2808
|
+
"isVLEncoded": false,
|
|
2809
|
+
"nth": 1,
|
|
2810
|
+
"type": "Hash160"
|
|
2811
|
+
}
|
|
2812
|
+
],
|
|
2813
|
+
[
|
|
2814
|
+
"TakerPaysIssuer",
|
|
2815
|
+
{
|
|
2816
|
+
"isSerialized": true,
|
|
2817
|
+
"isSigningField": true,
|
|
2818
|
+
"isVLEncoded": false,
|
|
2819
|
+
"nth": 2,
|
|
2820
|
+
"type": "Hash160"
|
|
2821
|
+
}
|
|
2822
|
+
],
|
|
2823
|
+
[
|
|
2824
|
+
"TakerGetsCurrency",
|
|
2825
|
+
{
|
|
2826
|
+
"isSerialized": true,
|
|
2827
|
+
"isSigningField": true,
|
|
2828
|
+
"isVLEncoded": false,
|
|
2829
|
+
"nth": 3,
|
|
2830
|
+
"type": "Hash160"
|
|
2831
|
+
}
|
|
2832
|
+
],
|
|
2833
|
+
[
|
|
2834
|
+
"TakerGetsIssuer",
|
|
2835
|
+
{
|
|
2836
|
+
"isSerialized": true,
|
|
2837
|
+
"isSigningField": true,
|
|
2838
|
+
"isVLEncoded": false,
|
|
2839
|
+
"nth": 4,
|
|
2840
|
+
"type": "Hash160"
|
|
2841
|
+
}
|
|
2842
|
+
],
|
|
2843
|
+
[
|
|
2844
|
+
"Paths",
|
|
2845
|
+
{
|
|
2846
|
+
"isSerialized": true,
|
|
2847
|
+
"isSigningField": true,
|
|
2848
|
+
"isVLEncoded": false,
|
|
2849
|
+
"nth": 1,
|
|
2850
|
+
"type": "PathSet"
|
|
2851
|
+
}
|
|
2852
|
+
],
|
|
2853
|
+
[
|
|
2854
|
+
"Indexes",
|
|
2855
|
+
{
|
|
2856
|
+
"isSerialized": true,
|
|
2857
|
+
"isSigningField": true,
|
|
2858
|
+
"isVLEncoded": true,
|
|
2859
|
+
"nth": 1,
|
|
2860
|
+
"type": "Vector256"
|
|
2861
|
+
}
|
|
2862
|
+
],
|
|
2863
|
+
[
|
|
2864
|
+
"Hashes",
|
|
2865
|
+
{
|
|
2866
|
+
"isSerialized": true,
|
|
2867
|
+
"isSigningField": true,
|
|
2868
|
+
"isVLEncoded": true,
|
|
2869
|
+
"nth": 2,
|
|
2870
|
+
"type": "Vector256"
|
|
2871
|
+
}
|
|
2872
|
+
],
|
|
2873
|
+
[
|
|
2874
|
+
"Amendments",
|
|
2875
|
+
{
|
|
2876
|
+
"isSerialized": true,
|
|
2877
|
+
"isSigningField": true,
|
|
2878
|
+
"isVLEncoded": true,
|
|
2879
|
+
"nth": 3,
|
|
2880
|
+
"type": "Vector256"
|
|
2881
|
+
}
|
|
2882
|
+
],
|
|
2883
|
+
[
|
|
2884
|
+
"NFTokenOffers",
|
|
2885
|
+
{
|
|
2886
|
+
"isSerialized": true,
|
|
2887
|
+
"isSigningField": true,
|
|
2888
|
+
"isVLEncoded": true,
|
|
2889
|
+
"nth": 4,
|
|
2890
|
+
"type": "Vector256"
|
|
2891
|
+
}
|
|
2892
|
+
],
|
|
2893
|
+
[
|
|
2894
|
+
"CredentialIDs",
|
|
2895
|
+
{
|
|
2896
|
+
"isSerialized": true,
|
|
2897
|
+
"isSigningField": true,
|
|
2898
|
+
"isVLEncoded": true,
|
|
2899
|
+
"nth": 5,
|
|
2900
|
+
"type": "Vector256"
|
|
2901
|
+
}
|
|
2902
|
+
],
|
|
2903
|
+
[
|
|
2904
|
+
"MPTokenIssuanceID",
|
|
2905
|
+
{
|
|
2906
|
+
"isSerialized": true,
|
|
2907
|
+
"isSigningField": true,
|
|
2908
|
+
"isVLEncoded": false,
|
|
2909
|
+
"nth": 1,
|
|
2910
|
+
"type": "Hash192"
|
|
2911
|
+
}
|
|
2912
|
+
],
|
|
2913
|
+
[
|
|
2914
|
+
"ShareMPTID",
|
|
2915
|
+
{
|
|
2916
|
+
"isSerialized": true,
|
|
2917
|
+
"isSigningField": true,
|
|
2918
|
+
"isVLEncoded": false,
|
|
2919
|
+
"nth": 2,
|
|
2920
|
+
"type": "Hash192"
|
|
2921
|
+
}
|
|
2922
|
+
],
|
|
2923
|
+
[
|
|
2924
|
+
"LockingChainIssue",
|
|
2925
|
+
{
|
|
2926
|
+
"isSerialized": true,
|
|
2927
|
+
"isSigningField": true,
|
|
2928
|
+
"isVLEncoded": false,
|
|
2929
|
+
"nth": 1,
|
|
2930
|
+
"type": "Issue"
|
|
2931
|
+
}
|
|
2932
|
+
],
|
|
2933
|
+
[
|
|
2934
|
+
"IssuingChainIssue",
|
|
2935
|
+
{
|
|
2936
|
+
"isSerialized": true,
|
|
2937
|
+
"isSigningField": true,
|
|
2938
|
+
"isVLEncoded": false,
|
|
2939
|
+
"nth": 2,
|
|
2940
|
+
"type": "Issue"
|
|
2941
|
+
}
|
|
2942
|
+
],
|
|
2943
|
+
[
|
|
2944
|
+
"Asset",
|
|
2945
|
+
{
|
|
2946
|
+
"isSerialized": true,
|
|
2947
|
+
"isSigningField": true,
|
|
2948
|
+
"isVLEncoded": false,
|
|
2949
|
+
"nth": 3,
|
|
2950
|
+
"type": "Issue"
|
|
2951
|
+
}
|
|
2952
|
+
],
|
|
2953
|
+
[
|
|
2954
|
+
"Asset2",
|
|
2955
|
+
{
|
|
2956
|
+
"isSerialized": true,
|
|
2957
|
+
"isSigningField": true,
|
|
2958
|
+
"isVLEncoded": false,
|
|
2959
|
+
"nth": 4,
|
|
2960
|
+
"type": "Issue"
|
|
2961
|
+
}
|
|
2962
|
+
],
|
|
2963
|
+
[
|
|
2964
|
+
"XChainBridge",
|
|
2965
|
+
{
|
|
2966
|
+
"isSerialized": true,
|
|
2967
|
+
"isSigningField": true,
|
|
2968
|
+
"isVLEncoded": false,
|
|
2969
|
+
"nth": 1,
|
|
2970
|
+
"type": "XChainBridge"
|
|
2971
|
+
}
|
|
2972
|
+
],
|
|
2973
|
+
[
|
|
2974
|
+
"BaseAsset",
|
|
2975
|
+
{
|
|
2976
|
+
"isSerialized": true,
|
|
2977
|
+
"isSigningField": true,
|
|
2978
|
+
"isVLEncoded": false,
|
|
2979
|
+
"nth": 1,
|
|
2980
|
+
"type": "Currency"
|
|
2981
|
+
}
|
|
2982
|
+
],
|
|
2983
|
+
[
|
|
2984
|
+
"QuoteAsset",
|
|
2985
|
+
{
|
|
2986
|
+
"isSerialized": true,
|
|
2987
|
+
"isSigningField": true,
|
|
2988
|
+
"isVLEncoded": false,
|
|
2989
|
+
"nth": 2,
|
|
2990
|
+
"type": "Currency"
|
|
2991
|
+
}
|
|
2992
|
+
],
|
|
2993
|
+
[
|
|
2994
|
+
"ParameterValue",
|
|
2995
|
+
{
|
|
2996
|
+
"isSerialized": true,
|
|
2997
|
+
"isSigningField": true,
|
|
2998
|
+
"isVLEncoded": false,
|
|
2999
|
+
"nth": 1,
|
|
3000
|
+
"type": "Data"
|
|
3001
|
+
}
|
|
3002
|
+
],
|
|
3003
|
+
[
|
|
3004
|
+
"ParameterType",
|
|
3005
|
+
{
|
|
3006
|
+
"isSerialized": true,
|
|
3007
|
+
"isSigningField": true,
|
|
3008
|
+
"isVLEncoded": false,
|
|
3009
|
+
"nth": 1,
|
|
3010
|
+
"type": "DataType"
|
|
3011
|
+
}
|
|
3012
|
+
],
|
|
3013
|
+
[
|
|
3014
|
+
"ContractJson",
|
|
3015
|
+
{
|
|
3016
|
+
"isSerialized": true,
|
|
3017
|
+
"isSigningField": true,
|
|
3018
|
+
"isVLEncoded": false,
|
|
3019
|
+
"nth": 1,
|
|
3020
|
+
"type": "Json"
|
|
3021
|
+
}
|
|
3022
|
+
],
|
|
3023
|
+
[
|
|
3024
|
+
"Transaction",
|
|
3025
|
+
{
|
|
3026
|
+
"isSerialized": false,
|
|
3027
|
+
"isSigningField": false,
|
|
3028
|
+
"isVLEncoded": false,
|
|
3029
|
+
"nth": 257,
|
|
3030
|
+
"type": "Transaction"
|
|
3031
|
+
}
|
|
3032
|
+
],
|
|
3033
|
+
[
|
|
3034
|
+
"LedgerEntry",
|
|
3035
|
+
{
|
|
3036
|
+
"isSerialized": false,
|
|
3037
|
+
"isSigningField": false,
|
|
3038
|
+
"isVLEncoded": false,
|
|
3039
|
+
"nth": 257,
|
|
3040
|
+
"type": "LedgerEntry"
|
|
3041
|
+
}
|
|
3042
|
+
],
|
|
3043
|
+
[
|
|
3044
|
+
"Validation",
|
|
3045
|
+
{
|
|
3046
|
+
"isSerialized": false,
|
|
3047
|
+
"isSigningField": false,
|
|
3048
|
+
"isVLEncoded": false,
|
|
3049
|
+
"nth": 257,
|
|
3050
|
+
"type": "Validation"
|
|
3051
|
+
}
|
|
3052
|
+
],
|
|
3053
|
+
[
|
|
3054
|
+
"Metadata",
|
|
3055
|
+
{
|
|
3056
|
+
"isSerialized": false,
|
|
3057
|
+
"isSigningField": false,
|
|
3058
|
+
"isVLEncoded": false,
|
|
3059
|
+
"nth": 257,
|
|
3060
|
+
"type": "Metadata"
|
|
3061
|
+
}
|
|
3062
|
+
]
|
|
3063
|
+
],
|
|
3064
|
+
"LEDGER_ENTRY_TYPES": {
|
|
3065
|
+
"AMM": 121,
|
|
3066
|
+
"AccountRoot": 97,
|
|
3067
|
+
"Amendments": 102,
|
|
3068
|
+
"Bridge": 105,
|
|
3069
|
+
"Check": 67,
|
|
3070
|
+
"Contract": 134,
|
|
3071
|
+
"ContractData": 135,
|
|
3072
|
+
"ContractSource": 133,
|
|
3073
|
+
"Credential": 129,
|
|
3074
|
+
"DID": 73,
|
|
3075
|
+
"Delegate": 131,
|
|
3076
|
+
"DepositPreauth": 112,
|
|
3077
|
+
"DirectoryNode": 100,
|
|
3078
|
+
"Escrow": 117,
|
|
3079
|
+
"FeeSettings": 115,
|
|
3080
|
+
"Invalid": -1,
|
|
3081
|
+
"LedgerHashes": 104,
|
|
3082
|
+
"MPToken": 127,
|
|
3083
|
+
"MPTokenIssuance": 126,
|
|
3084
|
+
"NFTokenOffer": 55,
|
|
3085
|
+
"NFTokenPage": 80,
|
|
3086
|
+
"NegativeUNL": 78,
|
|
3087
|
+
"Offer": 111,
|
|
3088
|
+
"Oracle": 128,
|
|
3089
|
+
"PayChannel": 120,
|
|
3090
|
+
"PermissionedDomain": 130,
|
|
3091
|
+
"RippleState": 114,
|
|
3092
|
+
"SignerList": 83,
|
|
3093
|
+
"Ticket": 84,
|
|
3094
|
+
"Vault": 132,
|
|
3095
|
+
"XChainOwnedClaimID": 113,
|
|
3096
|
+
"XChainOwnedCreateAccountClaimID": 116
|
|
3097
|
+
},
|
|
3098
|
+
"TRANSACTION_RESULTS": {
|
|
3099
|
+
"tecAMM_ACCOUNT": 168,
|
|
3100
|
+
"tecAMM_BALANCE": 163,
|
|
3101
|
+
"tecAMM_EMPTY": 166,
|
|
3102
|
+
"tecAMM_FAILED": 164,
|
|
3103
|
+
"tecAMM_INVALID_TOKENS": 165,
|
|
3104
|
+
"tecAMM_NOT_EMPTY": 167,
|
|
3105
|
+
"tecARRAY_EMPTY": 190,
|
|
3106
|
+
"tecARRAY_TOO_LARGE": 191,
|
|
3107
|
+
"tecBAD_CREDENTIALS": 193,
|
|
3108
|
+
"tecCANT_ACCEPT_OWN_NFTOKEN_OFFER": 158,
|
|
3109
|
+
"tecCLAIM": 100,
|
|
3110
|
+
"tecCRYPTOCONDITION_ERROR": 146,
|
|
3111
|
+
"tecDIR_FULL": 121,
|
|
3112
|
+
"tecDST_TAG_NEEDED": 143,
|
|
3113
|
+
"tecDUPLICATE": 149,
|
|
3114
|
+
"tecEMPTY_DID": 187,
|
|
3115
|
+
"tecEXPIRED": 148,
|
|
3116
|
+
"tecFAILED_PROCESSING": 105,
|
|
3117
|
+
"tecFROZEN": 137,
|
|
3118
|
+
"tecHAS_OBLIGATIONS": 151,
|
|
3119
|
+
"tecHOOK_REJECTED": 153,
|
|
3120
|
+
"tecINCOMPLETE": 169,
|
|
3121
|
+
"tecINSUFFICIENT_FUNDS": 159,
|
|
3122
|
+
"tecINSUFFICIENT_PAYMENT": 161,
|
|
3123
|
+
"tecINSUFFICIENT_RESERVE": 141,
|
|
3124
|
+
"tecINSUFF_FEE": 136,
|
|
3125
|
+
"tecINSUF_RESERVE_LINE": 122,
|
|
3126
|
+
"tecINSUF_RESERVE_OFFER": 123,
|
|
3127
|
+
"tecINTERNAL": 144,
|
|
3128
|
+
"tecINVALID_PARAMETERS": 200,
|
|
3129
|
+
"tecINVALID_UPDATE_TIME": 188,
|
|
3130
|
+
"tecINVARIANT_FAILED": 147,
|
|
3131
|
+
"tecKILLED": 150,
|
|
3132
|
+
"tecLIMIT_EXCEEDED": 195,
|
|
3133
|
+
"tecLOCKED": 192,
|
|
3134
|
+
"tecMAX_SEQUENCE_REACHED": 154,
|
|
3135
|
+
"tecNEED_MASTER_KEY": 142,
|
|
3136
|
+
"tecNFTOKEN_BUY_SELL_MISMATCH": 156,
|
|
3137
|
+
"tecNFTOKEN_OFFER_TYPE_MISMATCH": 157,
|
|
3138
|
+
"tecNO_ALTERNATIVE_KEY": 130,
|
|
3139
|
+
"tecNO_AUTH": 134,
|
|
3140
|
+
"tecNO_DELEGATE_PERMISSION": 198,
|
|
3141
|
+
"tecNO_DST": 124,
|
|
3142
|
+
"tecNO_DST_INSUF_XRP": 125,
|
|
3143
|
+
"tecNO_ENTRY": 140,
|
|
3144
|
+
"tecNO_ISSUER": 133,
|
|
3145
|
+
"tecNO_LINE": 135,
|
|
3146
|
+
"tecNO_LINE_INSUF_RESERVE": 126,
|
|
3147
|
+
"tecNO_LINE_REDUNDANT": 127,
|
|
3148
|
+
"tecNO_PERMISSION": 139,
|
|
3149
|
+
"tecNO_REGULAR_KEY": 131,
|
|
3150
|
+
"tecNO_SUITABLE_NFTOKEN_PAGE": 155,
|
|
3151
|
+
"tecNO_TARGET": 138,
|
|
3152
|
+
"tecOBJECT_NOT_FOUND": 160,
|
|
3153
|
+
"tecOVERSIZE": 145,
|
|
3154
|
+
"tecOWNERS": 132,
|
|
3155
|
+
"tecPATH_DRY": 128,
|
|
3156
|
+
"tecPATH_PARTIAL": 101,
|
|
3157
|
+
"tecPRECISION_LOSS": 197,
|
|
3158
|
+
"tecPSEUDO_ACCOUNT": 196,
|
|
3159
|
+
"tecTOKEN_PAIR_NOT_FOUND": 189,
|
|
3160
|
+
"tecTOO_SOON": 152,
|
|
3161
|
+
"tecUNFUNDED": 129,
|
|
3162
|
+
"tecUNFUNDED_ADD": 102,
|
|
3163
|
+
"tecUNFUNDED_AMM": 162,
|
|
3164
|
+
"tecUNFUNDED_OFFER": 103,
|
|
3165
|
+
"tecUNFUNDED_PAYMENT": 104,
|
|
3166
|
+
"tecWASM_REJECTED": 199,
|
|
3167
|
+
"tecWRONG_ASSET": 194,
|
|
3168
|
+
"tecXCHAIN_ACCOUNT_CREATE_PAST": 181,
|
|
3169
|
+
"tecXCHAIN_ACCOUNT_CREATE_TOO_MANY": 182,
|
|
3170
|
+
"tecXCHAIN_BAD_CLAIM_ID": 172,
|
|
3171
|
+
"tecXCHAIN_BAD_PUBLIC_KEY_ACCOUNT_PAIR": 185,
|
|
3172
|
+
"tecXCHAIN_BAD_TRANSFER_ISSUE": 170,
|
|
3173
|
+
"tecXCHAIN_CLAIM_NO_QUORUM": 173,
|
|
3174
|
+
"tecXCHAIN_CREATE_ACCOUNT_DISABLED": 186,
|
|
3175
|
+
"tecXCHAIN_CREATE_ACCOUNT_NONXRP_ISSUE": 175,
|
|
3176
|
+
"tecXCHAIN_INSUFF_CREATE_AMOUNT": 180,
|
|
3177
|
+
"tecXCHAIN_NO_CLAIM_ID": 171,
|
|
3178
|
+
"tecXCHAIN_NO_SIGNERS_LIST": 178,
|
|
3179
|
+
"tecXCHAIN_PAYMENT_FAILED": 183,
|
|
3180
|
+
"tecXCHAIN_PROOF_UNKNOWN_KEY": 174,
|
|
3181
|
+
"tecXCHAIN_REWARD_MISMATCH": 177,
|
|
3182
|
+
"tecXCHAIN_SELF_COMMIT": 184,
|
|
3183
|
+
"tecXCHAIN_SENDING_ACCOUNT_MISMATCH": 179,
|
|
3184
|
+
"tecXCHAIN_WRONG_CHAIN": 176,
|
|
2610
3185
|
"tefALREADY": -198,
|
|
2611
3186
|
"tefBAD_ADD_AUTH": -197,
|
|
2612
3187
|
"tefBAD_AUTH": -196,
|
|
3188
|
+
"tefBAD_AUTH_MASTER": -183,
|
|
2613
3189
|
"tefBAD_LEDGER": -195,
|
|
3190
|
+
"tefBAD_QUORUM": -185,
|
|
3191
|
+
"tefBAD_SIGNATURE": -186,
|
|
2614
3192
|
"tefCREATED": -194,
|
|
2615
3193
|
"tefEXCEPTION": -193,
|
|
3194
|
+
"tefFAILURE": -199,
|
|
2616
3195
|
"tefINTERNAL": -192,
|
|
2617
|
-
"
|
|
2618
|
-
"
|
|
2619
|
-
"tefWRONG_PRIOR": -189,
|
|
3196
|
+
"tefINVALID_LEDGER_FIX_TYPE": -178,
|
|
3197
|
+
"tefINVARIANT_FAILED": -182,
|
|
2620
3198
|
"tefMASTER_DISABLED": -188,
|
|
2621
3199
|
"tefMAX_LEDGER": -187,
|
|
2622
|
-
"
|
|
2623
|
-
"tefBAD_QUORUM": -185,
|
|
3200
|
+
"tefNFTOKEN_IS_NOT_TRANSFERABLE": -179,
|
|
2624
3201
|
"tefNOT_MULTI_SIGNING": -184,
|
|
2625
|
-
"
|
|
2626
|
-
"tefINVARIANT_FAILED": -182,
|
|
2627
|
-
"tefTOO_BIG": -181,
|
|
3202
|
+
"tefNO_AUTH_REQUIRED": -191,
|
|
2628
3203
|
"tefNO_TICKET": -180,
|
|
2629
|
-
"
|
|
2630
|
-
"
|
|
2631
|
-
"
|
|
2632
|
-
"
|
|
2633
|
-
"
|
|
3204
|
+
"tefNO_WASM": -177,
|
|
3205
|
+
"tefPAST_SEQ": -190,
|
|
3206
|
+
"tefTOO_BIG": -181,
|
|
3207
|
+
"tefWASM_FIELD_NOT_INCLUDED": -176,
|
|
3208
|
+
"tefWRONG_PRIOR": -189,
|
|
3209
|
+
"telBAD_DOMAIN": -398,
|
|
3210
|
+
"telBAD_PATH_COUNT": -397,
|
|
3211
|
+
"telBAD_PUBLIC_KEY": -396,
|
|
3212
|
+
"telCAN_NOT_QUEUE": -392,
|
|
3213
|
+
"telCAN_NOT_QUEUE_BALANCE": -391,
|
|
3214
|
+
"telCAN_NOT_QUEUE_BLOCKED": -389,
|
|
3215
|
+
"telCAN_NOT_QUEUE_BLOCKS": -390,
|
|
3216
|
+
"telCAN_NOT_QUEUE_FEE": -388,
|
|
3217
|
+
"telCAN_NOT_QUEUE_FULL": -387,
|
|
3218
|
+
"telENV_RPC_FAILED": -383,
|
|
3219
|
+
"telFAILED_PROCESSING": -395,
|
|
3220
|
+
"telINSUF_FEE_P": -394,
|
|
3221
|
+
"telLOCAL_ERROR": -399,
|
|
3222
|
+
"telNETWORK_ID_MAKES_TX_NON_CANONICAL": -384,
|
|
3223
|
+
"telNO_DST_PARTIAL": -393,
|
|
3224
|
+
"telREQUIRES_NETWORK_ID": -385,
|
|
3225
|
+
"telWRONG_NETWORK": -386,
|
|
3226
|
+
"temARRAY_EMPTY": -253,
|
|
3227
|
+
"temARRAY_TOO_LARGE": -252,
|
|
3228
|
+
"temBAD_AMM_TOKENS": -261,
|
|
3229
|
+
"temBAD_AMOUNT": -298,
|
|
3230
|
+
"temBAD_CURRENCY": -297,
|
|
3231
|
+
"temBAD_EXPIRATION": -296,
|
|
3232
|
+
"temBAD_FEE": -295,
|
|
3233
|
+
"temBAD_ISSUER": -294,
|
|
3234
|
+
"temBAD_LIMIT": -293,
|
|
3235
|
+
"temBAD_NFTOKEN_TRANSFER_FEE": -262,
|
|
3236
|
+
"temBAD_OFFER": -292,
|
|
3237
|
+
"temBAD_PATH": -291,
|
|
3238
|
+
"temBAD_PATH_LOOP": -290,
|
|
3239
|
+
"temBAD_QUORUM": -271,
|
|
3240
|
+
"temBAD_REGKEY": -289,
|
|
3241
|
+
"temBAD_SEND_XRP_LIMIT": -288,
|
|
3242
|
+
"temBAD_SEND_XRP_MAX": -287,
|
|
3243
|
+
"temBAD_SEND_XRP_NO_DIRECT": -286,
|
|
3244
|
+
"temBAD_SEND_XRP_PARTIAL": -285,
|
|
3245
|
+
"temBAD_SEND_XRP_PATHS": -284,
|
|
3246
|
+
"temBAD_SEQUENCE": -283,
|
|
3247
|
+
"temBAD_SIGNATURE": -282,
|
|
3248
|
+
"temBAD_SIGNER": -272,
|
|
3249
|
+
"temBAD_SRC_ACCOUNT": -281,
|
|
3250
|
+
"temBAD_TICK_SIZE": -269,
|
|
3251
|
+
"temBAD_TRANSFER_FEE": -251,
|
|
3252
|
+
"temBAD_TRANSFER_RATE": -280,
|
|
3253
|
+
"temBAD_WASM": -249,
|
|
3254
|
+
"temBAD_WEIGHT": -270,
|
|
3255
|
+
"temCANNOT_PREAUTH_SELF": -267,
|
|
3256
|
+
"temDISABLED": -273,
|
|
3257
|
+
"temDST_IS_SRC": -279,
|
|
3258
|
+
"temDST_NEEDED": -278,
|
|
3259
|
+
"temEMPTY_DID": -254,
|
|
3260
|
+
"temINVALID": -277,
|
|
3261
|
+
"temINVALID_ACCOUNT_ID": -268,
|
|
3262
|
+
"temINVALID_COUNT": -266,
|
|
3263
|
+
"temINVALID_FLAG": -276,
|
|
3264
|
+
"temINVALID_INNER_BATCH": -250,
|
|
3265
|
+
"temMALFORMED": -299,
|
|
3266
|
+
"temREDUNDANT": -275,
|
|
3267
|
+
"temRIPPLE_EMPTY": -274,
|
|
3268
|
+
"temSEQ_AND_TICKET": -263,
|
|
3269
|
+
"temUNCERTAIN": -265,
|
|
3270
|
+
"temUNKNOWN": -264,
|
|
3271
|
+
"temXCHAIN_BAD_PROOF": -259,
|
|
3272
|
+
"temXCHAIN_BRIDGE_BAD_ISSUES": -258,
|
|
3273
|
+
"temXCHAIN_BRIDGE_BAD_MIN_ACCOUNT_CREATE_AMOUNT": -256,
|
|
3274
|
+
"temXCHAIN_BRIDGE_BAD_REWARD_AMOUNT": -255,
|
|
3275
|
+
"temXCHAIN_BRIDGE_NONDOOR_OWNER": -257,
|
|
3276
|
+
"temXCHAIN_EQUAL_DOOR_ACCOUNTS": -260,
|
|
3277
|
+
"terADDRESS_COLLISION": -86,
|
|
2634
3278
|
"terFUNDS_SPENT": -98,
|
|
2635
3279
|
"terINSUF_FEE_B": -97,
|
|
3280
|
+
"terLAST": -91,
|
|
2636
3281
|
"terNO_ACCOUNT": -96,
|
|
3282
|
+
"terNO_AMM": -87,
|
|
2637
3283
|
"terNO_AUTH": -95,
|
|
2638
3284
|
"terNO_LINE": -94,
|
|
3285
|
+
"terNO_RIPPLE": -90,
|
|
2639
3286
|
"terOWNERS": -93,
|
|
2640
3287
|
"terPRE_SEQ": -92,
|
|
2641
|
-
"terLAST": -91,
|
|
2642
|
-
"terNO_RIPPLE": -90,
|
|
2643
|
-
"terQUEUED": -89,
|
|
2644
3288
|
"terPRE_TICKET": -88,
|
|
2645
|
-
"
|
|
2646
|
-
"
|
|
2647
|
-
"tesSUCCESS": 0
|
|
2648
|
-
"tecCLAIM": 100,
|
|
2649
|
-
"tecPATH_PARTIAL": 101,
|
|
2650
|
-
"tecUNFUNDED_ADD": 102,
|
|
2651
|
-
"tecUNFUNDED_OFFER": 103,
|
|
2652
|
-
"tecUNFUNDED_PAYMENT": 104,
|
|
2653
|
-
"tecFAILED_PROCESSING": 105,
|
|
2654
|
-
"tecDIR_FULL": 121,
|
|
2655
|
-
"tecINSUF_RESERVE_LINE": 122,
|
|
2656
|
-
"tecINSUF_RESERVE_OFFER": 123,
|
|
2657
|
-
"tecNO_DST": 124,
|
|
2658
|
-
"tecNO_DST_INSUF_NATIVE": 125,
|
|
2659
|
-
"tecNO_LINE_INSUF_RESERVE": 126,
|
|
2660
|
-
"tecNO_LINE_REDUNDANT": 127,
|
|
2661
|
-
"tecPATH_DRY": 128,
|
|
2662
|
-
"tecUNFUNDED": 129,
|
|
2663
|
-
"tecNO_ALTERNATIVE_KEY": 130,
|
|
2664
|
-
"tecNO_REGULAR_KEY": 131,
|
|
2665
|
-
"tecOWNERS": 132,
|
|
2666
|
-
"tecNO_ISSUER": 133,
|
|
2667
|
-
"tecNO_AUTH": 134,
|
|
2668
|
-
"tecNO_LINE": 135,
|
|
2669
|
-
"tecINSUFF_FEE": 136,
|
|
2670
|
-
"tecFROZEN": 137,
|
|
2671
|
-
"tecNO_TARGET": 138,
|
|
2672
|
-
"tecNO_PERMISSION": 139,
|
|
2673
|
-
"tecNO_ENTRY": 140,
|
|
2674
|
-
"tecINSUFFICIENT_RESERVE": 141,
|
|
2675
|
-
"tecNEED_MASTER_KEY": 142,
|
|
2676
|
-
"tecDST_TAG_NEEDED": 143,
|
|
2677
|
-
"tecINTERNAL": 144,
|
|
2678
|
-
"tecOVERSIZE": 145,
|
|
2679
|
-
"tecCRYPTOCONDITION_ERROR": 146,
|
|
2680
|
-
"tecINVARIANT_FAILED": 147,
|
|
2681
|
-
"tecEXPIRED": 148,
|
|
2682
|
-
"tecDUPLICATE": 149,
|
|
2683
|
-
"tecKILLED": 150,
|
|
2684
|
-
"tecHAS_OBLIGATIONS": 151,
|
|
2685
|
-
"tecTOO_SOON": 152,
|
|
2686
|
-
"tecHOOK_REJECTED": 153,
|
|
2687
|
-
"tecMAX_SEQUENCE_REACHED": 154,
|
|
2688
|
-
"tecNO_SUITABLE_NFTOKEN_PAGE": 155,
|
|
2689
|
-
"tecNFTOKEN_BUY_SELL_MISMATCH": 156,
|
|
2690
|
-
"tecNFTOKEN_OFFER_TYPE_MISMATCH": 157,
|
|
2691
|
-
"tecCANT_ACCEPT_OWN_NFTOKEN_OFFER": 158,
|
|
2692
|
-
"tecINSUFFICIENT_FUNDS": 159,
|
|
2693
|
-
"tecOBJECT_NOT_FOUND": 160,
|
|
2694
|
-
"tecINSUFFICIENT_PAYMENT": 161,
|
|
2695
|
-
"tecAMM_UNFUNDED": 162,
|
|
2696
|
-
"tecAMM_BALANCE": 163,
|
|
2697
|
-
"tecAMM_FAILED_DEPOSIT": 164,
|
|
2698
|
-
"tecAMM_FAILED_WITHDRAW": 165,
|
|
2699
|
-
"tecAMM_INVALID_TOKENS": 166,
|
|
2700
|
-
"tecAMM_FAILED_BID": 167,
|
|
2701
|
-
"tecAMM_FAILED_VOTE": 168,
|
|
2702
|
-
"tecREQUIRES_FLAG": 169,
|
|
2703
|
-
"tecPRECISION_LOSS": 170,
|
|
2704
|
-
"tecBAD_XCHAIN_TRANSFER_ISSUE": 171,
|
|
2705
|
-
"tecXCHAIN_NO_CLAIM_ID": 172,
|
|
2706
|
-
"tecXCHAIN_BAD_CLAIM_ID": 173,
|
|
2707
|
-
"tecXCHAIN_CLAIM_NO_QUORUM": 174,
|
|
2708
|
-
"tecXCHAIN_PROOF_UNKNOWN_KEY": 175,
|
|
2709
|
-
"tecXCHAIN_CREATE_ACCOUNT_NONXRP_ISSUE": 176,
|
|
2710
|
-
"tecXCHAIN_WRONG_CHAIN": 177,
|
|
2711
|
-
"tecXCHAIN_REWARD_MISMATCH": 178,
|
|
2712
|
-
"tecXCHAIN_NO_SIGNERS_LIST": 179,
|
|
2713
|
-
"tecXCHAIN_SENDING_ACCOUNT_MISMATCH": 180,
|
|
2714
|
-
"tecXCHAIN_INSUFF_CREATE_AMOUNT": 181,
|
|
2715
|
-
"tecXCHAIN_ACCOUNT_CREATE_PAST": 182,
|
|
2716
|
-
"tecXCHAIN_ACCOUNT_CREATE_TOO_MANY": 183,
|
|
2717
|
-
"tecXCHAIN_PAYMENT_FAILED": 184,
|
|
2718
|
-
"tecXCHAIN_SELF_COMMIT": 185,
|
|
2719
|
-
"tecXCHAIN_BAD_PUBLIC_KEY_ACCOUNT_PAIR": 186,
|
|
2720
|
-
"tecINSUF_RESERVE_SELLER": 187,
|
|
2721
|
-
"tecLAST_POSSIBLE_ENTRY": 255
|
|
3289
|
+
"terQUEUED": -89,
|
|
3290
|
+
"terRETRY": -99,
|
|
3291
|
+
"tesSUCCESS": 0
|
|
2722
3292
|
},
|
|
2723
3293
|
"TRANSACTION_TYPES": {
|
|
2724
|
-
"
|
|
2725
|
-
"
|
|
2726
|
-
"
|
|
2727
|
-
"
|
|
3294
|
+
"AMMBid": 39,
|
|
3295
|
+
"AMMClawback": 31,
|
|
3296
|
+
"AMMCreate": 35,
|
|
3297
|
+
"AMMDelete": 40,
|
|
3298
|
+
"AMMDeposit": 36,
|
|
3299
|
+
"AMMVote": 38,
|
|
3300
|
+
"AMMWithdraw": 37,
|
|
3301
|
+
"AccountDelete": 21,
|
|
2728
3302
|
"AccountSet": 3,
|
|
2729
|
-
"
|
|
2730
|
-
"SetRegularKey": 5,
|
|
2731
|
-
"NickNameSet": 6,
|
|
2732
|
-
"OfferCreate": 7,
|
|
2733
|
-
"OfferCancel": 8,
|
|
2734
|
-
"Contract": 9,
|
|
2735
|
-
"TicketCreate": 10,
|
|
2736
|
-
"TicketCancel": 11,
|
|
2737
|
-
"SignerListSet": 12,
|
|
2738
|
-
"PaymentChannelCreate": 13,
|
|
2739
|
-
"PaymentChannelFund": 14,
|
|
2740
|
-
"PaymentChannelClaim": 15,
|
|
2741
|
-
"CheckCreate": 16,
|
|
2742
|
-
"CheckCash": 17,
|
|
3303
|
+
"Batch": 71,
|
|
2743
3304
|
"CheckCancel": 18,
|
|
3305
|
+
"CheckCash": 17,
|
|
3306
|
+
"CheckCreate": 16,
|
|
3307
|
+
"Clawback": 30,
|
|
3308
|
+
"ContractCall": 77,
|
|
3309
|
+
"ContractClawback": 75,
|
|
3310
|
+
"ContractCreate": 72,
|
|
3311
|
+
"ContractDelete": 74,
|
|
3312
|
+
"ContractModify": 73,
|
|
3313
|
+
"ContractUserDelete": 76,
|
|
3314
|
+
"CredentialAccept": 59,
|
|
3315
|
+
"CredentialCreate": 58,
|
|
3316
|
+
"CredentialDelete": 60,
|
|
3317
|
+
"DIDDelete": 50,
|
|
3318
|
+
"DIDSet": 49,
|
|
3319
|
+
"DelegateSet": 64,
|
|
2744
3320
|
"DepositPreauth": 19,
|
|
2745
|
-
"
|
|
2746
|
-
"
|
|
2747
|
-
"
|
|
2748
|
-
"
|
|
3321
|
+
"EnableAmendment": 100,
|
|
3322
|
+
"EscrowCancel": 4,
|
|
3323
|
+
"EscrowCreate": 1,
|
|
3324
|
+
"EscrowFinish": 2,
|
|
3325
|
+
"Invalid": -1,
|
|
3326
|
+
"LedgerStateFix": 53,
|
|
3327
|
+
"MPTokenAuthorize": 57,
|
|
3328
|
+
"MPTokenIssuanceCreate": 54,
|
|
3329
|
+
"MPTokenIssuanceDestroy": 55,
|
|
3330
|
+
"MPTokenIssuanceSet": 56,
|
|
3331
|
+
"NFTokenAcceptOffer": 29,
|
|
2749
3332
|
"NFTokenBurn": 26,
|
|
2750
|
-
"NFTokenCreateOffer": 27,
|
|
2751
3333
|
"NFTokenCancelOffer": 28,
|
|
2752
|
-
"
|
|
2753
|
-
"
|
|
2754
|
-
"
|
|
2755
|
-
"
|
|
2756
|
-
"
|
|
2757
|
-
"
|
|
2758
|
-
"
|
|
2759
|
-
"
|
|
2760
|
-
"
|
|
2761
|
-
"
|
|
2762
|
-
"
|
|
2763
|
-
"
|
|
3334
|
+
"NFTokenCreateOffer": 27,
|
|
3335
|
+
"NFTokenMint": 25,
|
|
3336
|
+
"NFTokenModify": 61,
|
|
3337
|
+
"OfferCancel": 8,
|
|
3338
|
+
"OfferCreate": 7,
|
|
3339
|
+
"OracleDelete": 52,
|
|
3340
|
+
"OracleSet": 51,
|
|
3341
|
+
"Payment": 0,
|
|
3342
|
+
"PaymentChannelClaim": 15,
|
|
3343
|
+
"PaymentChannelCreate": 13,
|
|
3344
|
+
"PaymentChannelFund": 14,
|
|
3345
|
+
"PermissionedDomainDelete": 63,
|
|
3346
|
+
"PermissionedDomainSet": 62,
|
|
2764
3347
|
"SetFee": 101,
|
|
3348
|
+
"SetRegularKey": 5,
|
|
3349
|
+
"SignerListSet": 12,
|
|
3350
|
+
"TicketCreate": 10,
|
|
3351
|
+
"TrustSet": 20,
|
|
2765
3352
|
"UNLModify": 102,
|
|
2766
|
-
"
|
|
2767
|
-
"
|
|
3353
|
+
"VaultClawback": 70,
|
|
3354
|
+
"VaultCreate": 65,
|
|
3355
|
+
"VaultDelete": 67,
|
|
3356
|
+
"VaultDeposit": 68,
|
|
3357
|
+
"VaultSet": 66,
|
|
3358
|
+
"VaultWithdraw": 69,
|
|
3359
|
+
"XChainAccountCreateCommit": 44,
|
|
3360
|
+
"XChainAddClaimAttestation": 45,
|
|
3361
|
+
"XChainAddAccountCreateAttestation": 46,
|
|
3362
|
+
"XChainClaim": 43,
|
|
3363
|
+
"XChainCommit": 42,
|
|
3364
|
+
"XChainCreateBridge": 48,
|
|
3365
|
+
"XChainCreateClaimID": 41,
|
|
3366
|
+
"XChainModifyBridge": 47
|
|
3367
|
+
},
|
|
3368
|
+
"TYPES": {
|
|
3369
|
+
"AccountID": 8,
|
|
3370
|
+
"Amount": 6,
|
|
3371
|
+
"Blob": 7,
|
|
3372
|
+
"Currency": 26,
|
|
3373
|
+
"Data": 27,
|
|
3374
|
+
"DataType": 28,
|
|
3375
|
+
"Done": -1,
|
|
3376
|
+
"Hash128": 4,
|
|
3377
|
+
"Hash160": 17,
|
|
3378
|
+
"Hash192": 21,
|
|
3379
|
+
"Hash256": 5,
|
|
3380
|
+
"Int32": 10,
|
|
3381
|
+
"Int64": 11,
|
|
3382
|
+
"Issue": 24,
|
|
3383
|
+
"Json": 29,
|
|
3384
|
+
"LedgerEntry": 10002,
|
|
3385
|
+
"Metadata": 10004,
|
|
3386
|
+
"NotPresent": 0,
|
|
3387
|
+
"Number": 9,
|
|
3388
|
+
"PathSet": 18,
|
|
3389
|
+
"STArray": 15,
|
|
3390
|
+
"STObject": 14,
|
|
3391
|
+
"Transaction": 10001,
|
|
3392
|
+
"UInt16": 1,
|
|
3393
|
+
"UInt32": 2,
|
|
3394
|
+
"UInt384": 22,
|
|
3395
|
+
"UInt512": 23,
|
|
3396
|
+
"UInt64": 3,
|
|
3397
|
+
"UInt8": 16,
|
|
3398
|
+
"UInt96": 20,
|
|
3399
|
+
"Unknown": -2,
|
|
3400
|
+
"Validation": 10003,
|
|
3401
|
+
"Vector256": 19,
|
|
3402
|
+
"XChainBridge": 25
|
|
2768
3403
|
}
|
|
2769
3404
|
}
|