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

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