ripple-binary-codec 1.0.0-rc3 → 1.0.1-mpt-beta

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