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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (364) hide show
  1. package/README.md +104 -2
  2. package/dist/binary.d.ts +90 -0
  3. package/dist/binary.js +128 -0
  4. package/dist/binary.js.map +1 -0
  5. package/dist/coretypes.d.ts +9 -0
  6. package/dist/coretypes.js +48 -0
  7. package/dist/coretypes.js.map +1 -0
  8. package/dist/enums/bytes.d.ts +25 -0
  9. package/dist/enums/bytes.js +63 -0
  10. package/dist/enums/bytes.js.map +1 -0
  11. package/dist/enums/constants.d.ts +4 -0
  12. package/dist/enums/constants.js +8 -0
  13. package/dist/enums/constants.js.map +1 -0
  14. package/dist/enums/definitions.json +2956 -0
  15. package/dist/enums/field.d.ts +28 -0
  16. package/dist/enums/field.js +58 -0
  17. package/dist/enums/field.js.map +1 -0
  18. package/dist/enums/index.d.ts +12 -0
  19. package/dist/enums/index.js +31 -0
  20. package/dist/enums/index.js.map +1 -0
  21. package/{distrib/npm → dist/enums/src}/enums/definitions.json +1709 -438
  22. package/dist/enums/utils-renumber.d.ts +101 -0
  23. package/dist/enums/utils-renumber.js +127 -0
  24. package/dist/enums/utils-renumber.js.map +1 -0
  25. package/dist/enums/xrpl-definitions-base.d.ts +44 -0
  26. package/dist/enums/xrpl-definitions-base.js +59 -0
  27. package/dist/enums/xrpl-definitions-base.js.map +1 -0
  28. package/dist/enums/xrpl-definitions.d.ts +21 -0
  29. package/dist/enums/xrpl-definitions.js +29 -0
  30. package/dist/enums/xrpl-definitions.js.map +1 -0
  31. package/dist/hash-prefixes.d.ts +5 -0
  32. package/dist/hash-prefixes.js +41 -0
  33. package/dist/hash-prefixes.js.map +1 -0
  34. package/dist/hashes.d.ts +50 -0
  35. package/dist/hashes.js +76 -0
  36. package/dist/hashes.js.map +1 -0
  37. package/dist/index.d.ts +64 -0
  38. package/dist/index.js +123 -0
  39. package/dist/index.js.map +1 -0
  40. package/dist/ledger-hashes.d.ts +48 -0
  41. package/dist/ledger-hashes.js +141 -0
  42. package/dist/ledger-hashes.js.map +1 -0
  43. package/dist/quality.d.ts +21 -0
  44. package/dist/quality.js +42 -0
  45. package/dist/quality.js.map +1 -0
  46. package/dist/serdes/binary-parser.d.ts +100 -0
  47. package/dist/serdes/binary-parser.js +194 -0
  48. package/dist/serdes/binary-parser.js.map +1 -0
  49. package/dist/serdes/binary-serializer.d.ts +81 -0
  50. package/dist/serdes/binary-serializer.js +149 -0
  51. package/dist/serdes/binary-serializer.js.map +1 -0
  52. package/dist/shamap.d.ts +102 -0
  53. package/dist/shamap.js +172 -0
  54. package/dist/shamap.js.map +1 -0
  55. package/dist/src/binary.d.ts +90 -0
  56. package/dist/src/binary.js +128 -0
  57. package/dist/src/binary.js.map +1 -0
  58. package/dist/src/coretypes.d.ts +9 -0
  59. package/dist/src/coretypes.js +48 -0
  60. package/dist/src/coretypes.js.map +1 -0
  61. package/dist/src/enums/bytes.d.ts +25 -0
  62. package/dist/src/enums/bytes.js +63 -0
  63. package/dist/src/enums/bytes.js.map +1 -0
  64. package/dist/src/enums/constants.d.ts +4 -0
  65. package/dist/src/enums/constants.js +8 -0
  66. package/dist/src/enums/constants.js.map +1 -0
  67. package/dist/src/enums/definitions.json +2956 -0
  68. package/dist/src/enums/field.d.ts +28 -0
  69. package/dist/src/enums/field.js +58 -0
  70. package/dist/src/enums/field.js.map +1 -0
  71. package/dist/src/enums/index.d.ts +12 -0
  72. package/dist/src/enums/index.js +31 -0
  73. package/dist/src/enums/index.js.map +1 -0
  74. package/dist/src/enums/utils-renumber.d.ts +101 -0
  75. package/dist/src/enums/utils-renumber.js +127 -0
  76. package/dist/src/enums/utils-renumber.js.map +1 -0
  77. package/dist/src/enums/xrpl-definitions-base.d.ts +44 -0
  78. package/dist/src/enums/xrpl-definitions-base.js +59 -0
  79. package/dist/src/enums/xrpl-definitions-base.js.map +1 -0
  80. package/dist/src/enums/xrpl-definitions.d.ts +21 -0
  81. package/dist/src/enums/xrpl-definitions.js +29 -0
  82. package/dist/src/enums/xrpl-definitions.js.map +1 -0
  83. package/dist/src/hash-prefixes.d.ts +5 -0
  84. package/dist/src/hash-prefixes.js +41 -0
  85. package/dist/src/hash-prefixes.js.map +1 -0
  86. package/dist/src/hashes.d.ts +50 -0
  87. package/dist/src/hashes.js +76 -0
  88. package/dist/src/hashes.js.map +1 -0
  89. package/dist/src/index.d.ts +64 -0
  90. package/dist/src/index.js +123 -0
  91. package/dist/src/index.js.map +1 -0
  92. package/dist/src/ledger-hashes.d.ts +48 -0
  93. package/dist/src/ledger-hashes.js +141 -0
  94. package/dist/src/ledger-hashes.js.map +1 -0
  95. package/dist/src/quality.d.ts +21 -0
  96. package/dist/src/quality.js +42 -0
  97. package/dist/src/quality.js.map +1 -0
  98. package/dist/src/serdes/binary-parser.d.ts +100 -0
  99. package/dist/src/serdes/binary-parser.js +194 -0
  100. package/dist/src/serdes/binary-parser.js.map +1 -0
  101. package/dist/src/serdes/binary-serializer.d.ts +81 -0
  102. package/dist/src/serdes/binary-serializer.js +149 -0
  103. package/dist/src/serdes/binary-serializer.js.map +1 -0
  104. package/dist/src/shamap.d.ts +102 -0
  105. package/dist/src/shamap.js +172 -0
  106. package/dist/src/shamap.js.map +1 -0
  107. package/dist/src/types/account-id.d.ts +35 -0
  108. package/dist/src/types/account-id.js +69 -0
  109. package/dist/src/types/account-id.js.map +1 -0
  110. package/dist/src/types/amount.d.ts +91 -0
  111. package/dist/src/types/amount.js +289 -0
  112. package/dist/src/types/amount.js.map +1 -0
  113. package/dist/src/types/blob.d.ts +24 -0
  114. package/dist/src/types/blob.js +40 -0
  115. package/dist/src/types/blob.js.map +1 -0
  116. package/dist/src/types/currency.d.ts +28 -0
  117. package/dist/src/types/currency.js +127 -0
  118. package/dist/src/types/currency.js.map +1 -0
  119. package/dist/src/types/hash-128.d.ts +16 -0
  120. package/dist/src/types/hash-128.js +32 -0
  121. package/dist/src/types/hash-128.js.map +1 -0
  122. package/dist/src/types/hash-160.d.ts +10 -0
  123. package/dist/src/types/hash-160.js +19 -0
  124. package/dist/src/types/hash-160.js.map +1 -0
  125. package/dist/src/types/hash-192.d.ts +10 -0
  126. package/dist/src/types/hash-192.js +19 -0
  127. package/dist/src/types/hash-192.js.map +1 -0
  128. package/dist/src/types/hash-256.d.ts +10 -0
  129. package/dist/src/types/hash-256.js +16 -0
  130. package/dist/src/types/hash-256.js.map +1 -0
  131. package/dist/src/types/hash.d.ts +40 -0
  132. package/dist/src/types/hash.js +73 -0
  133. package/dist/src/types/hash.js.map +1 -0
  134. package/dist/src/types/index.d.ts +19 -0
  135. package/dist/src/types/index.js +64 -0
  136. package/dist/src/types/index.js.map +1 -0
  137. package/dist/src/types/issue.d.ts +38 -0
  138. package/dist/src/types/issue.js +81 -0
  139. package/dist/src/types/issue.js.map +1 -0
  140. package/dist/src/types/path-set.d.ts +36 -0
  141. package/dist/src/types/path-set.js +233 -0
  142. package/dist/src/types/path-set.js.map +1 -0
  143. package/dist/src/types/serialized-type.d.ts +70 -0
  144. package/dist/src/types/serialized-type.js +105 -0
  145. package/dist/src/types/serialized-type.js.map +1 -0
  146. package/dist/src/types/st-array.d.ts +31 -0
  147. package/dist/src/types/st-array.js +83 -0
  148. package/dist/src/types/st-array.js.map +1 -0
  149. package/dist/src/types/st-object.d.ts +32 -0
  150. package/dist/src/types/st-object.js +155 -0
  151. package/dist/src/types/st-object.js.map +1 -0
  152. package/dist/src/types/uint-16.d.ts +24 -0
  153. package/dist/src/types/uint-16.js +45 -0
  154. package/dist/src/types/uint-16.js.map +1 -0
  155. package/dist/src/types/uint-32.d.ts +24 -0
  156. package/dist/src/types/uint-32.js +50 -0
  157. package/dist/src/types/uint-32.js.map +1 -0
  158. package/dist/src/types/uint-64.d.ts +37 -0
  159. package/dist/src/types/uint-64.js +86 -0
  160. package/dist/src/types/uint-64.js.map +1 -0
  161. package/dist/src/types/uint-8.d.ts +24 -0
  162. package/dist/src/types/uint-8.js +46 -0
  163. package/dist/src/types/uint-8.js.map +1 -0
  164. package/dist/src/types/uint.d.ts +29 -0
  165. package/dist/src/types/uint.js +47 -0
  166. package/dist/src/types/uint.js.map +1 -0
  167. package/dist/src/types/vector-256.d.ts +30 -0
  168. package/dist/src/types/vector-256.js +73 -0
  169. package/dist/src/types/vector-256.js.map +1 -0
  170. package/dist/src/types/xchain-bridge.d.ts +44 -0
  171. package/dist/src/types/xchain-bridge.js +102 -0
  172. package/dist/src/types/xchain-bridge.js.map +1 -0
  173. package/dist/src/utils.d.ts +47 -0
  174. package/dist/src/utils.js +137 -0
  175. package/dist/src/utils.js.map +1 -0
  176. package/dist/tsconfig.tsbuildinfo +1 -0
  177. package/dist/types/account-id.d.ts +35 -0
  178. package/dist/types/account-id.js +69 -0
  179. package/dist/types/account-id.js.map +1 -0
  180. package/dist/types/amount.d.ts +91 -0
  181. package/dist/types/amount.js +289 -0
  182. package/dist/types/amount.js.map +1 -0
  183. package/dist/types/blob.d.ts +24 -0
  184. package/dist/types/blob.js +40 -0
  185. package/dist/types/blob.js.map +1 -0
  186. package/dist/types/currency.d.ts +28 -0
  187. package/dist/types/currency.js +127 -0
  188. package/dist/types/currency.js.map +1 -0
  189. package/dist/types/hash-128.d.ts +16 -0
  190. package/dist/types/hash-128.js +32 -0
  191. package/dist/types/hash-128.js.map +1 -0
  192. package/dist/types/hash-160.d.ts +10 -0
  193. package/dist/types/hash-160.js +19 -0
  194. package/dist/types/hash-160.js.map +1 -0
  195. package/dist/types/hash-192.d.ts +10 -0
  196. package/dist/types/hash-192.js +19 -0
  197. package/dist/types/hash-192.js.map +1 -0
  198. package/dist/types/hash-256.d.ts +10 -0
  199. package/dist/types/hash-256.js +16 -0
  200. package/dist/types/hash-256.js.map +1 -0
  201. package/dist/types/hash.d.ts +40 -0
  202. package/dist/types/hash.js +73 -0
  203. package/dist/types/hash.js.map +1 -0
  204. package/dist/types/index.d.ts +19 -0
  205. package/dist/types/index.js +64 -0
  206. package/dist/types/index.js.map +1 -0
  207. package/dist/types/issue.d.ts +38 -0
  208. package/dist/types/issue.js +81 -0
  209. package/dist/types/issue.js.map +1 -0
  210. package/dist/types/path-set.d.ts +36 -0
  211. package/dist/types/path-set.js +233 -0
  212. package/dist/types/path-set.js.map +1 -0
  213. package/dist/types/serialized-type.d.ts +70 -0
  214. package/dist/types/serialized-type.js +105 -0
  215. package/dist/types/serialized-type.js.map +1 -0
  216. package/dist/types/st-array.d.ts +31 -0
  217. package/dist/types/st-array.js +83 -0
  218. package/dist/types/st-array.js.map +1 -0
  219. package/dist/types/st-object.d.ts +32 -0
  220. package/dist/types/st-object.js +155 -0
  221. package/dist/types/st-object.js.map +1 -0
  222. package/dist/types/uint-16.d.ts +24 -0
  223. package/dist/types/uint-16.js +45 -0
  224. package/dist/types/uint-16.js.map +1 -0
  225. package/dist/types/uint-32.d.ts +24 -0
  226. package/dist/types/uint-32.js +50 -0
  227. package/dist/types/uint-32.js.map +1 -0
  228. package/dist/types/uint-64.d.ts +37 -0
  229. package/dist/types/uint-64.js +86 -0
  230. package/dist/types/uint-64.js.map +1 -0
  231. package/dist/types/uint-8.d.ts +24 -0
  232. package/dist/types/uint-8.js +46 -0
  233. package/dist/types/uint-8.js.map +1 -0
  234. package/dist/types/uint.d.ts +29 -0
  235. package/dist/types/uint.js +47 -0
  236. package/dist/types/uint.js.map +1 -0
  237. package/dist/types/vector-256.d.ts +30 -0
  238. package/dist/types/vector-256.js +73 -0
  239. package/dist/types/vector-256.js.map +1 -0
  240. package/dist/types/xchain-bridge.d.ts +44 -0
  241. package/dist/types/xchain-bridge.js +102 -0
  242. package/dist/types/xchain-bridge.js.map +1 -0
  243. package/dist/utils.d.ts +47 -0
  244. package/dist/utils.js +137 -0
  245. package/dist/utils.js.map +1 -0
  246. package/package.json +28 -33
  247. package/src/README.md +5 -0
  248. package/src/binary.ts +194 -0
  249. package/src/coretypes.ts +31 -0
  250. package/src/enums/README.md +144 -0
  251. package/src/enums/bytes.ts +74 -0
  252. package/src/enums/constants.ts +4 -0
  253. package/src/enums/definitions.json +2961 -0
  254. package/src/enums/field.ts +84 -0
  255. package/src/enums/index.ts +34 -0
  256. package/src/enums/utils-renumber.ts +134 -0
  257. package/src/enums/xrpl-definitions-base.ts +111 -0
  258. package/src/enums/xrpl-definitions.ts +32 -0
  259. package/src/hash-prefixes.ts +40 -0
  260. package/src/hashes.ts +75 -0
  261. package/src/index.ts +153 -0
  262. package/src/ledger-hashes.ts +191 -0
  263. package/src/quality.ts +38 -0
  264. package/src/serdes/binary-parser.ts +224 -0
  265. package/src/serdes/binary-serializer.ts +166 -0
  266. package/src/shamap.ts +186 -0
  267. package/src/types/account-id.ts +86 -0
  268. package/src/types/amount.ts +362 -0
  269. package/src/types/blob.ts +43 -0
  270. package/src/types/currency.ts +140 -0
  271. package/src/types/hash-128.ts +33 -0
  272. package/src/types/hash-160.ts +19 -0
  273. package/src/types/hash-192.ts +19 -0
  274. package/src/types/hash-256.ts +15 -0
  275. package/src/types/hash.ts +83 -0
  276. package/src/types/index.ts +66 -0
  277. package/src/types/issue.ts +96 -0
  278. package/src/types/path-set.ts +290 -0
  279. package/src/types/serialized-type.ts +122 -0
  280. package/src/types/st-array.ts +107 -0
  281. package/src/types/st-object.ts +192 -0
  282. package/src/types/uint-16.ts +53 -0
  283. package/src/types/uint-32.ts +59 -0
  284. package/src/types/uint-64.ts +104 -0
  285. package/src/types/uint-8.ts +52 -0
  286. package/src/types/uint.ts +60 -0
  287. package/src/types/vector-256.ts +79 -0
  288. package/src/types/xchain-bridge.ts +128 -0
  289. package/src/utils.ts +152 -0
  290. package/HISTORY.md +0 -66
  291. package/distrib/npm/binary.js +0 -68
  292. package/distrib/npm/coretypes.js +0 -22
  293. package/distrib/npm/enums/index.js +0 -125
  294. package/distrib/npm/enums/utils-renumber.js +0 -134
  295. package/distrib/npm/hash-prefixes.js +0 -30
  296. package/distrib/npm/hashes.js +0 -42
  297. package/distrib/npm/index.js +0 -72
  298. package/distrib/npm/ledger-hashes.js +0 -71
  299. package/distrib/npm/quality.js +0 -20
  300. package/distrib/npm/serdes/binary-parser.js +0 -98
  301. package/distrib/npm/serdes/binary-serializer.js +0 -106
  302. package/distrib/npm/shamap.js +0 -107
  303. package/distrib/npm/types/account-id.js +0 -41
  304. package/distrib/npm/types/amount.js +0 -215
  305. package/distrib/npm/types/blob.js +0 -28
  306. package/distrib/npm/types/currency.js +0 -91
  307. package/distrib/npm/types/hash-128.js +0 -10
  308. package/distrib/npm/types/hash-160.js +0 -10
  309. package/distrib/npm/types/hash-256.js +0 -15
  310. package/distrib/npm/types/hash.js +0 -45
  311. package/distrib/npm/types/index.js +0 -45
  312. package/distrib/npm/types/path-set.js +0 -112
  313. package/distrib/npm/types/serialized-type.js +0 -63
  314. package/distrib/npm/types/st-array.js +0 -37
  315. package/distrib/npm/types/st-object.js +0 -65
  316. package/distrib/npm/types/uint-16.js +0 -10
  317. package/distrib/npm/types/uint-32.js +0 -10
  318. package/distrib/npm/types/uint-64.js +0 -49
  319. package/distrib/npm/types/uint-8.js +0 -10
  320. package/distrib/npm/types/uint.js +0 -60
  321. package/distrib/npm/types/vector-256.js +0 -31
  322. package/distrib/npm/utils/bytes-utils.js +0 -112
  323. package/distrib/npm/utils/make-class.js +0 -83
  324. package/test/amount-test.js +0 -43
  325. package/test/binary-json-test.js +0 -43
  326. package/test/binary-parser-test.js +0 -341
  327. package/test/binary-serializer-test.js +0 -194
  328. package/test/bytes-utils-test.js +0 -72
  329. package/test/fixtures/account-tx-transactions.db +0 -0
  330. package/test/fixtures/codec-fixtures.json +0 -4466
  331. package/test/fixtures/data-driven-tests.json +0 -3721
  332. package/test/fixtures/delivermin-tx-binary.json +0 -1
  333. package/test/fixtures/delivermin-tx.json +0 -98
  334. package/test/fixtures/deposit-preauth-tx-binary.json +0 -1
  335. package/test/fixtures/deposit-preauth-tx-meta-binary.json +0 -1
  336. package/test/fixtures/deposit-preauth-tx.json +0 -58
  337. package/test/fixtures/escrow-cancel-binary.json +0 -1
  338. package/test/fixtures/escrow-cancel-tx.json +0 -6
  339. package/test/fixtures/escrow-create-binary.json +0 -1
  340. package/test/fixtures/escrow-create-tx.json +0 -10
  341. package/test/fixtures/escrow-finish-binary.json +0 -1
  342. package/test/fixtures/escrow-finish-meta-binary.json +0 -1
  343. package/test/fixtures/escrow-finish-tx.json +0 -95
  344. package/test/fixtures/ledger-full-38129.json +0 -1
  345. package/test/fixtures/ledger-full-40000.json +0 -1
  346. package/test/fixtures/payment-channel-claim-binary.json +0 -1
  347. package/test/fixtures/payment-channel-claim-tx.json +0 -8
  348. package/test/fixtures/payment-channel-create-binary.json +0 -1
  349. package/test/fixtures/payment-channel-create-tx.json +0 -11
  350. package/test/fixtures/payment-channel-fund-binary.json +0 -1
  351. package/test/fixtures/payment-channel-fund-tx.json +0 -7
  352. package/test/fixtures/signerlistset-tx-binary.json +0 -1
  353. package/test/fixtures/signerlistset-tx-meta-binary.json +0 -1
  354. package/test/fixtures/signerlistset-tx.json +0 -94
  355. package/test/hash-test.js +0 -58
  356. package/test/ledger-test.js +0 -26
  357. package/test/mocha.opts +0 -1
  358. package/test/quality-test.js +0 -16
  359. package/test/shamap-test.js +0 -88
  360. package/test/signing-data-encoding-test.js +0 -120
  361. package/test/tx-encode-decode-test.js +0 -124
  362. package/test/types-test.js +0 -38
  363. package/test/uint-test.js +0 -38
  364. package/test/utils.js +0 -93
