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