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
@@ -0,0 +1,3073 @@
1
+ {
2
+ "TYPES": {
3
+ "Done": -1,
4
+ "Unknown": -2,
5
+ "NotPresent": 0,
6
+ "UInt16": 1,
7
+ "UInt32": 2,
8
+ "UInt64": 3,
9
+ "Hash128": 4,
10
+ "Hash256": 5,
11
+ "Amount": 6,
12
+ "Blob": 7,
13
+ "AccountID": 8,
14
+ "STObject": 14,
15
+ "STArray": 15,
16
+ "UInt8": 16,
17
+ "Hash160": 17,
18
+ "PathSet": 18,
19
+ "Vector256": 19,
20
+ "UInt96": 20,
21
+ "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
+
2845
+ "temMALFORMED": -299,
2846
+ "temBAD_AMOUNT": -298,
2847
+ "temBAD_CURRENCY": -297,
2848
+ "temBAD_EXPIRATION": -296,
2849
+ "temBAD_FEE": -295,
2850
+ "temBAD_ISSUER": -294,
2851
+ "temBAD_LIMIT": -293,
2852
+ "temBAD_OFFER": -292,
2853
+ "temBAD_PATH": -291,
2854
+ "temBAD_PATH_LOOP": -290,
2855
+ "temBAD_REGKEY": -289,
2856
+ "temBAD_SEND_XRP_LIMIT": -288,
2857
+ "temBAD_SEND_XRP_MAX": -287,
2858
+ "temBAD_SEND_XRP_NO_DIRECT": -286,
2859
+ "temBAD_SEND_XRP_PARTIAL": -285,
2860
+ "temBAD_SEND_XRP_PATHS": -284,
2861
+ "temBAD_SEQUENCE": -283,
2862
+ "temBAD_SIGNATURE": -282,
2863
+ "temBAD_SRC_ACCOUNT": -281,
2864
+ "temBAD_TRANSFER_RATE": -280,
2865
+ "temDST_IS_SRC": -279,
2866
+ "temDST_NEEDED": -278,
2867
+ "temINVALID": -277,
2868
+ "temINVALID_FLAG": -276,
2869
+ "temREDUNDANT": -275,
2870
+ "temRIPPLE_EMPTY": -274,
2871
+ "temDISABLED": -273,
2872
+ "temBAD_SIGNER": -272,
2873
+ "temBAD_QUORUM": -271,
2874
+ "temBAD_WEIGHT": -270,
2875
+ "temBAD_TICK_SIZE": -269,
2876
+ "temINVALID_ACCOUNT_ID": -268,
2877
+ "temCANNOT_PREAUTH_SELF": -267,
2878
+ "temINVALID_COUNT": -266,
2879
+ "temUNCERTAIN": -265,
2880
+ "temUNKNOWN": -264,
2881
+ "temSEQ_AND_TICKET": -263,
2882
+ "temBAD_NFTOKEN_TRANSFER_FEE": -262,
2883
+ "temBAD_MPTOKEN_TRANSFER_FEE": -261,
2884
+ "temBAD_AMM_TOKENS": -260,
2885
+ "temXCHAIN_EQUAL_DOOR_ACCOUNTS": -259,
2886
+ "temXCHAIN_BAD_PROOF": -258,
2887
+ "temXCHAIN_BRIDGE_BAD_ISSUES": -257,
2888
+ "temXCHAIN_BRIDGE_NONDOOR_OWNER": -256,
2889
+ "temXCHAIN_BRIDGE_BAD_MIN_ACCOUNT_CREATE_AMOUNT": -255,
2890
+ "temXCHAIN_BRIDGE_BAD_REWARD_AMOUNT": -254,
2891
+ "temEMPTY_DID": -253,
2892
+ "temARRAY_EMPTY": -252,
2893
+ "temARRAY_TOO_LARGE": -251,
2894
+ "temMPT_NOT_SUPPORTED": -250,
2895
+
2896
+ "tefFAILURE": -199,
2897
+ "tefALREADY": -198,
2898
+ "tefBAD_ADD_AUTH": -197,
2899
+ "tefBAD_AUTH": -196,
2900
+ "tefBAD_LEDGER": -195,
2901
+ "tefCREATED": -194,
2902
+ "tefEXCEPTION": -193,
2903
+ "tefINTERNAL": -192,
2904
+ "tefNO_AUTH_REQUIRED": -191,
2905
+ "tefPAST_SEQ": -190,
2906
+ "tefWRONG_PRIOR": -189,
2907
+ "tefMASTER_DISABLED": -188,
2908
+ "tefMAX_LEDGER": -187,
2909
+ "tefBAD_SIGNATURE": -186,
2910
+ "tefBAD_QUORUM": -185,
2911
+ "tefNOT_MULTI_SIGNING": -184,
2912
+ "tefBAD_AUTH_MASTER": -183,
2913
+ "tefINVARIANT_FAILED": -182,
2914
+ "tefTOO_BIG": -181,
2915
+ "tefNO_TICKET": -180,
2916
+ "tefNFTOKEN_IS_NOT_TRANSFERABLE": -179,
2917
+
2918
+ "terRETRY": -99,
2919
+ "terFUNDS_SPENT": -98,
2920
+ "terINSUF_FEE_B": -97,
2921
+ "terNO_ACCOUNT": -96,
2922
+ "terNO_AUTH": -95,
2923
+ "terNO_LINE": -94,
2924
+ "terOWNERS": -93,
2925
+ "terPRE_SEQ": -92,
2926
+ "terLAST": -91,
2927
+ "terNO_RIPPLE": -90,
2928
+ "terQUEUED": -89,
2929
+ "terPRE_TICKET": -88,
2930
+ "terNO_AMM": -87,
2931
+
2932
+ "tesSUCCESS": 0,
2933
+
2934
+ "tecCLAIM": 100,
2935
+ "tecPATH_PARTIAL": 101,
2936
+ "tecUNFUNDED_ADD": 102,
2937
+ "tecUNFUNDED_OFFER": 103,
2938
+ "tecUNFUNDED_PAYMENT": 104,
2939
+ "tecFAILED_PROCESSING": 105,
2940
+ "tecDIR_FULL": 121,
2941
+ "tecINSUF_RESERVE_LINE": 122,
2942
+ "tecINSUF_RESERVE_OFFER": 123,
2943
+ "tecNO_DST": 124,
2944
+ "tecNO_DST_INSUF_XRP": 125,
2945
+ "tecNO_LINE_INSUF_RESERVE": 126,
2946
+ "tecNO_LINE_REDUNDANT": 127,
2947
+ "tecPATH_DRY": 128,
2948
+ "tecUNFUNDED": 129,
2949
+ "tecNO_ALTERNATIVE_KEY": 130,
2950
+ "tecNO_REGULAR_KEY": 131,
2951
+ "tecOWNERS": 132,
2952
+ "tecNO_ISSUER": 133,
2953
+ "tecNO_AUTH": 134,
2954
+ "tecNO_LINE": 135,
2955
+ "tecINSUFF_FEE": 136,
2956
+ "tecFROZEN": 137,
2957
+ "tecNO_TARGET": 138,
2958
+ "tecNO_PERMISSION": 139,
2959
+ "tecNO_ENTRY": 140,
2960
+ "tecINSUFFICIENT_RESERVE": 141,
2961
+ "tecNEED_MASTER_KEY": 142,
2962
+ "tecDST_TAG_NEEDED": 143,
2963
+ "tecINTERNAL": 144,
2964
+ "tecOVERSIZE": 145,
2965
+ "tecCRYPTOCONDITION_ERROR": 146,
2966
+ "tecINVARIANT_FAILED": 147,
2967
+ "tecEXPIRED": 148,
2968
+ "tecDUPLICATE": 149,
2969
+ "tecKILLED": 150,
2970
+ "tecHAS_OBLIGATIONS": 151,
2971
+ "tecTOO_SOON": 152,
2972
+ "tecHOOK_REJECTED": 153,
2973
+ "tecMAX_SEQUENCE_REACHED": 154,
2974
+ "tecNO_SUITABLE_NFTOKEN_PAGE": 155,
2975
+ "tecNFTOKEN_BUY_SELL_MISMATCH": 156,
2976
+ "tecNFTOKEN_OFFER_TYPE_MISMATCH": 157,
2977
+ "tecCANT_ACCEPT_OWN_NFTOKEN_OFFER": 158,
2978
+ "tecINSUFFICIENT_FUNDS": 159,
2979
+ "tecOBJECT_NOT_FOUND": 160,
2980
+ "tecINSUFFICIENT_PAYMENT": 161,
2981
+ "tecUNFUNDED_AMM": 162,
2982
+ "tecAMM_BALANCE": 163,
2983
+ "tecAMM_FAILED": 164,
2984
+ "tecAMM_INVALID_TOKENS": 165,
2985
+ "tecAMM_EMPTY": 166,
2986
+ "tecAMM_NOT_EMPTY": 167,
2987
+ "tecAMM_ACCOUNT": 168,
2988
+ "tecINCOMPLETE": 169,
2989
+ "tecXCHAIN_BAD_TRANSFER_ISSUE": 170,
2990
+ "tecXCHAIN_NO_CLAIM_ID": 171,
2991
+ "tecXCHAIN_BAD_CLAIM_ID": 172,
2992
+ "tecXCHAIN_CLAIM_NO_QUORUM": 173,
2993
+ "tecXCHAIN_PROOF_UNKNOWN_KEY": 174,
2994
+ "tecXCHAIN_CREATE_ACCOUNT_NONXRP_ISSUE": 175,
2995
+ "tecXCHAIN_WRONG_CHAIN": 176,
2996
+ "tecXCHAIN_REWARD_MISMATCH": 177,
2997
+ "tecXCHAIN_NO_SIGNERS_LIST": 178,
2998
+ "tecXCHAIN_SENDING_ACCOUNT_MISMATCH": 179,
2999
+ "tecXCHAIN_INSUFF_CREATE_AMOUNT": 180,
3000
+ "tecXCHAIN_ACCOUNT_CREATE_PAST": 181,
3001
+ "tecXCHAIN_ACCOUNT_CREATE_TOO_MANY": 182,
3002
+ "tecXCHAIN_PAYMENT_FAILED": 183,
3003
+ "tecXCHAIN_SELF_COMMIT": 184,
3004
+ "tecXCHAIN_BAD_PUBLIC_KEY_ACCOUNT_PAIR": 185,
3005
+ "tecXCHAIN_CREATE_ACCOUNT_DISABLED": 186,
3006
+ "tecEMPTY_DID": 187,
3007
+ "tecINVALID_UPDATE_TIME": 188,
3008
+ "tecTOKEN_PAIR_NOT_FOUND": 189,
3009
+ "tecARRAY_EMPTY": 190,
3010
+ "tecARRAY_TOO_LARGE": 191,
3011
+ "tecMPTOKEN_EXISTS": 192,
3012
+ "tecMPT_MAX_AMOUNT_EXCEEDED": 193,
3013
+ "tecMPT_LOCKED": 194,
3014
+ "tecMPT_NOT_SUPPORTED": 195
3015
+ },
3016
+ "TRANSACTION_TYPES": {
3017
+ "Invalid": -1,
3018
+ "Payment": 0,
3019
+ "EscrowCreate": 1,
3020
+ "EscrowFinish": 2,
3021
+ "AccountSet": 3,
3022
+ "EscrowCancel": 4,
3023
+ "SetRegularKey": 5,
3024
+ "NickNameSet": 6,
3025
+ "OfferCreate": 7,
3026
+ "OfferCancel": 8,
3027
+ "Contract": 9,
3028
+ "TicketCreate": 10,
3029
+ "TicketCancel": 11,
3030
+ "SignerListSet": 12,
3031
+ "PaymentChannelCreate": 13,
3032
+ "PaymentChannelFund": 14,
3033
+ "PaymentChannelClaim": 15,
3034
+ "CheckCreate": 16,
3035
+ "CheckCash": 17,
3036
+ "CheckCancel": 18,
3037
+ "DepositPreauth": 19,
3038
+ "TrustSet": 20,
3039
+ "AccountDelete": 21,
3040
+ "SetHook": 22,
3041
+ "NFTokenMint": 25,
3042
+ "NFTokenBurn": 26,
3043
+ "NFTokenCreateOffer": 27,
3044
+ "NFTokenCancelOffer": 28,
3045
+ "NFTokenAcceptOffer": 29,
3046
+ "Clawback": 30,
3047
+ "AMMCreate": 35,
3048
+ "AMMDeposit": 36,
3049
+ "AMMWithdraw": 37,
3050
+ "AMMVote": 38,
3051
+ "AMMBid": 39,
3052
+ "AMMDelete": 40,
3053
+ "XChainCreateClaimID": 41,
3054
+ "XChainCommit": 42,
3055
+ "XChainClaim": 43,
3056
+ "XChainAccountCreateCommit": 44,
3057
+ "XChainAddClaimAttestation": 45,
3058
+ "XChainAddAccountCreateAttestation": 46,
3059
+ "XChainModifyBridge": 47,
3060
+ "XChainCreateBridge": 48,
3061
+ "DIDSet": 49,
3062
+ "DIDDelete": 50,
3063
+ "OracleSet": 51,
3064
+ "OracleDelete": 52,
3065
+ "MPTokenIssuanceCreate": 53,
3066
+ "MPTokenIssuanceDestroy": 54,
3067
+ "MPTokenAuthorize": 55,
3068
+ "MPTokenIssuanceSet": 56,
3069
+ "EnableAmendment": 100,
3070
+ "SetFee": 101,
3071
+ "UNLModify": 102
3072
+ }
3073
+ }