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

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