@transia/ripple-binary-codec 1.4.6-alpha.8 → 2.5.1-quantum.0

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