ripple-binary-codec 1.4.2 → 1.4.3

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