@transia/ripple-binary-codec 1.4.4-alpha.0

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