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