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

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