ripple-binary-codec 0.2.7 → 1.0.0-mpt-beta

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