ripple-binary-codec 1.0.2 → 1.0.3-mpt-beta

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