@@ -1,3721 +0,0 @@
1
- {
2
- "types": [
3
- {
4
- "name": "UInt16",
5
- "ordinal": 1
6
- },
7
- {
8
- "name": "UInt32",
9
- "ordinal": 2
10
- },
11
- {
12
- "name": "UInt64",
13
- "ordinal": 3
14
- },
15
- {
16
- "name": "Hash128",
17
- "ordinal": 4
18
- },
19
- {
20
- "name": "Hash256",
21
- "ordinal": 5
22
- },
23
- {
24
- "name": "Amount",
25
- "ordinal": 6
26
- },
27
- {
28
- "name": "Blob",
29
- "ordinal": 7
30
- },
31
- {
32
- "name": "AccountID",
33
- "ordinal": 8
34
- },
35
- {
36
- "name": "STObject",
37
- "ordinal": 14
38
- },
39
- {
40
- "name": "STArray",
41
- "ordinal": 15
42
- },
43
- {
44
- "name": "UInt8",
45
- "ordinal": 16
46
- },
47
- {
48
- "name": "Hash160",
49
- "ordinal": 17
50
- },
51
- {
52
- "name": "PathSet",
53
- "ordinal": 18
54
- },
55
- {
56
- "name": "Vector256",
57
- "ordinal": 19
58
- },
59
- {
60
- "name": "Transaction",
61
- "ordinal": 10001
62
- },
63
- {
64
- "name": "LedgerEntry",
65
- "ordinal": 10002
66
- },
67
- {
68
- "name": "Validation",
69
- "ordinal": 10003
70
- }
71
- ],
72
- "fields_tests": [
73
- {
74
- "type_name": "UInt16",
75
- "name": "LedgerEntryType",
76
- "nth_of_type": 1,
77
- "type": 1,
78
- "expected_hex": "11"
79
- },
80
- {
81
- "type_name": "UInt16",
82
- "name": "TransactionType",
83
- "nth_of_type": 2,
84
- "type": 1,
85
- "expected_hex": "12"
86
- },
87
- {
88
- "type_name": "UInt32",
89
- "name": "Flags",
90
- "nth_of_type": 2,
91
- "type": 2,
92
- "expected_hex": "22"
93
- },
94
- {
95
- "type_name": "UInt32",
96
- "name": "SourceTag",
97
- "nth_of_type": 3,
98
- "type": 2,
99
- "expected_hex": "23"
100
- },
101
- {
102
- "type_name": "UInt32",
103
- "name": "Sequence",
104
- "nth_of_type": 4,
105
- "type": 2,
106
- "expected_hex": "24"
107
- },
108
- {
109
- "type_name": "UInt32",
110
- "name": "PreviousTxnLgrSeq",
111
- "nth_of_type": 5,
112
- "type": 2,
113
- "expected_hex": "25"
114
- },
115
- {
116
- "type_name": "UInt32",
117
- "name": "LedgerSequence",
118
- "nth_of_type": 6,
119
- "type": 2,
120
- "expected_hex": "26"
121
- },
122
- {
123
- "type_name": "UInt32",
124
- "name": "CloseTime",
125
- "nth_of_type": 7,
126
- "type": 2,
127
- "expected_hex": "27"
128
- },
129
- {
130
- "type_name": "UInt32",
131
- "name": "ParentCloseTime",
132
- "nth_of_type": 8,
133
- "type": 2,
134
- "expected_hex": "28"
135
- },
136
- {
137
- "type_name": "UInt32",
138
- "name": "SigningTime",
139
- "nth_of_type": 9,
140
- "type": 2,
141
- "expected_hex": "29"
142
- },
143
- {
144
- "type_name": "UInt32",
145
- "name": "Expiration",
146
- "nth_of_type": 10,
147
- "type": 2,
148
- "expected_hex": "2A"
149
- },
150
- {
151
- "type_name": "UInt32",
152
- "name": "TransferRate",
153
- "nth_of_type": 11,
154
- "type": 2,
155
- "expected_hex": "2B"
156
- },
157
- {
158
- "type_name": "UInt32",
159
- "name": "WalletSize",
160
- "nth_of_type": 12,
161
- "type": 2,
162
- "expected_hex": "2C"
163
- },
164
- {
165
- "type_name": "UInt32",
166
- "name": "OwnerCount",
167
- "nth_of_type": 13,
168
- "type": 2,
169
- "expected_hex": "2D"
170
- },
171
- {
172
- "type_name": "UInt32",
173
- "name": "DestinationTag",
174
- "nth_of_type": 14,
175
- "type": 2,
176
- "expected_hex": "2E"
177
- },
178
- {
179
- "type_name": "UInt32",
180
- "name": "HighQualityIn",
181
- "nth_of_type": 16,
182
- "type": 2,
183
- "expected_hex": "2010"
184
- },
185
- {
186
- "type_name": "UInt32",
187
- "name": "HighQualityOut",
188
- "nth_of_type": 17,
189
- "type": 2,
190
- "expected_hex": "2011"
191
- },
192
- {
193
- "type_name": "UInt32",
194
- "name": "LowQualityIn",
195
- "nth_of_type": 18,
196
- "type": 2,
197
- "expected_hex": "2012"
198
- },
199
- {
200
- "type_name": "UInt32",
201
- "name": "LowQualityOut",
202
- "nth_of_type": 19,
203
- "type": 2,
204
- "expected_hex": "2013"
205
- },
206
- {
207
- "type_name": "UInt32",
208
- "name": "QualityIn",
209
- "nth_of_type": 20,
210
- "type": 2,
211
- "expected_hex": "2014"
212
- },
213
- {
214
- "type_name": "UInt32",
215
- "name": "QualityOut",
216
- "nth_of_type": 21,
217
- "type": 2,
218
- "expected_hex": "2015"
219
- },
220
- {
221
- "type_name": "UInt32",
222
- "name": "StampEscrow",
223
- "nth_of_type": 22,
224
- "type": 2,
225
- "expected_hex": "2016"
226
- },
227
- {
228
- "type_name": "UInt32",
229
- "name": "BondAmount",
230
- "nth_of_type": 23,
231
- "type": 2,
232
- "expected_hex": "2017"
233
- },
234
- {
235
- "type_name": "UInt32",
236
- "name": "LoadFee",
237
- "nth_of_type": 24,
238
- "type": 2,
239
- "expected_hex": "2018"
240
- },
241
- {
242
- "type_name": "UInt32",
243
- "name": "OfferSequence",
244
- "nth_of_type": 25,
245
- "type": 2,
246
- "expected_hex": "2019"
247
- },
248
- {
249
- "type_name": "UInt32",
250
- "name": "FirstLedgerSequence",
251
- "nth_of_type": 26,
252
- "type": 2,
253
- "expected_hex": "201A"
254
- },
255
- {
256
- "type_name": "UInt32",
257
- "name": "LastLedgerSequence",
258
- "nth_of_type": 27,
259
- "type": 2,
260
- "expected_hex": "201B"
261
- },
262
- {
263
- "type_name": "UInt32",
264
- "name": "TransactionIndex",
265
- "nth_of_type": 28,
266
- "type": 2,
267
- "expected_hex": "201C"
268
- },
269
- {
270
- "type_name": "UInt32",
271
- "name": "OperationLimit",
272
- "nth_of_type": 29,
273
- "type": 2,
274
- "expected_hex": "201D"
275
- },
276
- {
277
- "type_name": "UInt32",
278
- "name": "ReferenceFeeUnits",
279
- "nth_of_type": 30,
280
- "type": 2,
281
- "expected_hex": "201E"
282
- },
283
- {
284
- "type_name": "UInt32",
285
- "name": "ReserveBase",
286
- "nth_of_type": 31,
287
- "type": 2,
288
- "expected_hex": "201F"
289
- },
290
- {
291
- "type_name": "UInt32",
292
- "name": "ReserveIncrement",
293
- "nth_of_type": 32,
294
- "type": 2,
295
- "expected_hex": "2020"
296
- },
297
- {
298
- "type_name": "UInt32",
299
- "name": "SetFlag",
300
- "nth_of_type": 33,
301
- "type": 2,
302
- "expected_hex": "2021"
303
- },
304
- {
305
- "type_name": "UInt32",
306
- "name": "ClearFlag",
307
- "nth_of_type": 34,
308
- "type": 2,
309
- "expected_hex": "2022"
310
- },
311
- {
312
- "type_name": "UInt32",
313
- "name": "SignerQuorum",
314
- "nth_of_type": 35,
315
- "type": 2,
316
- "expected_hex": "2023"
317
- },
318
- {
319
- "type_name": "UInt32",
320
- "name": "CancelAfter",
321
- "nth_of_type": 36,
322
- "type": 2,
323
- "expected_hex": "2024"
324
- },
325
- {
326
- "type_name": "UInt32",
327
- "name": "FinishAfter",
328
- "nth_of_type": 37,
329
- "type": 2,
330
- "expected_hex": "2025"
331
- },
332
- {
333
- "type_name": "UInt64",
334
- "name": "IndexNext",
335
- "nth_of_type": 1,
336
- "type": 3,
337
- "expected_hex": "31"
338
- },
339
- {
340
- "type_name": "UInt64",
341
- "name": "IndexPrevious",
342
- "nth_of_type": 2,
343
- "type": 3,
344
- "expected_hex": "32"
345
- },
346
- {
347
- "type_name": "UInt64",
348
- "name": "BookNode",
349
- "nth_of_type": 3,
350
- "type": 3,
351
- "expected_hex": "33"
352
- },
353
- {
354
- "type_name": "UInt64",
355
- "name": "OwnerNode",
356
- "nth_of_type": 4,
357
- "type": 3,
358
- "expected_hex": "34"
359
- },
360
- {
361
- "type_name": "UInt64",
362
- "name": "BaseFee",
363
- "nth_of_type": 5,
364
- "type": 3,
365
- "expected_hex": "35"
366
- },
367
- {
368
- "type_name": "UInt64",
369
- "name": "ExchangeRate",
370
- "nth_of_type": 6,
371
- "type": 3,
372
- "expected_hex": "36"
373
- },
374
- {
375
- "type_name": "UInt64",
376
- "name": "LowNode",
377
- "nth_of_type": 7,
378
- "type": 3,
379
- "expected_hex": "37"
380
- },
381
- {
382
- "type_name": "UInt64",
383
- "name": "HighNode",
384
- "nth_of_type": 8,
385
- "type": 3,
386
- "expected_hex": "38"
387
- },
388
- {
389
- "type_name": "Hash128",
390
- "name": "EmailHash",
391
- "nth_of_type": 1,
392
- "type": 4,
393
- "expected_hex": "41"
394
- },
395
- {
396
- "type_name": "Hash256",
397
- "name": "LedgerHash",
398
- "nth_of_type": 1,
399
- "type": 5,
400
- "expected_hex": "51"
401
- },
402
- {
403
- "type_name": "Hash256",
404
- "name": "ParentHash",
405
- "nth_of_type": 2,
406
- "type": 5,
407
- "expected_hex": "52"
408
- },
409
- {
410
- "type_name": "Hash256",
411
- "name": "TransactionHash",
412
- "nth_of_type": 3,
413
- "type": 5,
414
- "expected_hex": "53"
415
- },
416
- {
417
- "type_name": "Hash256",
418
- "name": "AccountHash",
419
- "nth_of_type": 4,
420
- "type": 5,
421
- "expected_hex": "54"
422
- },
423
- {
424
- "type_name": "Hash256",
425
- "name": "PreviousTxnID",
426
- "nth_of_type": 5,
427
- "type": 5,
428
- "expected_hex": "55"
429
- },
430
- {
431
- "type_name": "Hash256",
432
- "name": "LedgerIndex",
433
- "nth_of_type": 6,
434
- "type": 5,
435
- "expected_hex": "56"
436
- },
437
- {
438
- "type_name": "Hash256",
439
- "name": "WalletLocator",
440
- "nth_of_type": 7,
441
- "type": 5,
442
- "expected_hex": "57"
443
- },
444
- {
445
- "type_name": "Hash256",
446
- "name": "RootIndex",
447
- "nth_of_type": 8,
448
- "type": 5,
449
- "expected_hex": "58"
450
- },
451
- {
452
- "type_name": "Hash256",
453
- "name": "AccountTxnID",
454
- "nth_of_type": 9,
455
- "type": 5,
456
- "expected_hex": "59"
457
- },
458
- {
459
- "type_name": "Hash256",
460
- "name": "BookDirectory",
461
- "nth_of_type": 16,
462
- "type": 5,
463
- "expected_hex": "5010"
464
- },
465
- {
466
- "type_name": "Hash256",
467
- "name": "InvoiceID",
468
- "nth_of_type": 17,
469
- "type": 5,
470
- "expected_hex": "5011"
471
- },
472
- {
473
- "type_name": "Hash256",
474
- "name": "Nickname",
475
- "nth_of_type": 18,
476
- "type": 5,
477
- "expected_hex": "5012"
478
- },
479
- {
480
- "type_name": "Hash256",
481
- "name": "Amendment",
482
- "nth_of_type": 19,
483
- "type": 5,
484
- "expected_hex": "5013"
485
- },
486
- {
487
- "type_name": "Hash256",
488
- "name": "TicketID",
489
- "nth_of_type": 20,
490
- "type": 5,
491
- "expected_hex": "5014"
492
- },
493
- {
494
- "type_name": "Hash256",
495
- "name": "Digest",
496
- "nth_of_type": 21,
497
- "type": 5,
498
- "expected_hex": "5015"
499
- },
500
- {
501
- "type_name": "Amount",
502
- "name": "Amount",
503
- "nth_of_type": 1,
504
- "type": 6,
505
- "expected_hex": "61"
506
- },
507
- {
508
- "type_name": "Amount",
509
- "name": "Balance",
510
- "nth_of_type": 2,
511
- "type": 6,
512
- "expected_hex": "62"
513
- },
514
- {
515
- "type_name": "Amount",
516
- "name": "LimitAmount",
517
- "nth_of_type": 3,
518
- "type": 6,
519
- "expected_hex": "63"
520
- },
521
- {
522
- "type_name": "Amount",
523
- "name": "TakerPays",
524
- "nth_of_type": 4,
525
- "type": 6,
526
- "expected_hex": "64"
527
- },
528
- {
529
- "type_name": "Amount",
530
- "name": "TakerGets",
531
- "nth_of_type": 5,
532
- "type": 6,
533
- "expected_hex": "65"
534
- },
535
- {
536
- "type_name": "Amount",
537
- "name": "LowLimit",
538
- "nth_of_type": 6,
539
- "type": 6,
540
- "expected_hex": "66"
541
- },
542
- {
543
- "type_name": "Amount",
544
- "name": "HighLimit",
545
- "nth_of_type": 7,
546
- "type": 6,
547
- "expected_hex": "67"
548
- },
549
- {
550
- "type_name": "Amount",
551
- "name": "Fee",
552
- "nth_of_type": 8,
553
- "type": 6,
554
- "expected_hex": "68"
555
- },
556
- {
557
- "type_name": "Amount",
558
- "name": "SendMax",
559
- "nth_of_type": 9,
560
- "type": 6,
561
- "expected_hex": "69"
562
- },
563
- {
564
- "type_name": "Amount",
565
- "name": "MinimumOffer",
566
- "nth_of_type": 16,
567
- "type": 6,
568
- "expected_hex": "6010"
569
- },
570
- {
571
- "type_name": "Amount",
572
- "name": "RippleEscrow",
573
- "nth_of_type": 17,
574
- "type": 6,
575
- "expected_hex": "6011"
576
- },
577
- {
578
- "type_name": "Amount",
579
- "name": "DeliveredAmount",
580
- "nth_of_type": 18,
581
- "type": 6,
582
- "expected_hex": "6012"
583
- },
584
- {
585
- "type_name": "Blob",
586
- "name": "PublicKey",
587
- "nth_of_type": 1,
588
- "type": 7,
589
- "expected_hex": "71"
590
- },
591
- {
592
- "type_name": "Blob",
593
- "name": "MessageKey",
594
- "nth_of_type": 2,
595
- "type": 7,
596
- "expected_hex": "72"
597
- },
598
- {
599
- "type_name": "Blob",
600
- "name": "SigningPubKey",
601
- "nth_of_type": 3,
602
- "type": 7,
603
- "expected_hex": "73"
604
- },
605
- {
606
- "type_name": "Blob",
607
- "name": "TxnSignature",
608
- "nth_of_type": 4,
609
- "type": 7,
610
- "expected_hex": "74"
611
- },
612
- {
613
- "type_name": "Blob",
614
- "name": "Generator",
615
- "nth_of_type": 5,
616
- "type": 7,
617
- "expected_hex": "75"
618
- },
619
- {
620
- "type_name": "Blob",
621
- "name": "Signature",
622
- "nth_of_type": 6,
623
- "type": 7,
624
- "expected_hex": "76"
625
- },
626
- {
627
- "type_name": "Blob",
628
- "name": "Domain",
629
- "nth_of_type": 7,
630
- "type": 7,
631
- "expected_hex": "77"
632
- },
633
- {
634
- "type_name": "Blob",
635
- "name": "FundCode",
636
- "nth_of_type": 8,
637
- "type": 7,
638
- "expected_hex": "78"
639
- },
640
- {
641
- "type_name": "Blob",
642
- "name": "RemoveCode",
643
- "nth_of_type": 9,
644
- "type": 7,
645
- "expected_hex": "79"
646
- },
647
- {
648
- "type_name": "Blob",
649
- "name": "ExpireCode",
650
- "nth_of_type": 10,
651
- "type": 7,
652
- "expected_hex": "7A"
653
- },
654
- {
655
- "type_name": "Blob",
656
- "name": "CreateCode",
657
- "nth_of_type": 11,
658
- "type": 7,
659
- "expected_hex": "7B"
660
- },
661
- {
662
- "type_name": "Blob",
663
- "name": "MemoType",
664
- "nth_of_type": 12,
665
- "type": 7,
666
- "expected_hex": "7C"
667
- },
668
- {
669
- "type_name": "Blob",
670
- "name": "MemoData",
671
- "nth_of_type": 13,
672
- "type": 7,
673
- "expected_hex": "7D"
674
- },
675
- {
676
- "type_name": "Blob",
677
- "name": "MemoFormat",
678
- "nth_of_type": 14,
679
- "type": 7,
680
- "expected_hex": "7E"
681
- },
682
- {
683
- "type_name": "Blob",
684
- "name": "Fulfillment",
685
- "nth_of_type": 16,
686
- "type": 7,
687
- "expected_hex": "7010"
688
- },
689
- {
690
- "type_name": "Blob",
691
- "name": "Condition",
692
- "nth_of_type": 17,
693
- "type": 7,
694
- "expected_hex": "7011"
695
- },
696
- {
697
- "type_name": "AccountID",
698
- "name": "Account",
699
- "nth_of_type": 1,
700
- "type": 8,
701
- "expected_hex": "81"
702
- },
703
- {
704
- "type_name": "AccountID",
705
- "name": "Owner",
706
- "nth_of_type": 2,
707
- "type": 8,
708
- "expected_hex": "82"
709
- },
710
- {
711
- "type_name": "AccountID",
712
- "name": "Destination",
713
- "nth_of_type": 3,
714
- "type": 8,
715
- "expected_hex": "83"
716
- },
717
- {
718
- "type_name": "AccountID",
719
- "name": "Issuer",
720
- "nth_of_type": 4,
721
- "type": 8,
722
- "expected_hex": "84"
723
- },
724
- {
725
- "type_name": "AccountID",
726
- "name": "Target",
727
- "nth_of_type": 7,
728
- "type": 8,
729
- "expected_hex": "87"
730
- },
731
- {
732
- "type_name": "AccountID",
733
- "name": "RegularKey",
734
- "nth_of_type": 8,
735
- "type": 8,
736
- "expected_hex": "88"
737
- },
738
- {
739
- "type_name": "STObject",
740
- "name": "ObjectEndMarker",
741
- "nth_of_type": 1,
742
- "type": 14,
743
- "expected_hex": "E1"
744
- },
745
- {
746
- "type_name": "STObject",
747
- "name": "TransactionMetaData",
748
- "nth_of_type": 2,
749
- "type": 14,
750
- "expected_hex": "E2"
751
- },
752
- {
753
- "type_name": "STObject",
754
- "name": "CreatedNode",
755
- "nth_of_type": 3,
756
- "type": 14,
757
- "expected_hex": "E3"
758
- },
759
- {
760
- "type_name": "STObject",
761
- "name": "DeletedNode",
762
- "nth_of_type": 4,
763
- "type": 14,
764
- "expected_hex": "E4"
765
- },
766
- {
767
- "type_name": "STObject",
768
- "name": "ModifiedNode",
769
- "nth_of_type": 5,
770
- "type": 14,
771
- "expected_hex": "E5"
772
- },
773
- {
774
- "type_name": "STObject",
775
- "name": "PreviousFields",
776
- "nth_of_type": 6,
777
- "type": 14,
778
- "expected_hex": "E6"
779
- },
780
- {
781
- "type_name": "STObject",
782
- "name": "FinalFields",
783
- "nth_of_type": 7,
784
- "type": 14,
785
- "expected_hex": "E7"
786
- },
787
- {
788
- "type_name": "STObject",
789
- "name": "NewFields",
790
- "nth_of_type": 8,
791
- "type": 14,
792
- "expected_hex": "E8"
793
- },
794
- {
795
- "type_name": "STObject",
796
- "name": "TemplateEntry",
797
- "nth_of_type": 9,
798
- "type": 14,
799
- "expected_hex": "E9"
800
- },
801
- {
802
- "type_name": "STObject",
803
- "name": "Memo",
804
- "nth_of_type": 10,
805
- "type": 14,
806
- "expected_hex": "EA"
807
- },
808
- {
809
- "type_name": "STArray",
810
- "name": "ArrayEndMarker",
811
- "nth_of_type": 1,
812
- "type": 15,
813
- "expected_hex": "F1"
814
- },
815
- {
816
- "type_name": "STArray",
817
- "name": "Signers",
818
- "nth_of_type": 3,
819
- "type": 15,
820
- "expected_hex": "F3"
821
- },
822
- {
823
- "type_name": "STArray",
824
- "name": "SignerEntries",
825
- "nth_of_type": 4,
826
- "type": 15,
827
- "expected_hex": "F4"
828
- },
829
- {
830
- "type_name": "STArray",
831
- "name": "Template",
832
- "nth_of_type": 5,
833
- "type": 15,
834
- "expected_hex": "F5"
835
- },
836
- {
837
- "type_name": "STArray",
838
- "name": "Necessary",
839
- "nth_of_type": 6,
840
- "type": 15,
841
- "expected_hex": "F6"
842
- },
843
- {
844
- "type_name": "STArray",
845
- "name": "Sufficient",
846
- "nth_of_type": 7,
847
- "type": 15,
848
- "expected_hex": "F7"
849
- },
850
- {
851
- "type_name": "STArray",
852
- "name": "AffectedNodes",
853
- "nth_of_type": 8,
854
- "type": 15,
855
- "expected_hex": "F8"
856
- },
857
- {
858
- "type_name": "STArray",
859
- "name": "Memos",
860
- "nth_of_type": 9,
861
- "type": 15,
862
- "expected_hex": "F9"
863
- },
864
- {
865
- "type_name": "UInt8",
866
- "name": "CloseResolution",
867
- "nth_of_type": 1,
868
- "type": 16,
869
- "expected_hex": "0110"
870
- },
871
- {
872
- "type_name": "UInt8",
873
- "name": "Method",
874
- "nth_of_type": 2,
875
- "type": 16,
876
- "expected_hex": "0210"
877
- },
878
- {
879
- "type_name": "UInt8",
880
- "name": "TransactionResult",
881
- "nth_of_type": 3,
882
- "type": 16,
883
- "expected_hex": "0310"
884
- },
885
- {
886
- "type_name": "Hash160",
887
- "name": "TakerPaysCurrency",
888
- "nth_of_type": 1,
889
- "type": 17,
890
- "expected_hex": "0111"
891
- },
892
- {
893
- "type_name": "Hash160",
894
- "name": "TakerPaysIssuer",
895
- "nth_of_type": 2,
896
- "type": 17,
897
- "expected_hex": "0211"
898
- },
899
- {
900
- "type_name": "Hash160",
901
- "name": "TakerGetsCurrency",
902
- "nth_of_type": 3,
903
- "type": 17,
904
- "expected_hex": "0311"
905
- },
906
- {
907
- "type_name": "Hash160",
908
- "name": "TakerGetsIssuer",
909
- "nth_of_type": 4,
910
- "type": 17,
911
- "expected_hex": "0411"
912
- },
913
- {
914
- "type_name": "PathSet",
915
- "name": "Paths",
916
- "nth_of_type": 1,
917
- "type": 18,
918
- "expected_hex": "0112"
919
- },
920
- {
921
- "type_name": "Vector256",
922
- "name": "Indexes",
923
- "nth_of_type": 1,
924
- "type": 19,
925
- "expected_hex": "0113"
926
- },
927
- {
928
- "type_name": "Vector256",
929
- "name": "Hashes",
930
- "nth_of_type": 2,
931
- "type": 19,
932
- "expected_hex": "0213"
933
- },
934
- {
935
- "type_name": "Vector256",
936
- "name": "Amendments",
937
- "nth_of_type": 3,
938
- "type": 19,
939
- "expected_hex": "0313"
940
- },
941
- {
942
- "type_name": "UInt8",
943
- "name": "TickSize",
944
- "nth_of_type": 16,
945
- "type": 16,
946
- "expected_hex": "01010"
947
- }
948
- ],
949
- "whole_objects": [
950
- {
951
- "tx_json": {
952
- "TakerPays": "101204800",
953
- "Account": "rGFpans8aW7XZNEcNky6RHKyEdLvXPMnUn",
954
- "TransactionType": "OfferCreate",
955
- "Fee": "12",
956
- "Expiration": 1398443249,
957
- "TakerGets": {
958
- "currency": "CNY",
959
- "value": "4.2",
960
- "issuer": "rKiCet8SdvWxPXnAgYarFUXMh1zCPz432Y"
961
- },
962
- "Flags": 0,
963
- "Sequence": 6068
964
- },
965
- "fields": [
966
- [
967
- "TransactionType",
968
- {
969
- "binary": ["0007"],
970
- "json": "OfferCreate",
971
- "field_header": "12"
972
- }
973
- ],
974
- [
975
- "Flags",
976
- {
977
- "binary": ["00000000"],
978
- "json": 0,
979
- "field_header": "22"
980
- }
981
- ],
982
- [
983
- "Sequence",
984
- {
985
- "binary": ["000017B4"],
986
- "json": 6068,
987
- "field_header": "24"
988
- }
989
- ],
990
- [
991
- "Expiration",
992
- {
993
- "binary": ["535A8CF1"],
994
- "json": 1398443249,
995
- "field_header": "2A"
996
- }
997
- ],
998
- [
999
- "TakerPays",
1000
- {
1001
- "binary": ["4000000006084340"],
1002
- "json": "101204800",
1003
- "field_header": "64"
1004
- }
1005
- ],
1006
- [
1007
- "TakerGets",
1008
- {
1009
- "binary": [
1010
- "D48EEBE0B40E8000",
1011
- "000000000000000000000000434E590000000000",
1012
- "CED6E99370D5C00EF4EBF72567DA99F5661BFB3A"
1013
- ],
1014
- "json": {
1015
- "currency": "CNY",
1016
- "value": "4.2",
1017
- "issuer": "rKiCet8SdvWxPXnAgYarFUXMh1zCPz432Y"
1018
- },
1019
- "field_header": "65"
1020
- }
1021
- ],
1022
- [
1023
- "Fee",
1024
- {
1025
- "binary": ["400000000000000C"],
1026
- "json": "12",
1027
- "field_header": "68"
1028
- }
1029
- ],
1030
- [
1031
- "Account",
1032
- {
1033
- "binary": ["AD6E583D47F90F29FD8B23225E6F905602B0292E"],
1034
- "vl_length": "14",
1035
- "json": "rGFpans8aW7XZNEcNky6RHKyEdLvXPMnUn",
1036
- "field_header": "81"
1037
- }
1038
- ]
1039
- ],
1040
- "blob_with_no_signing": "120007220000000024000017B42A535A8CF164400000000608434065D48EEBE0B40E8000000000000000000000000000434E590000000000CED6E99370D5C00EF4EBF72567DA99F5661BFB3A68400000000000000C8114AD6E583D47F90F29FD8B23225E6F905602B0292E"
1041
- },
1042
- {
1043
- "tx_json": {
1044
- "TakerPays": "1311313",
1045
- "Account": "rLpW9Reyn9YqZ8mxbq8nviXSp4TnHafVJQ",
1046
- "TransactionType": "OfferCreate",
1047
- "Fee": "12",
1048
- "TakerGets": {
1049
- "currency": "CNY",
1050
- "value": "0.05114362355976031",
1051
- "issuer": "rGYYWKxT1XgNipUJouCq4cKiyAdq8xBoE9"
1052
- },
1053
- "Flags": 0,
1054
- "Sequence": 20772,
1055
- "LastLedgerSequence": 6220012
1056
- },
1057
- "fields": [
1058
- [
1059
- "TransactionType",
1060
- {
1061
- "binary": ["0007"],
1062
- "json": "OfferCreate",
1063
- "field_header": "12"
1064
- }
1065
- ],
1066
- [
1067
- "Flags",
1068
- {
1069
- "binary": ["00000000"],
1070
- "json": 0,
1071
- "field_header": "22"
1072
- }
1073
- ],
1074
- [
1075
- "Sequence",
1076
- {
1077
- "binary": ["00005124"],
1078
- "json": 20772,
1079
- "field_header": "24"
1080
- }
1081
- ],
1082
- [
1083
- "LastLedgerSequence",
1084
- {
1085
- "binary": ["005EE8EC"],
1086
- "json": 6220012,
1087
- "field_header": "201B"
1088
- }
1089
- ],
1090
- [
1091
- "TakerPays",
1092
- {
1093
- "binary": ["4000000000140251"],
1094
- "json": "1311313",
1095
- "field_header": "64"
1096
- }
1097
- ],
1098
- [
1099
- "TakerGets",
1100
- {
1101
- "binary": [
1102
- "D4122B7C477B075F",
1103
- "000000000000000000000000434E590000000000",
1104
- "AA8114C65DA8EA1BE40849F974685289CC145CCF"
1105
- ],
1106
- "json": {
1107
- "currency": "CNY",
1108
- "value": "0.05114362355976031",
1109
- "issuer": "rGYYWKxT1XgNipUJouCq4cKiyAdq8xBoE9"
1110
- },
1111
- "field_header": "65"
1112
- }
1113
- ],
1114
- [
1115
- "Fee",
1116
- {
1117
- "binary": ["400000000000000C"],
1118
- "json": "12",
1119
- "field_header": "68"
1120
- }
1121
- ],
1122
- [
1123
- "Account",
1124
- {
1125
- "binary": ["D0B32295596E50017E246FE85FC5982A1BD89CE4"],
1126
- "vl_length": "14",
1127
- "json": "rLpW9Reyn9YqZ8mxbq8nviXSp4TnHafVJQ",
1128
- "field_header": "81"
1129
- }
1130
- ]
1131
- ],
1132
- "blob_with_no_signing": "12000722000000002400005124201B005EE8EC64400000000014025165D4122B7C477B075F000000000000000000000000434E590000000000AA8114C65DA8EA1BE40849F974685289CC145CCF68400000000000000C8114D0B32295596E50017E246FE85FC5982A1BD89CE4"
1133
- },
1134
- {
1135
- "tx_json": {
1136
- "TakerPays": "223174650",
1137
- "Account": "rPk2dXr27rMw9G5Ej9ad2Tt7RJzGy8ycBp",
1138
- "TransactionType": "OfferCreate",
1139
- "Memos": [{"Memo": {
1140
- "MemoType": "584D4D2076616C7565",
1141
- "MemoData": "322E3230393635"
1142
- }}],
1143
- "Fee": "15",
1144
- "OfferSequence": 1002,
1145
- "TakerGets": {
1146
- "currency": "XMM",
1147
- "value": "100",
1148
- "issuer": "rExAPEZvbkZqYPuNcZ7XEBLENEshsWDQc8"
1149
- },
1150
- "Flags": 524288,
1151
- "Sequence": 1003,
1152
- "LastLedgerSequence": 6220135
1153
- },
1154
- "fields": [
1155
- [
1156
- "TransactionType",
1157
- {
1158
- "binary": ["0007"],
1159
- "json": "OfferCreate",
1160
- "field_header": "12"
1161
- }
1162
- ],
1163
- [
1164
- "Flags",
1165
- {
1166
- "binary": ["00080000"],
1167
- "json": 524288,
1168
- "field_header": "22"
1169
- }
1170
- ],
1171
- [
1172
- "Sequence",
1173
- {
1174
- "binary": ["000003EB"],
1175
- "json": 1003,
1176
- "field_header": "24"
1177
- }
1178
- ],
1179
- [
1180
- "OfferSequence",
1181
- {
1182
- "binary": ["000003EA"],
1183
- "json": 1002,
1184
- "field_header": "2019"
1185
- }
1186
- ],
1187
- [
1188
- "LastLedgerSequence",
1189
- {
1190
- "binary": ["005EE967"],
1191
- "json": 6220135,
1192
- "field_header": "201B"
1193
- }
1194
- ],
1195
- [
1196
- "TakerPays",
1197
- {
1198
- "binary": ["400000000D4D5FFA"],
1199
- "json": "223174650",
1200
- "field_header": "64"
1201
- }
1202
- ],
1203
- [
1204
- "TakerGets",
1205
- {
1206
- "binary": [
1207
- "D5038D7EA4C68000",
1208
- "000000000000000000000000584D4D0000000000",
1209
- "A426093A78AA86EB2B878E5C2E33FEC224A01849"
1210
- ],
1211
- "json": {
1212
- "currency": "XMM",
1213
- "value": "100",
1214
- "issuer": "rExAPEZvbkZqYPuNcZ7XEBLENEshsWDQc8"
1215
- },
1216
- "field_header": "65"
1217
- }
1218
- ],
1219
- [
1220
- "Fee",
1221
- {
1222
- "binary": ["400000000000000F"],
1223
- "json": "15",
1224
- "field_header": "68"
1225
- }
1226
- ],
1227
- [
1228
- "Account",
1229
- {
1230
- "binary": ["F990B9E746546554A7B50A5E013BCB57095C6BB8"],
1231
- "vl_length": "14",
1232
- "json": "rPk2dXr27rMw9G5Ej9ad2Tt7RJzGy8ycBp",
1233
- "field_header": "81"
1234
- }
1235
- ],
1236
- [
1237
- "Memos",
1238
- {
1239
- "binary": [
1240
- "EA",
1241
- "7C",
1242
- "09",
1243
- "584D4D2076616C7565",
1244
- "7D",
1245
- "07",
1246
- "322E3230393635",
1247
- "E1"
1248
- ],
1249
- "json": [{"Memo": {
1250
- "MemoType": "584D4D2076616C7565",
1251
- "MemoData": "322E3230393635"
1252
- }}],
1253
- "field_header": "F9"
1254
- }
1255
- ]
1256
- ],
1257
- "blob_with_no_signing": "120007220008000024000003EB2019000003EA201B005EE96764400000000D4D5FFA65D5038D7EA4C68000000000000000000000000000584D4D0000000000A426093A78AA86EB2B878E5C2E33FEC224A0184968400000000000000F8114F990B9E746546554A7B50A5E013BCB57095C6BB8F9EA7C09584D4D2076616C75657D07322E3230393635E1F1"
1258
- },
1259
- {
1260
- "tx_json": {
1261
- "TakerPays": {
1262
- "currency": "BTC",
1263
- "value": "0.01262042643559221",
1264
- "issuer": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B"
1265
- },
1266
- "Account": "rPEZyTnSyQyXBCwMVYyaafSVPL8oMtfG6a",
1267
- "TransactionType": "OfferCreate",
1268
- "Fee": "50",
1269
- "OfferSequence": 526554,
1270
- "TakerGets": "1010386370",
1271
- "Sequence": 526615
1272
- },
1273
- "fields": [
1274
- [
1275
- "TransactionType",
1276
- {
1277
- "binary": ["0007"],
1278
- "json": "OfferCreate",
1279
- "field_header": "12"
1280
- }
1281
- ],
1282
- [
1283
- "Sequence",
1284
- {
1285
- "binary": ["00080917"],
1286
- "json": 526615,
1287
- "field_header": "24"
1288
- }
1289
- ],
1290
- [
1291
- "OfferSequence",
1292
- {
1293
- "binary": ["000808DA"],
1294
- "json": 526554,
1295
- "field_header": "2019"
1296
- }
1297
- ],
1298
- [
1299
- "TakerPays",
1300
- {
1301
- "binary": [
1302
- "D4047BD23375F335",
1303
- "0000000000000000000000004254430000000000",
1304
- "0A20B3C85F482532A9578DBB3950B85CA06594D1"
1305
- ],
1306
- "json": {
1307
- "currency": "BTC",
1308
- "value": "0.01262042643559221",
1309
- "issuer": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B"
1310
- },
1311
- "field_header": "64"
1312
- }
1313
- ],
1314
- [
1315
- "TakerGets",
1316
- {
1317
- "binary": ["400000003C3945C2"],
1318
- "json": "1010386370",
1319
- "field_header": "65"
1320
- }
1321
- ],
1322
- [
1323
- "Fee",
1324
- {
1325
- "binary": ["4000000000000032"],
1326
- "json": "50",
1327
- "field_header": "68"
1328
- }
1329
- ],
1330
- [
1331
- "Account",
1332
- {
1333
- "binary": ["F4141D8B4EF33BC3EE224088CA418DFCD2847193"],
1334
- "vl_length": "14",
1335
- "json": "rPEZyTnSyQyXBCwMVYyaafSVPL8oMtfG6a",
1336
- "field_header": "81"
1337
- }
1338
- ]
1339
- ],
1340
- "blob_with_no_signing": "12000724000809172019000808DA64D4047BD23375F33500000000000000000000000042544300000000000A20B3C85F482532A9578DBB3950B85CA06594D165400000003C3945C26840000000000000328114F4141D8B4EF33BC3EE224088CA418DFCD2847193"
1341
- },
1342
- {
1343
- "tx_json": {
1344
- "Account": "rHXUjUtk5eiPFYpg27izxHeZ1t4x835Ecn",
1345
- "Destination": "r45dBj4S3VvMMYXxr9vHX4Z4Ma6ifPMCkK",
1346
- "TransactionType": "Payment",
1347
- "Amount": {
1348
- "currency": "CNY",
1349
- "value": "5000",
1350
- "issuer": "r45dBj4S3VvMMYXxr9vHX4Z4Ma6ifPMCkK"
1351
- },
1352
- "Fee": "12",
1353
- "SendMax": {
1354
- "currency": "CNY",
1355
- "value": "5050",
1356
- "issuer": "rHXUjUtk5eiPFYpg27izxHeZ1t4x835Ecn"
1357
- },
1358
- "Flags": 0,
1359
- "Sequence": 6,
1360
- "Paths": [[{
1361
- "account": "razqQKzJRdB4UxFPWf5NEpEG3WMkmwgcXA"
1362
- }]],
1363
- "DestinationTag": 736049272
1364
- },
1365
- "fields": [
1366
- [
1367
- "TransactionType",
1368
- {
1369
- "binary": ["0000"],
1370
- "json": "Payment",
1371
- "field_header": "12"
1372
- }
1373
- ],
1374
- [
1375
- "Flags",
1376
- {
1377
- "binary": ["00000000"],
1378
- "json": 0,
1379
- "field_header": "22"
1380
- }
1381
- ],
1382
- [
1383
- "Sequence",
1384
- {
1385
- "binary": ["00000006"],
1386
- "json": 6,
1387
- "field_header": "24"
1388
- }
1389
- ],
1390
- [
1391
- "DestinationTag",
1392
- {
1393
- "binary": ["2BDF3878"],
1394
- "json": 736049272,
1395
- "field_header": "2E"
1396
- }
1397
- ],
1398
- [
1399
- "Amount",
1400
- {
1401
- "binary": [
1402
- "D551C37937E08000",
1403
- "000000000000000000000000434E590000000000",
1404
- "EE39E6D05CFD6A90DAB700A1D70149ECEE29DFEC"
1405
- ],
1406
- "json": {
1407
- "currency": "CNY",
1408
- "value": "5000",
1409
- "issuer": "r45dBj4S3VvMMYXxr9vHX4Z4Ma6ifPMCkK"
1410
- },
1411
- "field_header": "61"
1412
- }
1413
- ],
1414
- [
1415
- "Fee",
1416
- {
1417
- "binary": ["400000000000000C"],
1418
- "json": "12",
1419
- "field_header": "68"
1420
- }
1421
- ],
1422
- [
1423
- "SendMax",
1424
- {
1425
- "binary": [
1426
- "D551F0F2C01DA000",
1427
- "000000000000000000000000434E590000000000",
1428
- "B53847FA45E828BF9A52E38F7FB39E363493CE8B"
1429
- ],
1430
- "json": {
1431
- "currency": "CNY",
1432
- "value": "5050",
1433
- "issuer": "rHXUjUtk5eiPFYpg27izxHeZ1t4x835Ecn"
1434
- },
1435
- "field_header": "69"
1436
- }
1437
- ],
1438
- [
1439
- "Account",
1440
- {
1441
- "binary": ["B53847FA45E828BF9A52E38F7FB39E363493CE8B"],
1442
- "vl_length": "14",
1443
- "json": "rHXUjUtk5eiPFYpg27izxHeZ1t4x835Ecn",
1444
- "field_header": "81"
1445
- }
1446
- ],
1447
- [
1448
- "Destination",
1449
- {
1450
- "binary": ["EE39E6D05CFD6A90DAB700A1D70149ECEE29DFEC"],
1451
- "vl_length": "14",
1452
- "json": "r45dBj4S3VvMMYXxr9vHX4Z4Ma6ifPMCkK",
1453
- "field_header": "83"
1454
- }
1455
- ],
1456
- [
1457
- "Paths",
1458
- {
1459
- "binary": [
1460
- "01",
1461
- "41C8BE2C0A6AA17471B9F6D0AF92AAB1C94D5A25",
1462
- "00"
1463
- ],
1464
- "json": [[{
1465
- "account": "razqQKzJRdB4UxFPWf5NEpEG3WMkmwgcXA"
1466
- }]],
1467
- "field_header": "0112"
1468
- }
1469
- ]
1470
- ],
1471
- "blob_with_no_signing": "120000220000000024000000062E2BDF387861D551C37937E08000000000000000000000000000434E590000000000EE39E6D05CFD6A90DAB700A1D70149ECEE29DFEC68400000000000000C69D551F0F2C01DA000000000000000000000000000434E590000000000B53847FA45E828BF9A52E38F7FB39E363493CE8B8114B53847FA45E828BF9A52E38F7FB39E363493CE8B8314EE39E6D05CFD6A90DAB700A1D70149ECEE29DFEC01120141C8BE2C0A6AA17471B9F6D0AF92AAB1C94D5A2500"
1472
- },
1473
- {
1474
- "tx_json": {
1475
- "Account": "rP2jdgJhtY1pwDJQEMLfCixesg4cw8HcrW",
1476
- "Destination": "rHoUTGMxWKbrTTF8tpAjysjpu8PWrbt1Wx",
1477
- "TransactionType": "Payment",
1478
- "Amount": {
1479
- "currency": "RDD",
1480
- "value": "1150.848",
1481
- "issuer": "ra9eZxMbJrUcgV8ui7aPc161FgrqWScQxV"
1482
- },
1483
- "Fee": "10",
1484
- "SendMax": {
1485
- "currency": "RDD",
1486
- "value": "1152",
1487
- "issuer": "ra9eZxMbJrUcgV8ui7aPc161FgrqWScQxV"
1488
- },
1489
- "Flags": 2147483648,
1490
- "Sequence": 21703
1491
- },
1492
- "fields": [
1493
- [
1494
- "TransactionType",
1495
- {
1496
- "binary": ["0000"],
1497
- "json": "Payment",
1498
- "field_header": "12"
1499
- }
1500
- ],
1501
- [
1502
- "Flags",
1503
- {
1504
- "binary": ["80000000"],
1505
- "json": 2147483648,
1506
- "field_header": "22"
1507
- }
1508
- ],
1509
- [
1510
- "Sequence",
1511
- {
1512
- "binary": ["000054C7"],
1513
- "json": 21703,
1514
- "field_header": "24"
1515
- }
1516
- ],
1517
- [
1518
- "Amount",
1519
- {
1520
- "binary": [
1521
- "D54416B0AE3B0000",
1522
- "0000000000000000000000005244440000000000",
1523
- "387B5123A1C93417271BA6DBBBD087E68E7445B2"
1524
- ],
1525
- "json": {
1526
- "currency": "RDD",
1527
- "value": "1150.848",
1528
- "issuer": "ra9eZxMbJrUcgV8ui7aPc161FgrqWScQxV"
1529
- },
1530
- "field_header": "61"
1531
- }
1532
- ],
1533
- [
1534
- "Fee",
1535
- {
1536
- "binary": ["400000000000000A"],
1537
- "json": "10",
1538
- "field_header": "68"
1539
- }
1540
- ],
1541
- [
1542
- "SendMax",
1543
- {
1544
- "binary": [
1545
- "D54417BCE6C80000",
1546
- "0000000000000000000000005244440000000000",
1547
- "387B5123A1C93417271BA6DBBBD087E68E7445B2"
1548
- ],
1549
- "json": {
1550
- "currency": "RDD",
1551
- "value": "1152",
1552
- "issuer": "ra9eZxMbJrUcgV8ui7aPc161FgrqWScQxV"
1553
- },
1554
- "field_header": "69"
1555
- }
1556
- ],
1557
- [
1558
- "Account",
1559
- {
1560
- "binary": ["F7B414E9D25EE050553D8A0BB27202F4249AD328"],
1561
- "vl_length": "14",
1562
- "json": "rP2jdgJhtY1pwDJQEMLfCixesg4cw8HcrW",
1563
- "field_header": "81"
1564
- }
1565
- ],
1566
- [
1567
- "Destination",
1568
- {
1569
- "binary": ["B83EB506BBE5BCF3E89C638FDB185B1DEAC96584"],
1570
- "vl_length": "14",
1571
- "json": "rHoUTGMxWKbrTTF8tpAjysjpu8PWrbt1Wx",
1572
- "field_header": "83"
1573
- }
1574
- ]
1575
- ],
1576
- "blob_with_no_signing": "120000228000000024000054C761D54416B0AE3B00000000000000000000000000005244440000000000387B5123A1C93417271BA6DBBBD087E68E7445B268400000000000000A69D54417BCE6C800000000000000000000000000005244440000000000387B5123A1C93417271BA6DBBBD087E68E7445B28114F7B414E9D25EE050553D8A0BB27202F4249AD3288314B83EB506BBE5BCF3E89C638FDB185B1DEAC96584"
1577
- },
1578
- {
1579
- "tx_json": {
1580
- "Account": "r9TeThyi5xiuUUrFjtPKZiHcDxs7K9H6Rb",
1581
- "Destination": "r4BPgS7DHebQiU31xWELvZawwSG2fSPJ7C",
1582
- "TransactionType": "Payment",
1583
- "Amount": "25000000",
1584
- "Fee": "10",
1585
- "Flags": 0,
1586
- "Sequence": 2
1587
- },
1588
- "fields": [
1589
- [
1590
- "TransactionType",
1591
- {
1592
- "binary": ["0000"],
1593
- "json": "Payment",
1594
- "field_header": "12"
1595
- }
1596
- ],
1597
- [
1598
- "Flags",
1599
- {
1600
- "binary": ["00000000"],
1601
- "json": 0,
1602
- "field_header": "22"
1603
- }
1604
- ],
1605
- [
1606
- "Sequence",
1607
- {
1608
- "binary": ["00000002"],
1609
- "json": 2,
1610
- "field_header": "24"
1611
- }
1612
- ],
1613
- [
1614
- "Amount",
1615
- {
1616
- "binary": ["40000000017D7840"],
1617
- "json": "25000000",
1618
- "field_header": "61"
1619
- }
1620
- ],
1621
- [
1622
- "Fee",
1623
- {
1624
- "binary": ["400000000000000A"],
1625
- "json": "10",
1626
- "field_header": "68"
1627
- }
1628
- ],
1629
- [
1630
- "Account",
1631
- {
1632
- "binary": ["5CCB151F6E9D603F394AE778ACF10D3BECE874F6"],
1633
- "vl_length": "14",
1634
- "json": "r9TeThyi5xiuUUrFjtPKZiHcDxs7K9H6Rb",
1635
- "field_header": "81"
1636
- }
1637
- ],
1638
- [
1639
- "Destination",
1640
- {
1641
- "binary": ["E851BBBE79E328E43D68F43445368133DF5FBA5A"],
1642
- "vl_length": "14",
1643
- "json": "r4BPgS7DHebQiU31xWELvZawwSG2fSPJ7C",
1644
- "field_header": "83"
1645
- }
1646
- ]
1647
- ],
1648
- "blob_with_no_signing": "120000220000000024000000026140000000017D784068400000000000000A81145CCB151F6E9D603F394AE778ACF10D3BECE874F68314E851BBBE79E328E43D68F43445368133DF5FBA5A"
1649
- },
1650
- {
1651
- "tx_json": {
1652
- "Account": "rGWTUVmm1fB5QUjMYn8KfnyrFNgDiD9H9e",
1653
- "Destination": "rw71Qs1UYQrSQ9hSgRohqNNQcyjCCfffkQ",
1654
- "TransactionType": "Payment",
1655
- "Amount": "200000",
1656
- "Fee": "15",
1657
- "Flags": 0,
1658
- "Sequence": 144,
1659
- "LastLedgerSequence": 6220218
1660
- },
1661
- "fields": [
1662
- [
1663
- "TransactionType",
1664
- {
1665
- "binary": ["0000"],
1666
- "json": "Payment",
1667
- "field_header": "12"
1668
- }
1669
- ],
1670
- [
1671
- "Flags",
1672
- {
1673
- "binary": ["00000000"],
1674
- "json": 0,
1675
- "field_header": "22"
1676
- }
1677
- ],
1678
- [
1679
- "Sequence",
1680
- {
1681
- "binary": ["00000090"],
1682
- "json": 144,
1683
- "field_header": "24"
1684
- }
1685
- ],
1686
- [
1687
- "LastLedgerSequence",
1688
- {
1689
- "binary": ["005EE9BA"],
1690
- "json": 6220218,
1691
- "field_header": "201B"
1692
- }
1693
- ],
1694
- [
1695
- "Amount",
1696
- {
1697
- "binary": ["4000000000030D40"],
1698
- "json": "200000",
1699
- "field_header": "61"
1700
- }
1701
- ],
1702
- [
1703
- "Fee",
1704
- {
1705
- "binary": ["400000000000000F"],
1706
- "json": "15",
1707
- "field_header": "68"
1708
- }
1709
- ],
1710
- [
1711
- "Account",
1712
- {
1713
- "binary": ["AA1BD19D9E87BE8069FDBF6843653C43837C03C6"],
1714
- "vl_length": "14",
1715
- "json": "rGWTUVmm1fB5QUjMYn8KfnyrFNgDiD9H9e",
1716
- "field_header": "81"
1717
- }
1718
- ],
1719
- [
1720
- "Destination",
1721
- {
1722
- "binary": ["67FE6EC28E0464DD24FB2D62A492AAC697CFAD02"],
1723
- "vl_length": "14",
1724
- "json": "rw71Qs1UYQrSQ9hSgRohqNNQcyjCCfffkQ",
1725
- "field_header": "83"
1726
- }
1727
- ]
1728
- ],
1729
- "blob_with_no_signing": "12000022000000002400000090201B005EE9BA614000000000030D4068400000000000000F8114AA1BD19D9E87BE8069FDBF6843653C43837C03C6831467FE6EC28E0464DD24FB2D62A492AAC697CFAD02"
1730
- },
1731
- {
1732
- "tx_json": {
1733
- "Account": "r4BPgS7DHebQiU31xWELvZawwSG2fSPJ7C",
1734
- "Destination": "rBqSFEFg2B6GBMobtxnU1eLA1zbNC9NDGM",
1735
- "TransactionType": "Payment",
1736
- "Amount": "25000000",
1737
- "Fee": "12",
1738
- "Flags": 0,
1739
- "Sequence": 1,
1740
- "DestinationTag": 4146942154
1741
- },
1742
- "fields": [
1743
- [
1744
- "TransactionType",
1745
- {
1746
- "binary": ["0000"],
1747
- "json": "Payment",
1748
- "field_header": "12"
1749
- }
1750
- ],
1751
- [
1752
- "Flags",
1753
- {
1754
- "binary": ["00000000"],
1755
- "json": 0,
1756
- "field_header": "22"
1757
- }
1758
- ],
1759
- [
1760
- "Sequence",
1761
- {
1762
- "binary": ["00000001"],
1763
- "json": 1,
1764
- "field_header": "24"
1765
- }
1766
- ],
1767
- [
1768
- "DestinationTag",
1769
- {
1770
- "binary": ["F72D50CA"],
1771
- "json": 4146942154,
1772
- "field_header": "2E"
1773
- }
1774
- ],
1775
- [
1776
- "Amount",
1777
- {
1778
- "binary": ["40000000017D7840"],
1779
- "json": "25000000",
1780
- "field_header": "61"
1781
- }
1782
- ],
1783
- [
1784
- "Fee",
1785
- {
1786
- "binary": ["400000000000000C"],
1787
- "json": "12",
1788
- "field_header": "68"
1789
- }
1790
- ],
1791
- [
1792
- "Account",
1793
- {
1794
- "binary": ["E851BBBE79E328E43D68F43445368133DF5FBA5A"],
1795
- "vl_length": "14",
1796
- "json": "r4BPgS7DHebQiU31xWELvZawwSG2fSPJ7C",
1797
- "field_header": "81"
1798
- }
1799
- ],
1800
- [
1801
- "Destination",
1802
- {
1803
- "binary": ["76DAC5E814CD4AA74142C3AB45E69A900E637AA2"],
1804
- "vl_length": "14",
1805
- "json": "rBqSFEFg2B6GBMobtxnU1eLA1zbNC9NDGM",
1806
- "field_header": "83"
1807
- }
1808
- ]
1809
- ],
1810
- "blob_with_no_signing": "120000220000000024000000012EF72D50CA6140000000017D784068400000000000000C8114E851BBBE79E328E43D68F43445368133DF5FBA5A831476DAC5E814CD4AA74142C3AB45E69A900E637AA2"
1811
- },
1812
- {
1813
- "tx_json": {
1814
- "Account": "rFLiPGytDEwC5heoqFcFAZoqPPmKBzX1o",
1815
- "Destination": "rBsbetvMYuMkEeHZYizPMkpveCVH8EVQYd",
1816
- "TransactionType": "Payment",
1817
- "Amount": "500000",
1818
- "Fee": "20",
1819
- "SourceTag": 668920,
1820
- "Sequence": 34954
1821
- },
1822
- "fields": [
1823
- [
1824
- "TransactionType",
1825
- {
1826
- "binary": ["0000"],
1827
- "json": "Payment",
1828
- "field_header": "12"
1829
- }
1830
- ],
1831
- [
1832
- "SourceTag",
1833
- {
1834
- "binary": ["000A34F8"],
1835
- "json": 668920,
1836
- "field_header": "23"
1837
- }
1838
- ],
1839
- [
1840
- "Sequence",
1841
- {
1842
- "binary": ["0000888A"],
1843
- "json": 34954,
1844
- "field_header": "24"
1845
- }
1846
- ],
1847
- [
1848
- "Amount",
1849
- {
1850
- "binary": ["400000000007A120"],
1851
- "json": "500000",
1852
- "field_header": "61"
1853
- }
1854
- ],
1855
- [
1856
- "Fee",
1857
- {
1858
- "binary": ["4000000000000014"],
1859
- "json": "20",
1860
- "field_header": "68"
1861
- }
1862
- ],
1863
- [
1864
- "Account",
1865
- {
1866
- "binary": ["08F41F116A1F60D60296B16907F0A041BF106197"],
1867
- "vl_length": "14",
1868
- "json": "rFLiPGytDEwC5heoqFcFAZoqPPmKBzX1o",
1869
- "field_header": "81"
1870
- }
1871
- ],
1872
- [
1873
- "Destination",
1874
- {
1875
- "binary": ["6E2F0455C46CF5DF61A1E58419A89D45459045EA"],
1876
- "vl_length": "14",
1877
- "json": "rBsbetvMYuMkEeHZYizPMkpveCVH8EVQYd",
1878
- "field_header": "83"
1879
- }
1880
- ]
1881
- ],
1882
- "blob_with_no_signing": "12000023000A34F8240000888A61400000000007A120684000000000000014811408F41F116A1F60D60296B16907F0A041BF10619783146E2F0455C46CF5DF61A1E58419A89D45459045EA"
1883
- },
1884
- {
1885
- "tx_json": {
1886
- "Account": "r3ZDv3hLmTKwkgAqcXtX2yaMfnhRD3Grjc",
1887
- "Destination": "rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q",
1888
- "TransactionType": "Payment",
1889
- "Amount": {
1890
- "currency": "BTC",
1891
- "value": "0.04",
1892
- "issuer": "rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q"
1893
- },
1894
- "Fee": "106",
1895
- "SendMax": "3267350000",
1896
- "Flags": 0,
1897
- "Sequence": 10,
1898
- "Paths": [[{
1899
- "currency": "BTC",
1900
- "issuer": "rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q"
1901
- }]],
1902
- "InvoiceID": "342B8D16BEE494D169034AFF0908FDE35874A38E548D4CEC8DFC5C49E9A33B76",
1903
- "DestinationTag": 1403334172
1904
- },
1905
- "fields": [
1906
- [
1907
- "TransactionType",
1908
- {
1909
- "binary": ["0000"],
1910
- "json": "Payment",
1911
- "field_header": "12"
1912
- }
1913
- ],
1914
- [
1915
- "Flags",
1916
- {
1917
- "binary": ["00000000"],
1918
- "json": 0,
1919
- "field_header": "22"
1920
- }
1921
- ],
1922
- [
1923
- "Sequence",
1924
- {
1925
- "binary": ["0000000A"],
1926
- "json": 10,
1927
- "field_header": "24"
1928
- }
1929
- ],
1930
- [
1931
- "DestinationTag",
1932
- {
1933
- "binary": ["53A52E1C"],
1934
- "json": 1403334172,
1935
- "field_header": "2E"
1936
- }
1937
- ],
1938
- [
1939
- "InvoiceID",
1940
- {
1941
- "binary": ["342B8D16BEE494D169034AFF0908FDE35874A38E548D4CEC8DFC5C49E9A33B76"],
1942
- "json": "342B8D16BEE494D169034AFF0908FDE35874A38E548D4CEC8DFC5C49E9A33B76",
1943
- "field_header": "5011"
1944
- }
1945
- ],
1946
- [
1947
- "Amount",
1948
- {
1949
- "binary": [
1950
- "D40E35FA931A0000",
1951
- "0000000000000000000000004254430000000000",
1952
- "DD39C650A96EDA48334E70CC4A85B8B2E8502CD3"
1953
- ],
1954
- "json": {
1955
- "currency": "BTC",
1956
- "value": "0.04",
1957
- "issuer": "rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q"
1958
- },
1959
- "field_header": "61"
1960
- }
1961
- ],
1962
- [
1963
- "Fee",
1964
- {
1965
- "binary": ["400000000000006A"],
1966
- "json": "106",
1967
- "field_header": "68"
1968
- }
1969
- ],
1970
- [
1971
- "SendMax",
1972
- {
1973
- "binary": ["40000000C2BFCDF0"],
1974
- "json": "3267350000",
1975
- "field_header": "69"
1976
- }
1977
- ],
1978
- [
1979
- "Account",
1980
- {
1981
- "binary": ["52E0F910686FB449A23BC78C3D4CE564C988C6C0"],
1982
- "vl_length": "14",
1983
- "json": "r3ZDv3hLmTKwkgAqcXtX2yaMfnhRD3Grjc",
1984
- "field_header": "81"
1985
- }
1986
- ],
1987
- [
1988
- "Destination",
1989
- {
1990
- "binary": ["DD39C650A96EDA48334E70CC4A85B8B2E8502CD3"],
1991
- "vl_length": "14",
1992
- "json": "rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q",
1993
- "field_header": "83"
1994
- }
1995
- ],
1996
- [
1997
- "Paths",
1998
- {
1999
- "binary": [
2000
- "30",
2001
- "0000000000000000000000004254430000000000",
2002
- "DD39C650A96EDA48334E70CC4A85B8B2E8502CD3",
2003
- "00"
2004
- ],
2005
- "json": [[{
2006
- "currency": "BTC",
2007
- "issuer": "rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q"
2008
- }]],
2009
- "field_header": "0112"
2010
- }
2011
- ]
2012
- ],
2013
- "blob_with_no_signing": "1200002200000000240000000A2E53A52E1C5011342B8D16BEE494D169034AFF0908FDE35874A38E548D4CEC8DFC5C49E9A33B7661D40E35FA931A00000000000000000000000000004254430000000000DD39C650A96EDA48334E70CC4A85B8B2E8502CD368400000000000006A6940000000C2BFCDF0811452E0F910686FB449A23BC78C3D4CE564C988C6C08314DD39C650A96EDA48334E70CC4A85B8B2E8502CD30112300000000000000000000000004254430000000000DD39C650A96EDA48334E70CC4A85B8B2E8502CD300"
2014
- },
2015
- {
2016
- "tx_json": {
2017
- "Account": "rLpW9Reyn9YqZ8mxbq8nviXSp4TnHafVJQ",
2018
- "TransactionType": "OfferCancel",
2019
- "Fee": "12",
2020
- "OfferSequence": 20763,
2021
- "Flags": 0,
2022
- "Sequence": 20769,
2023
- "LastLedgerSequence": 6220009
2024
- },
2025
- "fields": [
2026
- [
2027
- "TransactionType",
2028
- {
2029
- "binary": ["0008"],
2030
- "json": "OfferCancel",
2031
- "field_header": "12"
2032
- }
2033
- ],
2034
- [
2035
- "Flags",
2036
- {
2037
- "binary": ["00000000"],
2038
- "json": 0,
2039
- "field_header": "22"
2040
- }
2041
- ],
2042
- [
2043
- "Sequence",
2044
- {
2045
- "binary": ["00005121"],
2046
- "json": 20769,
2047
- "field_header": "24"
2048
- }
2049
- ],
2050
- [
2051
- "OfferSequence",
2052
- {
2053
- "binary": ["0000511B"],
2054
- "json": 20763,
2055
- "field_header": "2019"
2056
- }
2057
- ],
2058
- [
2059
- "LastLedgerSequence",
2060
- {
2061
- "binary": ["005EE8E9"],
2062
- "json": 6220009,
2063
- "field_header": "201B"
2064
- }
2065
- ],
2066
- [
2067
- "Fee",
2068
- {
2069
- "binary": ["400000000000000C"],
2070
- "json": "12",
2071
- "field_header": "68"
2072
- }
2073
- ],
2074
- [
2075
- "Account",
2076
- {
2077
- "binary": ["D0B32295596E50017E246FE85FC5982A1BD89CE4"],
2078
- "vl_length": "14",
2079
- "json": "rLpW9Reyn9YqZ8mxbq8nviXSp4TnHafVJQ",
2080
- "field_header": "81"
2081
- }
2082
- ]
2083
- ],
2084
- "blob_with_no_signing": "1200082200000000240000512120190000511B201B005EE8E968400000000000000C8114D0B32295596E50017E246FE85FC5982A1BD89CE4"
2085
- },
2086
- {
2087
- "tx_json": {
2088
- "Account": "rfeMWWbSaGqc6Yth2dTetLBeKeUTTfE2pG",
2089
- "TransactionType": "SetRegularKey",
2090
- "Fee": "10",
2091
- "Flags": 2147483648,
2092
- "Sequence": 3,
2093
- "RegularKey": "rfeMWWbSaGqc6Yth2dTetLBeKeUTTfE2pG"
2094
- },
2095
- "fields": [
2096
- [
2097
- "TransactionType",
2098
- {
2099
- "binary": ["0005"],
2100
- "json": "SetRegularKey",
2101
- "field_header": "12"
2102
- }
2103
- ],
2104
- [
2105
- "Flags",
2106
- {
2107
- "binary": ["80000000"],
2108
- "json": 2147483648,
2109
- "field_header": "22"
2110
- }
2111
- ],
2112
- [
2113
- "Sequence",
2114
- {
2115
- "binary": ["00000003"],
2116
- "json": 3,
2117
- "field_header": "24"
2118
- }
2119
- ],
2120
- [
2121
- "Fee",
2122
- {
2123
- "binary": ["400000000000000A"],
2124
- "json": "10",
2125
- "field_header": "68"
2126
- }
2127
- ],
2128
- [
2129
- "Account",
2130
- {
2131
- "binary": ["48E143E2384A1B3C69A412789F2CA3FCE2F65F0B"],
2132
- "vl_length": "14",
2133
- "json": "rfeMWWbSaGqc6Yth2dTetLBeKeUTTfE2pG",
2134
- "field_header": "81"
2135
- }
2136
- ],
2137
- [
2138
- "RegularKey",
2139
- {
2140
- "binary": ["48E143E2384A1B3C69A412789F2CA3FCE2F65F0B"],
2141
- "vl_length": "14",
2142
- "json": "rfeMWWbSaGqc6Yth2dTetLBeKeUTTfE2pG",
2143
- "field_header": "88"
2144
- }
2145
- ]
2146
- ],
2147
- "blob_with_no_signing": "1200052280000000240000000368400000000000000A811448E143E2384A1B3C69A412789F2CA3FCE2F65F0B881448E143E2384A1B3C69A412789F2CA3FCE2F65F0B"
2148
- },
2149
- {
2150
- "tx_json": {
2151
- "Account": "rKXCummUHnenhYudNb9UoJ4mGBR75vFcgz",
2152
- "TransactionType": "SetRegularKey",
2153
- "Fee": "12",
2154
- "Flags": 2147483648,
2155
- "Sequence": 238,
2156
- "RegularKey": "rP9jbfTepHAHWB4q9YjNkLyaZT15uvexiZ",
2157
- "LastLedgerSequence": 6224204
2158
- },
2159
- "fields": [
2160
- [
2161
- "TransactionType",
2162
- {
2163
- "binary": ["0005"],
2164
- "json": "SetRegularKey",
2165
- "field_header": "12"
2166
- }
2167
- ],
2168
- [
2169
- "Flags",
2170
- {
2171
- "binary": ["80000000"],
2172
- "json": 2147483648,
2173
- "field_header": "22"
2174
- }
2175
- ],
2176
- [
2177
- "Sequence",
2178
- {
2179
- "binary": ["000000EE"],
2180
- "json": 238,
2181
- "field_header": "24"
2182
- }
2183
- ],
2184
- [
2185
- "LastLedgerSequence",
2186
- {
2187
- "binary": ["005EF94C"],
2188
- "json": 6224204,
2189
- "field_header": "201B"
2190
- }
2191
- ],
2192
- [
2193
- "Fee",
2194
- {
2195
- "binary": ["400000000000000C"],
2196
- "json": "12",
2197
- "field_header": "68"
2198
- }
2199
- ],
2200
- [
2201
- "Account",
2202
- {
2203
- "binary": ["CB3F392892D0772FF5AD155D8D70404B1DB2ACFE"],
2204
- "vl_length": "14",
2205
- "json": "rKXCummUHnenhYudNb9UoJ4mGBR75vFcgz",
2206
- "field_header": "81"
2207
- }
2208
- ],
2209
- [
2210
- "RegularKey",
2211
- {
2212
- "binary": ["F2F9A54D9CEBBE64342B52DE3450FFA0738C8D00"],
2213
- "vl_length": "14",
2214
- "json": "rP9jbfTepHAHWB4q9YjNkLyaZT15uvexiZ",
2215
- "field_header": "88"
2216
- }
2217
- ]
2218
- ],
2219
- "blob_with_no_signing": "120005228000000024000000EE201B005EF94C68400000000000000C8114CB3F392892D0772FF5AD155D8D70404B1DB2ACFE8814F2F9A54D9CEBBE64342B52DE3450FFA0738C8D00"
2220
- },
2221
- {
2222
- "tx_json": {
2223
- "Account": "rJMiz2rCMjZzEMijXNH1exNBryTQEjFd9S",
2224
- "TransactionType": "TrustSet",
2225
- "LimitAmount": {
2226
- "currency": "WCG",
2227
- "value": "10000000",
2228
- "issuer": "rUx4xgE7bNWCCgGcXv1CCoQyTcCeZ275YG"
2229
- },
2230
- "Fee": "12",
2231
- "Flags": 131072,
2232
- "Sequence": 44
2233
- },
2234
- "fields": [
2235
- [
2236
- "TransactionType",
2237
- {
2238
- "binary": ["0014"],
2239
- "json": "TrustSet",
2240
- "field_header": "12"
2241
- }
2242
- ],
2243
- [
2244
- "Flags",
2245
- {
2246
- "binary": ["00020000"],
2247
- "json": 131072,
2248
- "field_header": "22"
2249
- }
2250
- ],
2251
- [
2252
- "Sequence",
2253
- {
2254
- "binary": ["0000002C"],
2255
- "json": 44,
2256
- "field_header": "24"
2257
- }
2258
- ],
2259
- [
2260
- "LimitAmount",
2261
- {
2262
- "binary": [
2263
- "D6438D7EA4C68000",
2264
- "0000000000000000000000005743470000000000",
2265
- "832297BEF589D59F9C03A84F920F8D9128CC1CE4"
2266
- ],
2267
- "json": {
2268
- "currency": "WCG",
2269
- "value": "10000000",
2270
- "issuer": "rUx4xgE7bNWCCgGcXv1CCoQyTcCeZ275YG"
2271
- },
2272
- "field_header": "63"
2273
- }
2274
- ],
2275
- [
2276
- "Fee",
2277
- {
2278
- "binary": ["400000000000000C"],
2279
- "json": "12",
2280
- "field_header": "68"
2281
- }
2282
- ],
2283
- [
2284
- "Account",
2285
- {
2286
- "binary": ["BE6C30732AE33CF2AF3344CE8172A6B9300183E3"],
2287
- "vl_length": "14",
2288
- "json": "rJMiz2rCMjZzEMijXNH1exNBryTQEjFd9S",
2289
- "field_header": "81"
2290
- }
2291
- ]
2292
- ],
2293
- "blob_with_no_signing": "1200142200020000240000002C63D6438D7EA4C680000000000000000000000000005743470000000000832297BEF589D59F9C03A84F920F8D9128CC1CE468400000000000000C8114BE6C30732AE33CF2AF3344CE8172A6B9300183E3"
2294
- },
2295
- {
2296
- "tx_json": {
2297
- "Account": "rUyPiNcSFFj6uMR2gEaD8jUerQ59G1qvwN",
2298
- "TransactionType": "TrustSet",
2299
- "LimitAmount": {
2300
- "currency": "BTC",
2301
- "value": "1",
2302
- "issuer": "rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q"
2303
- },
2304
- "Fee": "12",
2305
- "Flags": 2147614720,
2306
- "Sequence": 43,
2307
- "LastLedgerSequence": 6220463
2308
- },
2309
- "fields": [
2310
- [
2311
- "TransactionType",
2312
- {
2313
- "binary": ["0014"],
2314
- "json": "TrustSet",
2315
- "field_header": "12"
2316
- }
2317
- ],
2318
- [
2319
- "Flags",
2320
- {
2321
- "binary": ["80020000"],
2322
- "json": 2147614720,
2323
- "field_header": "22"
2324
- }
2325
- ],
2326
- [
2327
- "Sequence",
2328
- {
2329
- "binary": ["0000002B"],
2330
- "json": 43,
2331
- "field_header": "24"
2332
- }
2333
- ],
2334
- [
2335
- "LastLedgerSequence",
2336
- {
2337
- "binary": ["005EEAAF"],
2338
- "json": 6220463,
2339
- "field_header": "201B"
2340
- }
2341
- ],
2342
- [
2343
- "LimitAmount",
2344
- {
2345
- "binary": [
2346
- "D4838D7EA4C68000",
2347
- "0000000000000000000000004254430000000000",
2348
- "DD39C650A96EDA48334E70CC4A85B8B2E8502CD3"
2349
- ],
2350
- "json": {
2351
- "currency": "BTC",
2352
- "value": "1",
2353
- "issuer": "rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q"
2354
- },
2355
- "field_header": "63"
2356
- }
2357
- ],
2358
- [
2359
- "Fee",
2360
- {
2361
- "binary": ["400000000000000C"],
2362
- "json": "12",
2363
- "field_header": "68"
2364
- }
2365
- ],
2366
- [
2367
- "Account",
2368
- {
2369
- "binary": ["8353C031DF5AA061A23535E6ABCEEEA23F152B1E"],
2370
- "vl_length": "14",
2371
- "json": "rUyPiNcSFFj6uMR2gEaD8jUerQ59G1qvwN",
2372
- "field_header": "81"
2373
- }
2374
- ]
2375
- ],
2376
- "blob_with_no_signing": "1200142280020000240000002B201B005EEAAF63D4838D7EA4C680000000000000000000000000004254430000000000DD39C650A96EDA48334E70CC4A85B8B2E8502CD368400000000000000C81148353C031DF5AA061A23535E6ABCEEEA23F152B1E"
2377
- },
2378
- {
2379
- "tx_json": {
2380
- "Account": "rpP2GdsQwenNnFPefbXFgiTvEgJWQpq8Rw",
2381
- "TransactionType": "AccountSet",
2382
- "Fee": "10",
2383
- "Flags": 0,
2384
- "Sequence": 10598
2385
- },
2386
- "fields": [
2387
- [
2388
- "TransactionType",
2389
- {
2390
- "binary": ["0003"],
2391
- "json": "AccountSet",
2392
- "field_header": "12"
2393
- }
2394
- ],
2395
- [
2396
- "Flags",
2397
- {
2398
- "binary": ["00000000"],
2399
- "json": 0,
2400
- "field_header": "22"
2401
- }
2402
- ],
2403
- [
2404
- "Sequence",
2405
- {
2406
- "binary": ["00002966"],
2407
- "json": 10598,
2408
- "field_header": "24"
2409
- }
2410
- ],
2411
- [
2412
- "Fee",
2413
- {
2414
- "binary": ["400000000000000A"],
2415
- "json": "10",
2416
- "field_header": "68"
2417
- }
2418
- ],
2419
- [
2420
- "Account",
2421
- {
2422
- "binary": ["0F3D0C7D2CFAB2EC8295451F0B3CA038E8E9CDCD"],
2423
- "vl_length": "14",
2424
- "json": "rpP2GdsQwenNnFPefbXFgiTvEgJWQpq8Rw",
2425
- "field_header": "81"
2426
- }
2427
- ]
2428
- ],
2429
- "blob_with_no_signing": "1200032200000000240000296668400000000000000A81140F3D0C7D2CFAB2EC8295451F0B3CA038E8E9CDCD"
2430
- },
2431
- {
2432
- "tx_json": {
2433
- "Account": "rGCnJuD31Kx4QGZJ2dX7xoje6T4Zr5s9EB",
2434
- "TransactionType": "AccountSet",
2435
- "Fee": "15",
2436
- "Flags": 0,
2437
- "Sequence": 290,
2438
- "LastLedgerSequence": 6221014
2439
- },
2440
- "fields": [
2441
- [
2442
- "TransactionType",
2443
- {
2444
- "binary": ["0003"],
2445
- "json": "AccountSet",
2446
- "field_header": "12"
2447
- }
2448
- ],
2449
- [
2450
- "Flags",
2451
- {
2452
- "binary": ["00000000"],
2453
- "json": 0,
2454
- "field_header": "22"
2455
- }
2456
- ],
2457
- [
2458
- "Sequence",
2459
- {
2460
- "binary": ["00000122"],
2461
- "json": 290,
2462
- "field_header": "24"
2463
- }
2464
- ],
2465
- [
2466
- "LastLedgerSequence",
2467
- {
2468
- "binary": ["005EECD6"],
2469
- "json": 6221014,
2470
- "field_header": "201B"
2471
- }
2472
- ],
2473
- [
2474
- "Fee",
2475
- {
2476
- "binary": ["400000000000000F"],
2477
- "json": "15",
2478
- "field_header": "68"
2479
- }
2480
- ],
2481
- [
2482
- "Account",
2483
- {
2484
- "binary": ["ABBD4A3AF95FDFD6D072F11421D8F107CAEA1852"],
2485
- "vl_length": "14",
2486
- "json": "rGCnJuD31Kx4QGZJ2dX7xoje6T4Zr5s9EB",
2487
- "field_header": "81"
2488
- }
2489
- ]
2490
- ],
2491
- "blob_with_no_signing": "12000322000000002400000122201B005EECD668400000000000000F8114ABBD4A3AF95FDFD6D072F11421D8F107CAEA1852"
2492
- }
2493
- ],
2494
- "values_tests": [
2495
- {
2496
- "test_json": "0",
2497
- "type_id": 6,
2498
- "is_native": true,
2499
- "type": "Amount",
2500
- "expected_hex": "4000000000000000",
2501
- "is_negative": false
2502
- },
2503
- {
2504
- "test_json": "1",
2505
- "type_id": 6,
2506
- "is_native": true,
2507
- "type": "Amount",
2508
- "expected_hex": "4000000000000001",
2509
- "is_negative": false
2510
- },
2511
- {
2512
- "test_json": "-1",
2513
- "type_id": 6,
2514
- "is_native": true,
2515
- "type": "Amount",
2516
- "expected_hex": "0000000000000001",
2517
- "is_negative": true
2518
- },
2519
- {
2520
- "test_json": {
2521
- "currency": "USD",
2522
- "value": "-1",
2523
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2524
- },
2525
- "significant_digits": 1,
2526
- "type_id": 6,
2527
- "is_native": false,
2528
- "mantissa": "00038D7EA4C68000",
2529
- "type": "Amount",
2530
- "expected_hex": "94838D7EA4C6800000000000000000000000000055534400000000000000000000000000000000000000000000000001",
2531
- "is_negative": true,
2532
- "exponent": -15
2533
- },
2534
- {
2535
- "test_json": {
2536
- "currency": "USD",
2537
- "value": "1",
2538
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2539
- },
2540
- "significant_digits": 1,
2541
- "type_id": 6,
2542
- "is_native": false,
2543
- "mantissa": "00038D7EA4C68000",
2544
- "type": "Amount",
2545
- "expected_hex": "D4838D7EA4C6800000000000000000000000000055534400000000000000000000000000000000000000000000000001",
2546
- "is_negative": false,
2547
- "exponent": -15
2548
- },
2549
- {
2550
- "test_json": {
2551
- "currency": "USD",
2552
- "value": "0",
2553
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2554
- },
2555
- "significant_digits": 1,
2556
- "type_id": 6,
2557
- "is_native": false,
2558
- "mantissa": "0000000000000000",
2559
- "type": "Amount",
2560
- "expected_hex": "800000000000000000000000000000000000000055534400000000000000000000000000000000000000000000000001",
2561
- "is_negative": false,
2562
- "exponent": -15
2563
- },
2564
- {
2565
- "test_json": {
2566
- "currency": "USD",
2567
- "value": "-1.0",
2568
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2569
- },
2570
- "significant_digits": 1,
2571
- "type_id": 6,
2572
- "is_native": false,
2573
- "mantissa": "00038D7EA4C68000",
2574
- "type": "Amount",
2575
- "expected_hex": "94838D7EA4C6800000000000000000000000000055534400000000000000000000000000000000000000000000000001",
2576
- "is_negative": true,
2577
- "exponent": -15
2578
- },
2579
- {
2580
- "test_json": {
2581
- "currency": "USD",
2582
- "value": "1.0",
2583
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2584
- },
2585
- "significant_digits": 1,
2586
- "type_id": 6,
2587
- "is_native": false,
2588
- "mantissa": "00038D7EA4C68000",
2589
- "type": "Amount",
2590
- "expected_hex": "D4838D7EA4C6800000000000000000000000000055534400000000000000000000000000000000000000000000000001",
2591
- "is_negative": false,
2592
- "exponent": -15
2593
- },
2594
- {
2595
- "test_json": {
2596
- "currency": "USD",
2597
- "value": "0.0",
2598
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2599
- },
2600
- "significant_digits": 1,
2601
- "type_id": 6,
2602
- "is_native": false,
2603
- "mantissa": "0000000000000000",
2604
- "type": "Amount",
2605
- "expected_hex": "800000000000000000000000000000000000000055534400000000000000000000000000000000000000000000000001",
2606
- "is_negative": false,
2607
- "exponent": -15
2608
- },
2609
- {
2610
- "test_json": {
2611
- "currency": "USD",
2612
- "value": "0.000000000000000000000000000000000000000000000000000000000000000000000000001",
2613
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2614
- },
2615
- "significant_digits": 1,
2616
- "type_id": 6,
2617
- "is_native": false,
2618
- "mantissa": "00038D7EA4C68000",
2619
- "type": "Amount",
2620
- "expected_hex": "C1C38D7EA4C6800000000000000000000000000055534400000000000000000000000000000000000000000000000001",
2621
- "is_negative": false,
2622
- "exponent": -90
2623
- },
2624
- {
2625
- "test_json": {
2626
- "currency": "USD",
2627
- "value": "100000000000000000000000000000000000000000000000000000000000000000000000000000",
2628
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2629
- },
2630
- "significant_digits": 1,
2631
- "type_id": 6,
2632
- "is_native": false,
2633
- "mantissa": "00038D7EA4C68000",
2634
- "type": "Amount",
2635
- "expected_hex": "E7C38D7EA4C6800000000000000000000000000055534400000000000000000000000000000000000000000000000001",
2636
- "is_negative": false,
2637
- "exponent": 62
2638
- },
2639
- {
2640
- "test_json": {
2641
- "currency": "USD",
2642
- "value": "1.111111111111111",
2643
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2644
- },
2645
- "significant_digits": 16,
2646
- "type_id": 6,
2647
- "is_native": false,
2648
- "mantissa": "0003F28CB71571C7",
2649
- "type": "Amount",
2650
- "expected_hex": "D483F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2651
- "is_negative": false,
2652
- "exponent": -15
2653
- },
2654
- {
2655
- "test_json": {
2656
- "currency": "USD",
2657
- "value": "11.11111111111111",
2658
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2659
- },
2660
- "significant_digits": 16,
2661
- "type_id": 6,
2662
- "is_native": false,
2663
- "mantissa": "0003F28CB71571C7",
2664
- "type": "Amount",
2665
- "expected_hex": "D4C3F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2666
- "is_negative": false,
2667
- "exponent": -14
2668
- },
2669
- {
2670
- "test_json": {
2671
- "currency": "USD",
2672
- "value": "111.1111111111111",
2673
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2674
- },
2675
- "significant_digits": 16,
2676
- "type_id": 6,
2677
- "is_native": false,
2678
- "mantissa": "0003F28CB71571C7",
2679
- "type": "Amount",
2680
- "expected_hex": "D503F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2681
- "is_negative": false,
2682
- "exponent": -13
2683
- },
2684
- {
2685
- "test_json": {
2686
- "currency": "USD",
2687
- "value": "1111.111111111111",
2688
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2689
- },
2690
- "significant_digits": 16,
2691
- "type_id": 6,
2692
- "is_native": false,
2693
- "mantissa": "0003F28CB71571C7",
2694
- "type": "Amount",
2695
- "expected_hex": "D543F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2696
- "is_negative": false,
2697
- "exponent": -12
2698
- },
2699
- {
2700
- "test_json": {
2701
- "currency": "USD",
2702
- "value": "11111.11111111111",
2703
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2704
- },
2705
- "significant_digits": 16,
2706
- "type_id": 6,
2707
- "is_native": false,
2708
- "mantissa": "0003F28CB71571C7",
2709
- "type": "Amount",
2710
- "expected_hex": "D583F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2711
- "is_negative": false,
2712
- "exponent": -11
2713
- },
2714
- {
2715
- "test_json": {
2716
- "currency": "USD",
2717
- "value": "111111.1111111111",
2718
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2719
- },
2720
- "significant_digits": 16,
2721
- "type_id": 6,
2722
- "is_native": false,
2723
- "mantissa": "0003F28CB71571C7",
2724
- "type": "Amount",
2725
- "expected_hex": "D5C3F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2726
- "is_negative": false,
2727
- "exponent": -10
2728
- },
2729
- {
2730
- "test_json": {
2731
- "currency": "USD",
2732
- "value": "1111111.111111111",
2733
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2734
- },
2735
- "significant_digits": 16,
2736
- "type_id": 6,
2737
- "is_native": false,
2738
- "mantissa": "0003F28CB71571C7",
2739
- "type": "Amount",
2740
- "expected_hex": "D603F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2741
- "is_negative": false,
2742
- "exponent": -9
2743
- },
2744
- {
2745
- "test_json": {
2746
- "currency": "USD",
2747
- "value": "11111111.11111111",
2748
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2749
- },
2750
- "significant_digits": 16,
2751
- "type_id": 6,
2752
- "is_native": false,
2753
- "mantissa": "0003F28CB71571C7",
2754
- "type": "Amount",
2755
- "expected_hex": "D643F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2756
- "is_negative": false,
2757
- "exponent": -8
2758
- },
2759
- {
2760
- "test_json": {
2761
- "currency": "USD",
2762
- "value": "111111111.1111111",
2763
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2764
- },
2765
- "significant_digits": 16,
2766
- "type_id": 6,
2767
- "is_native": false,
2768
- "mantissa": "0003F28CB71571C7",
2769
- "type": "Amount",
2770
- "expected_hex": "D683F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2771
- "is_negative": false,
2772
- "exponent": -7
2773
- },
2774
- {
2775
- "test_json": {
2776
- "currency": "USD",
2777
- "value": "1111111111.111111",
2778
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2779
- },
2780
- "significant_digits": 16,
2781
- "type_id": 6,
2782
- "is_native": false,
2783
- "mantissa": "0003F28CB71571C7",
2784
- "type": "Amount",
2785
- "expected_hex": "D6C3F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2786
- "is_negative": false,
2787
- "exponent": -6
2788
- },
2789
- {
2790
- "test_json": {
2791
- "currency": "USD",
2792
- "value": "11111111111.11111",
2793
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2794
- },
2795
- "significant_digits": 16,
2796
- "type_id": 6,
2797
- "is_native": false,
2798
- "mantissa": "0003F28CB71571C7",
2799
- "type": "Amount",
2800
- "expected_hex": "D703F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2801
- "is_negative": false,
2802
- "exponent": -5
2803
- },
2804
- {
2805
- "test_json": {
2806
- "currency": "USD",
2807
- "value": "111111111111.1111",
2808
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2809
- },
2810
- "significant_digits": 16,
2811
- "type_id": 6,
2812
- "is_native": false,
2813
- "mantissa": "0003F28CB71571C7",
2814
- "type": "Amount",
2815
- "expected_hex": "D743F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2816
- "is_negative": false,
2817
- "exponent": -4
2818
- },
2819
- {
2820
- "test_json": {
2821
- "currency": "USD",
2822
- "value": "1111111111111.111",
2823
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2824
- },
2825
- "significant_digits": 16,
2826
- "type_id": 6,
2827
- "is_native": false,
2828
- "mantissa": "0003F28CB71571C7",
2829
- "type": "Amount",
2830
- "expected_hex": "D783F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2831
- "is_negative": false,
2832
- "exponent": -3
2833
- },
2834
- {
2835
- "test_json": {
2836
- "currency": "USD",
2837
- "value": "11111111111111.11",
2838
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2839
- },
2840
- "significant_digits": 16,
2841
- "type_id": 6,
2842
- "is_native": false,
2843
- "mantissa": "0003F28CB71571C7",
2844
- "type": "Amount",
2845
- "expected_hex": "D7C3F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2846
- "is_negative": false,
2847
- "exponent": -2
2848
- },
2849
- {
2850
- "test_json": {
2851
- "currency": "USD",
2852
- "value": "111111111111111.1",
2853
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2854
- },
2855
- "significant_digits": 16,
2856
- "type_id": 6,
2857
- "is_native": false,
2858
- "mantissa": "0003F28CB71571C7",
2859
- "type": "Amount",
2860
- "expected_hex": "D803F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2861
- "is_negative": false,
2862
- "exponent": -1
2863
- },
2864
- {
2865
- "test_json": {
2866
- "currency": "USD",
2867
- "value": "1111111111111111.0",
2868
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2869
- },
2870
- "significant_digits": 16,
2871
- "type_id": 6,
2872
- "is_native": false,
2873
- "mantissa": "0003F28CB71571C7",
2874
- "type": "Amount",
2875
- "expected_hex": "D843F28CB71571C700000000000000000000000055534400000000000000000000000000000000000000000000000001",
2876
- "is_negative": false,
2877
- "exponent": 0
2878
- },
2879
- {
2880
- "test_json": {
2881
- "currency": "USD",
2882
- "value": "1111111111111111.1",
2883
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2884
- },
2885
- "significant_digits": 17,
2886
- "type_id": 6,
2887
- "is_native": false,
2888
- "type": "Amount",
2889
- "error": "value precision of 17 is greater than maximum iou precision of 16",
2890
- "is_negative": false
2891
- },
2892
- {
2893
- "test_json": {
2894
- "currency": "USD",
2895
- "value": "9999999999999999000000000000000000000000000000000000000000000000000000000000000000000000000000000",
2896
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2897
- },
2898
- "type": "Amount",
2899
- "error": "exponent is too large"
2900
- },
2901
- {
2902
- "test_json": {
2903
- "currency": "USD",
2904
- "value": "11111000.00000001",
2905
- "issuer": "rrrrrrrrrrrrrrrrrrrrBZbvji"
2906
- },
2907
- "significant_digits": 16,
2908
- "type_id": 6,
2909
- "is_native": false,
2910
- "mantissa": "0003F28A20CF5801",
2911
- "type": "Amount",
2912
- "expected_hex": "D643F28A20CF580100000000000000000000000055534400000000000000000000000000000000000000000000000001",
2913
- "is_negative": false,
2914
- "exponent": -8
2915
- },
2916
- {
2917
- "test_json": "1000000000000000000",
2918
- "type_id": 6,
2919
- "is_native": true,
2920
- "type": "Amount",
2921
- "error": "1000000000000 absolute XRP is bigger than max native value 100000000000.0",
2922
- "is_negative": false
2923
- },
2924
- {
2925
- "test_json": "-10000000000000000000000000",
2926
- "type_id": 6,
2927
- "is_native": true,
2928
- "type": "Amount",
2929
- "error": "10000000000000000000 absolute XRP is bigger than max native value 100000000000.0",
2930
- "is_negative": true
2931
- },
2932
- {
2933
- "test_json": 0,
2934
- "canonical_json": "Payment",
2935
- "type_id": 1,
2936
- "type_specialisation_field": "TransactionType",
2937
- "type": "UInt16",
2938
- "expected_hex": "0000"
2939
- },
2940
- {
2941
- "test_json": "EscrowCreate",
2942
- "type_id": 1,
2943
- "type_specialisation_field": "TransactionType",
2944
- "type": "UInt16",
2945
- "expected_hex": "0001"
2946
- },
2947
- {
2948
- "test_json": 1,
2949
- "canonical_json": "EscrowCreate",
2950
- "type_id": 1,
2951
- "type_specialisation_field": "TransactionType",
2952
- "type": "UInt16",
2953
- "expected_hex": "0001"
2954
- },
2955
- {
2956
- "test_json": "EscrowFinish",
2957
- "type_id": 1,
2958
- "type_specialisation_field": "TransactionType",
2959
- "type": "UInt16",
2960
- "expected_hex": "0002"
2961
- },
2962
- {
2963
- "test_json": 2,
2964
- "canonical_json": "EscrowFinish",
2965
- "type_id": 1,
2966
- "type_specialisation_field": "TransactionType",
2967
- "type": "UInt16",
2968
- "expected_hex": "0002"
2969
- },
2970
- {
2971
- "test_json": "AccountSet",
2972
- "type_id": 1,
2973
- "type_specialisation_field": "TransactionType",
2974
- "type": "UInt16",
2975
- "expected_hex": "0003"
2976
- },
2977
- {
2978
- "test_json": 3,
2979
- "canonical_json": "AccountSet",
2980
- "type_id": 1,
2981
- "type_specialisation_field": "TransactionType",
2982
- "type": "UInt16",
2983
- "expected_hex": "0003"
2984
- },
2985
- {
2986
- "test_json": "EscrowCancel",
2987
- "type_id": 1,
2988
- "type_specialisation_field": "TransactionType",
2989
- "type": "UInt16",
2990
- "expected_hex": "0004"
2991
- },
2992
- {
2993
- "test_json": 4,
2994
- "canonical_json": "EscrowCancel",
2995
- "type_id": 1,
2996
- "type_specialisation_field": "TransactionType",
2997
- "type": "UInt16",
2998
- "expected_hex": "0004"
2999
- },
3000
- {
3001
- "test_json": "SetRegularKey",
3002
- "type_id": 1,
3003
- "type_specialisation_field": "TransactionType",
3004
- "type": "UInt16",
3005
- "expected_hex": "0005"
3006
- },
3007
- {
3008
- "test_json": 5,
3009
- "canonical_json": "SetRegularKey",
3010
- "type_id": 1,
3011
- "type_specialisation_field": "TransactionType",
3012
- "type": "UInt16",
3013
- "expected_hex": "0005"
3014
- },
3015
- {
3016
- "test_json": "NickNameSet",
3017
- "type_id": 1,
3018
- "type_specialisation_field": "TransactionType",
3019
- "type": "UInt16",
3020
- "expected_hex": "0006"
3021
- },
3022
- {
3023
- "test_json": 6,
3024
- "canonical_json": "NickNameSet",
3025
- "type_id": 1,
3026
- "type_specialisation_field": "TransactionType",
3027
- "type": "UInt16",
3028
- "expected_hex": "0006"
3029
- },
3030
- {
3031
- "test_json": "OfferCreate",
3032
- "type_id": 1,
3033
- "type_specialisation_field": "TransactionType",
3034
- "type": "UInt16",
3035
- "expected_hex": "0007"
3036
- },
3037
- {
3038
- "test_json": 7,
3039
- "canonical_json": "OfferCreate",
3040
- "type_id": 1,
3041
- "type_specialisation_field": "TransactionType",
3042
- "type": "UInt16",
3043
- "expected_hex": "0007"
3044
- },
3045
- {
3046
- "test_json": "OfferCancel",
3047
- "type_id": 1,
3048
- "type_specialisation_field": "TransactionType",
3049
- "type": "UInt16",
3050
- "expected_hex": "0008"
3051
- },
3052
- {
3053
- "test_json": 8,
3054
- "canonical_json": "OfferCancel",
3055
- "type_id": 1,
3056
- "type_specialisation_field": "TransactionType",
3057
- "type": "UInt16",
3058
- "expected_hex": "0008"
3059
- },
3060
- {
3061
- "test_json": "Contract",
3062
- "type_id": 1,
3063
- "type_specialisation_field": "TransactionType",
3064
- "type": "UInt16",
3065
- "expected_hex": "0009"
3066
- },
3067
- {
3068
- "test_json": 9,
3069
- "canonical_json": "Contract",
3070
- "type_id": 1,
3071
- "type_specialisation_field": "TransactionType",
3072
- "type": "UInt16",
3073
- "expected_hex": "0009"
3074
- },
3075
- {
3076
- "test_json": "TicketCreate",
3077
- "type_id": 1,
3078
- "type_specialisation_field": "TransactionType",
3079
- "type": "UInt16",
3080
- "expected_hex": "000A"
3081
- },
3082
- {
3083
- "test_json": 10,
3084
- "canonical_json": "TicketCreate",
3085
- "type_id": 1,
3086
- "type_specialisation_field": "TransactionType",
3087
- "type": "UInt16",
3088
- "expected_hex": "000A"
3089
- },
3090
- {
3091
- "test_json": "TicketCancel",
3092
- "type_id": 1,
3093
- "type_specialisation_field": "TransactionType",
3094
- "type": "UInt16",
3095
- "expected_hex": "000B"
3096
- },
3097
- {
3098
- "test_json": 11,
3099
- "canonical_json": "TicketCancel",
3100
- "type_id": 1,
3101
- "type_specialisation_field": "TransactionType",
3102
- "type": "UInt16",
3103
- "expected_hex": "000B"
3104
- },
3105
- {
3106
- "test_json": "TrustSet",
3107
- "type_id": 1,
3108
- "type_specialisation_field": "TransactionType",
3109
- "type": "UInt16",
3110
- "expected_hex": "0014"
3111
- },
3112
- {
3113
- "test_json": 20,
3114
- "canonical_json": "TrustSet",
3115
- "type_id": 1,
3116
- "type_specialisation_field": "TransactionType",
3117
- "type": "UInt16",
3118
- "expected_hex": "0014"
3119
- },
3120
- {
3121
- "test_json": "EnableAmendment",
3122
- "type_id": 1,
3123
- "type_specialisation_field": "TransactionType",
3124
- "type": "UInt16",
3125
- "expected_hex": "0064"
3126
- },
3127
- {
3128
- "test_json": 100,
3129
- "canonical_json": "EnableAmendment",
3130
- "type_id": 1,
3131
- "type_specialisation_field": "TransactionType",
3132
- "type": "UInt16",
3133
- "expected_hex": "0064"
3134
- },
3135
- {
3136
- "test_json": "SetFee",
3137
- "type_id": 1,
3138
- "type_specialisation_field": "TransactionType",
3139
- "type": "UInt16",
3140
- "expected_hex": "0065"
3141
- },
3142
- {
3143
- "test_json": 101,
3144
- "canonical_json": "SetFee",
3145
- "type_id": 1,
3146
- "type_specialisation_field": "TransactionType",
3147
- "type": "UInt16",
3148
- "expected_hex": "0065"
3149
- },
3150
- {
3151
- "test_json": "AccountRoot",
3152
- "type_id": 1,
3153
- "type_specialisation_field": "LedgerEntryType",
3154
- "type": "UInt16",
3155
- "expected_hex": "0061"
3156
- },
3157
- {
3158
- "test_json": 97,
3159
- "canonical_json": "AccountRoot",
3160
- "type_id": 1,
3161
- "type_specialisation_field": "LedgerEntryType",
3162
- "type": "UInt16",
3163
- "expected_hex": "0061"
3164
- },
3165
- {
3166
- "test_json": "DirectoryNode",
3167
- "type_id": 1,
3168
- "type_specialisation_field": "LedgerEntryType",
3169
- "type": "UInt16",
3170
- "expected_hex": "0064"
3171
- },
3172
- {
3173
- "test_json": 100,
3174
- "canonical_json": "DirectoryNode",
3175
- "type_id": 1,
3176
- "type_specialisation_field": "LedgerEntryType",
3177
- "type": "UInt16",
3178
- "expected_hex": "0064"
3179
- },
3180
- {
3181
- "test_json": "GeneratorMap",
3182
- "type_id": 1,
3183
- "type_specialisation_field": "LedgerEntryType",
3184
- "type": "UInt16",
3185
- "expected_hex": "0067"
3186
- },
3187
- {
3188
- "test_json": 103,
3189
- "canonical_json": "GeneratorMap",
3190
- "type_id": 1,
3191
- "type_specialisation_field": "LedgerEntryType",
3192
- "type": "UInt16",
3193
- "expected_hex": "0067"
3194
- },
3195
- {
3196
- "test_json": "RippleState",
3197
- "type_id": 1,
3198
- "type_specialisation_field": "LedgerEntryType",
3199
- "type": "UInt16",
3200
- "expected_hex": "0072"
3201
- },
3202
- {
3203
- "test_json": 114,
3204
- "canonical_json": "RippleState",
3205
- "type_id": 1,
3206
- "type_specialisation_field": "LedgerEntryType",
3207
- "type": "UInt16",
3208
- "expected_hex": "0072"
3209
- },
3210
- {
3211
- "test_json": "Offer",
3212
- "type_id": 1,
3213
- "type_specialisation_field": "LedgerEntryType",
3214
- "type": "UInt16",
3215
- "expected_hex": "006F"
3216
- },
3217
- {
3218
- "test_json": 111,
3219
- "canonical_json": "Offer",
3220
- "type_id": 1,
3221
- "type_specialisation_field": "LedgerEntryType",
3222
- "type": "UInt16",
3223
- "expected_hex": "006F"
3224
- },
3225
- {
3226
- "test_json": "Contract",
3227
- "type_id": 1,
3228
- "type_specialisation_field": "LedgerEntryType",
3229
- "type": "UInt16",
3230
- "expected_hex": "0063"
3231
- },
3232
- {
3233
- "test_json": 99,
3234
- "canonical_json": "Contract",
3235
- "type_id": 1,
3236
- "type_specialisation_field": "LedgerEntryType",
3237
- "type": "UInt16",
3238
- "expected_hex": "0063"
3239
- },
3240
- {
3241
- "test_json": "LedgerHashes",
3242
- "type_id": 1,
3243
- "type_specialisation_field": "LedgerEntryType",
3244
- "type": "UInt16",
3245
- "expected_hex": "0068"
3246
- },
3247
- {
3248
- "test_json": 104,
3249
- "canonical_json": "LedgerHashes",
3250
- "type_id": 1,
3251
- "type_specialisation_field": "LedgerEntryType",
3252
- "type": "UInt16",
3253
- "expected_hex": "0068"
3254
- },
3255
- {
3256
- "test_json": "EnabledAmendments",
3257
- "type_id": 1,
3258
- "type_specialisation_field": "LedgerEntryType",
3259
- "type": "UInt16",
3260
- "expected_hex": "0066"
3261
- },
3262
- {
3263
- "test_json": 102,
3264
- "canonical_json": "EnabledAmendments",
3265
- "type_id": 1,
3266
- "type_specialisation_field": "LedgerEntryType",
3267
- "type": "UInt16",
3268
- "expected_hex": "0066"
3269
- },
3270
- {
3271
- "test_json": "FeeSettings",
3272
- "type_id": 1,
3273
- "type_specialisation_field": "LedgerEntryType",
3274
- "type": "UInt16",
3275
- "expected_hex": "0073"
3276
- },
3277
- {
3278
- "test_json": 115,
3279
- "canonical_json": "FeeSettings",
3280
- "type_id": 1,
3281
- "type_specialisation_field": "LedgerEntryType",
3282
- "type": "UInt16",
3283
- "expected_hex": "0073"
3284
- },
3285
- {
3286
- "test_json": "Ticket",
3287
- "type_id": 1,
3288
- "type_specialisation_field": "LedgerEntryType",
3289
- "type": "UInt16",
3290
- "expected_hex": "0054"
3291
- },
3292
- {
3293
- "test_json": 84,
3294
- "canonical_json": "Ticket",
3295
- "type_id": 1,
3296
- "type_specialisation_field": "LedgerEntryType",
3297
- "type": "UInt16",
3298
- "expected_hex": "0054"
3299
- },
3300
- {
3301
- "test_json": "tesSUCCESS",
3302
- "type_id": 16,
3303
- "type_specialisation_field": "TransactionResult",
3304
- "type": "UInt8",
3305
- "expected_hex": "00"
3306
- },
3307
- {
3308
- "test_json": 0,
3309
- "canonical_json": "tesSUCCESS",
3310
- "type_id": 16,
3311
- "type_specialisation_field": "TransactionResult",
3312
- "type": "UInt8",
3313
- "expected_hex": "00"
3314
- },
3315
- {
3316
- "test_json": "tecCLAIM",
3317
- "type_id": 16,
3318
- "type_specialisation_field": "TransactionResult",
3319
- "type": "UInt8",
3320
- "expected_hex": "64"
3321
- },
3322
- {
3323
- "test_json": 100,
3324
- "canonical_json": "tecCLAIM",
3325
- "type_id": 16,
3326
- "type_specialisation_field": "TransactionResult",
3327
- "type": "UInt8",
3328
- "expected_hex": "64"
3329
- },
3330
- {
3331
- "test_json": "tecPATH_PARTIAL",
3332
- "type_id": 16,
3333
- "type_specialisation_field": "TransactionResult",
3334
- "type": "UInt8",
3335
- "expected_hex": "65"
3336
- },
3337
- {
3338
- "test_json": 101,
3339
- "canonical_json": "tecPATH_PARTIAL",
3340
- "type_id": 16,
3341
- "type_specialisation_field": "TransactionResult",
3342
- "type": "UInt8",
3343
- "expected_hex": "65"
3344
- },
3345
- {
3346
- "test_json": "tecUNFUNDED_ADD",
3347
- "type_id": 16,
3348
- "type_specialisation_field": "TransactionResult",
3349
- "type": "UInt8",
3350
- "expected_hex": "66"
3351
- },
3352
- {
3353
- "test_json": 102,
3354
- "canonical_json": "tecUNFUNDED_ADD",
3355
- "type_id": 16,
3356
- "type_specialisation_field": "TransactionResult",
3357
- "type": "UInt8",
3358
- "expected_hex": "66"
3359
- },
3360
- {
3361
- "test_json": "tecUNFUNDED_OFFER",
3362
- "type_id": 16,
3363
- "type_specialisation_field": "TransactionResult",
3364
- "type": "UInt8",
3365
- "expected_hex": "67"
3366
- },
3367
- {
3368
- "test_json": 103,
3369
- "canonical_json": "tecUNFUNDED_OFFER",
3370
- "type_id": 16,
3371
- "type_specialisation_field": "TransactionResult",
3372
- "type": "UInt8",
3373
- "expected_hex": "67"
3374
- },
3375
- {
3376
- "test_json": "tecUNFUNDED_PAYMENT",
3377
- "type_id": 16,
3378
- "type_specialisation_field": "TransactionResult",
3379
- "type": "UInt8",
3380
- "expected_hex": "68"
3381
- },
3382
- {
3383
- "test_json": 104,
3384
- "canonical_json": "tecUNFUNDED_PAYMENT",
3385
- "type_id": 16,
3386
- "type_specialisation_field": "TransactionResult",
3387
- "type": "UInt8",
3388
- "expected_hex": "68"
3389
- },
3390
- {
3391
- "test_json": "tecFAILED_PROCESSING",
3392
- "type_id": 16,
3393
- "type_specialisation_field": "TransactionResult",
3394
- "type": "UInt8",
3395
- "expected_hex": "69"
3396
- },
3397
- {
3398
- "test_json": 105,
3399
- "canonical_json": "tecFAILED_PROCESSING",
3400
- "type_id": 16,
3401
- "type_specialisation_field": "TransactionResult",
3402
- "type": "UInt8",
3403
- "expected_hex": "69"
3404
- },
3405
- {
3406
- "test_json": "tecDIR_FULL",
3407
- "type_id": 16,
3408
- "type_specialisation_field": "TransactionResult",
3409
- "type": "UInt8",
3410
- "expected_hex": "79"
3411
- },
3412
- {
3413
- "test_json": 121,
3414
- "canonical_json": "tecDIR_FULL",
3415
- "type_id": 16,
3416
- "type_specialisation_field": "TransactionResult",
3417
- "type": "UInt8",
3418
- "expected_hex": "79"
3419
- },
3420
- {
3421
- "test_json": "tecINSUF_RESERVE_LINE",
3422
- "type_id": 16,
3423
- "type_specialisation_field": "TransactionResult",
3424
- "type": "UInt8",
3425
- "expected_hex": "7A"
3426
- },
3427
- {
3428
- "test_json": 122,
3429
- "canonical_json": "tecINSUF_RESERVE_LINE",
3430
- "type_id": 16,
3431
- "type_specialisation_field": "TransactionResult",
3432
- "type": "UInt8",
3433
- "expected_hex": "7A"
3434
- },
3435
- {
3436
- "test_json": "tecINSUF_RESERVE_OFFER",
3437
- "type_id": 16,
3438
- "type_specialisation_field": "TransactionResult",
3439
- "type": "UInt8",
3440
- "expected_hex": "7B"
3441
- },
3442
- {
3443
- "test_json": 123,
3444
- "canonical_json": "tecINSUF_RESERVE_OFFER",
3445
- "type_id": 16,
3446
- "type_specialisation_field": "TransactionResult",
3447
- "type": "UInt8",
3448
- "expected_hex": "7B"
3449
- },
3450
- {
3451
- "test_json": "tecNO_DST",
3452
- "type_id": 16,
3453
- "type_specialisation_field": "TransactionResult",
3454
- "type": "UInt8",
3455
- "expected_hex": "7C"
3456
- },
3457
- {
3458
- "test_json": 124,
3459
- "canonical_json": "tecNO_DST",
3460
- "type_id": 16,
3461
- "type_specialisation_field": "TransactionResult",
3462
- "type": "UInt8",
3463
- "expected_hex": "7C"
3464
- },
3465
- {
3466
- "test_json": "tecNO_DST_INSUF_XRP",
3467
- "type_id": 16,
3468
- "type_specialisation_field": "TransactionResult",
3469
- "type": "UInt8",
3470
- "expected_hex": "7D"
3471
- },
3472
- {
3473
- "test_json": 125,
3474
- "canonical_json": "tecNO_DST_INSUF_XRP",
3475
- "type_id": 16,
3476
- "type_specialisation_field": "TransactionResult",
3477
- "type": "UInt8",
3478
- "expected_hex": "7D"
3479
- },
3480
- {
3481
- "test_json": "tecNO_LINE_INSUF_RESERVE",
3482
- "type_id": 16,
3483
- "type_specialisation_field": "TransactionResult",
3484
- "type": "UInt8",
3485
- "expected_hex": "7E"
3486
- },
3487
- {
3488
- "test_json": 126,
3489
- "canonical_json": "tecNO_LINE_INSUF_RESERVE",
3490
- "type_id": 16,
3491
- "type_specialisation_field": "TransactionResult",
3492
- "type": "UInt8",
3493
- "expected_hex": "7E"
3494
- },
3495
- {
3496
- "test_json": "tecNO_LINE_REDUNDANT",
3497
- "type_id": 16,
3498
- "type_specialisation_field": "TransactionResult",
3499
- "type": "UInt8",
3500
- "expected_hex": "7F"
3501
- },
3502
- {
3503
- "test_json": 127,
3504
- "canonical_json": "tecNO_LINE_REDUNDANT",
3505
- "type_id": 16,
3506
- "type_specialisation_field": "TransactionResult",
3507
- "type": "UInt8",
3508
- "expected_hex": "7F"
3509
- },
3510
- {
3511
- "test_json": "tecPATH_DRY",
3512
- "type_id": 16,
3513
- "type_specialisation_field": "TransactionResult",
3514
- "type": "UInt8",
3515
- "expected_hex": "80"
3516
- },
3517
- {
3518
- "test_json": 128,
3519
- "canonical_json": "tecPATH_DRY",
3520
- "type_id": 16,
3521
- "type_specialisation_field": "TransactionResult",
3522
- "type": "UInt8",
3523
- "expected_hex": "80"
3524
- },
3525
- {
3526
- "test_json": "tecUNFUNDED",
3527
- "type_id": 16,
3528
- "type_specialisation_field": "TransactionResult",
3529
- "type": "UInt8",
3530
- "expected_hex": "81"
3531
- },
3532
- {
3533
- "test_json": 129,
3534
- "canonical_json": "tecUNFUNDED",
3535
- "type_id": 16,
3536
- "type_specialisation_field": "TransactionResult",
3537
- "type": "UInt8",
3538
- "expected_hex": "81"
3539
- },
3540
- {
3541
- "test_json": "tecMASTER_DISABLED",
3542
- "type_id": 16,
3543
- "type_specialisation_field": "TransactionResult",
3544
- "type": "UInt8",
3545
- "expected_hex": "82"
3546
- },
3547
- {
3548
- "test_json": 130,
3549
- "canonical_json": "tecMASTER_DISABLED",
3550
- "type_id": 16,
3551
- "type_specialisation_field": "TransactionResult",
3552
- "type": "UInt8",
3553
- "expected_hex": "82"
3554
- },
3555
- {
3556
- "test_json": "tecNO_REGULAR_KEY",
3557
- "type_id": 16,
3558
- "type_specialisation_field": "TransactionResult",
3559
- "type": "UInt8",
3560
- "expected_hex": "83"
3561
- },
3562
- {
3563
- "test_json": 131,
3564
- "canonical_json": "tecNO_REGULAR_KEY",
3565
- "type_id": 16,
3566
- "type_specialisation_field": "TransactionResult",
3567
- "type": "UInt8",
3568
- "expected_hex": "83"
3569
- },
3570
- {
3571
- "test_json": "tecOWNERS",
3572
- "type_id": 16,
3573
- "type_specialisation_field": "TransactionResult",
3574
- "type": "UInt8",
3575
- "expected_hex": "84"
3576
- },
3577
- {
3578
- "test_json": 132,
3579
- "canonical_json": "tecOWNERS",
3580
- "type_id": 16,
3581
- "type_specialisation_field": "TransactionResult",
3582
- "type": "UInt8",
3583
- "expected_hex": "84"
3584
- },
3585
- {
3586
- "test_json": "tecNO_ISSUER",
3587
- "type_id": 16,
3588
- "type_specialisation_field": "TransactionResult",
3589
- "type": "UInt8",
3590
- "expected_hex": "85"
3591
- },
3592
- {
3593
- "test_json": 133,
3594
- "canonical_json": "tecNO_ISSUER",
3595
- "type_id": 16,
3596
- "type_specialisation_field": "TransactionResult",
3597
- "type": "UInt8",
3598
- "expected_hex": "85"
3599
- },
3600
- {
3601
- "test_json": "tecNO_AUTH",
3602
- "type_id": 16,
3603
- "type_specialisation_field": "TransactionResult",
3604
- "type": "UInt8",
3605
- "expected_hex": "86"
3606
- },
3607
- {
3608
- "test_json": 134,
3609
- "canonical_json": "tecNO_AUTH",
3610
- "type_id": 16,
3611
- "type_specialisation_field": "TransactionResult",
3612
- "type": "UInt8",
3613
- "expected_hex": "86"
3614
- },
3615
- {
3616
- "test_json": "tecNO_LINE",
3617
- "type_id": 16,
3618
- "type_specialisation_field": "TransactionResult",
3619
- "type": "UInt8",
3620
- "expected_hex": "87"
3621
- },
3622
- {
3623
- "test_json": 135,
3624
- "canonical_json": "tecNO_LINE",
3625
- "type_id": 16,
3626
- "type_specialisation_field": "TransactionResult",
3627
- "type": "UInt8",
3628
- "expected_hex": "87"
3629
- },
3630
- {
3631
- "test_json": "tecINSUFF_FEE",
3632
- "type_id": 16,
3633
- "type_specialisation_field": "TransactionResult",
3634
- "type": "UInt8",
3635
- "expected_hex": "88"
3636
- },
3637
- {
3638
- "test_json": 136,
3639
- "canonical_json": "tecINSUFF_FEE",
3640
- "type_id": 16,
3641
- "type_specialisation_field": "TransactionResult",
3642
- "type": "UInt8",
3643
- "expected_hex": "88"
3644
- },
3645
- {
3646
- "test_json": "tecFROZEN",
3647
- "type_id": 16,
3648
- "type_specialisation_field": "TransactionResult",
3649
- "type": "UInt8",
3650
- "expected_hex": "89"
3651
- },
3652
- {
3653
- "test_json": 137,
3654
- "canonical_json": "tecFROZEN",
3655
- "type_id": 16,
3656
- "type_specialisation_field": "TransactionResult",
3657
- "type": "UInt8",
3658
- "expected_hex": "89"
3659
- },
3660
- {
3661
- "test_json": "tecNO_TARGET",
3662
- "type_id": 16,
3663
- "type_specialisation_field": "TransactionResult",
3664
- "type": "UInt8",
3665
- "expected_hex": "8A"
3666
- },
3667
- {
3668
- "test_json": 138,
3669
- "canonical_json": "tecNO_TARGET",
3670
- "type_id": 16,
3671
- "type_specialisation_field": "TransactionResult",
3672
- "type": "UInt8",
3673
- "expected_hex": "8A"
3674
- },
3675
- {
3676
- "test_json": "tecNO_PERMISSION",
3677
- "type_id": 16,
3678
- "type_specialisation_field": "TransactionResult",
3679
- "type": "UInt8",
3680
- "expected_hex": "8B"
3681
- },
3682
- {
3683
- "test_json": 139,
3684
- "canonical_json": "tecNO_PERMISSION",
3685
- "type_id": 16,
3686
- "type_specialisation_field": "TransactionResult",
3687
- "type": "UInt8",
3688
- "expected_hex": "8B"
3689
- },
3690
- {
3691
- "test_json": "tecNO_ENTRY",
3692
- "type_id": 16,
3693
- "type_specialisation_field": "TransactionResult",
3694
- "type": "UInt8",
3695
- "expected_hex": "8C"
3696
- },
3697
- {
3698
- "test_json": 140,
3699
- "canonical_json": "tecNO_ENTRY",
3700
- "type_id": 16,
3701
- "type_specialisation_field": "TransactionResult",
3702
- "type": "UInt8",
3703
- "expected_hex": "8C"
3704
- },
3705
- {
3706
- "test_json": "tecINSUFFICIENT_RESERVE",
3707
- "type_id": 16,
3708
- "type_specialisation_field": "TransactionResult",
3709
- "type": "UInt8",
3710
- "expected_hex": "8D"
3711
- },
3712
- {
3713
- "test_json": 141,
3714
- "canonical_json": "tecINSUFFICIENT_RESERVE",
3715
- "type_id": 16,
3716
- "type_specialisation_field": "TransactionResult",
3717
- "type": "UInt8",
3718
- "expected_hex": "8D"
3719
- }
3720
- ]
3721
- }