xrpl-ruby 0.2.4 → 0.5.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 (35) hide show
  1. checksums.yaml +4 -4
  2. data/lib/address-codec/address_codec.rb +21 -4
  3. data/lib/address-codec/codec.rb +15 -2
  4. data/lib/address-codec/xrp_codec.rb +29 -2
  5. data/lib/binary-codec/binary_codec.rb +46 -22
  6. data/lib/binary-codec/enums/definitions.json +592 -1
  7. data/lib/binary-codec/enums/definitions.rb +17 -5
  8. data/lib/binary-codec/enums/fields.rb +2 -0
  9. data/lib/binary-codec/serdes/binary_parser.rb +38 -0
  10. data/lib/binary-codec/serdes/binary_serializer.rb +18 -7
  11. data/lib/binary-codec/serdes/bytes_list.rb +11 -0
  12. data/lib/binary-codec/types/account_id.rb +18 -37
  13. data/lib/binary-codec/types/amount.rb +43 -23
  14. data/lib/binary-codec/types/blob.rb +14 -5
  15. data/lib/binary-codec/types/currency.rb +15 -4
  16. data/lib/binary-codec/types/hash.rb +37 -36
  17. data/lib/binary-codec/types/issue.rb +50 -0
  18. data/lib/binary-codec/types/path_set.rb +93 -0
  19. data/lib/binary-codec/types/serialized_type.rb +52 -28
  20. data/lib/binary-codec/types/st_array.rb +71 -0
  21. data/lib/binary-codec/types/st_object.rb +100 -3
  22. data/lib/binary-codec/types/uint.rb +116 -3
  23. data/lib/binary-codec/types/vector256.rb +53 -0
  24. data/lib/binary-codec/types/xchain_bridge.rb +47 -0
  25. data/lib/binary-codec/utilities.rb +18 -0
  26. data/lib/core/base_58_xrp.rb +2 -0
  27. data/lib/core/base_x.rb +10 -0
  28. data/lib/core/core.rb +44 -6
  29. data/lib/core/utilities.rb +38 -0
  30. data/lib/key-pairs/ed25519.rb +64 -0
  31. data/lib/key-pairs/key_pairs.rb +92 -0
  32. data/lib/key-pairs/secp256k1.rb +116 -0
  33. data/lib/wallet/wallet.rb +117 -0
  34. data/lib/xrpl-ruby.rb +25 -1
  35. metadata +26 -2
@@ -180,6 +180,16 @@
180
180
  "type": "UInt16"
181
181
  }
182
182
  ],
183
+ [
184
+ "ManagementFeeRate",
185
+ {
186
+ "isSerialized": true,
187
+ "isSigningField": true,
188
+ "isVLEncoded": false,
189
+ "nth": 22,
190
+ "type": "UInt16"
191
+ }
192
+ ],
183
193
  [
184
194
  "NetworkID",
185
195
  {
@@ -670,6 +680,176 @@
670
680
  "type": "UInt32"
671
681
  }
672
682
  ],
683
+ [
684
+ "PermissionValue",
685
+ {
686
+ "isSerialized": true,
687
+ "isSigningField": true,
688
+ "isVLEncoded": false,
689
+ "nth": 52,
690
+ "type": "UInt32"
691
+ }
692
+ ],
693
+ [
694
+ "MutableFlags",
695
+ {
696
+ "isSerialized": true,
697
+ "isSigningField": true,
698
+ "isVLEncoded": false,
699
+ "nth": 53,
700
+ "type": "UInt32"
701
+ }
702
+ ],
703
+ [
704
+ "StartDate",
705
+ {
706
+ "isSerialized": true,
707
+ "isSigningField": true,
708
+ "isVLEncoded": false,
709
+ "nth": 54,
710
+ "type": "UInt32"
711
+ }
712
+ ],
713
+ [
714
+ "PaymentInterval",
715
+ {
716
+ "isSerialized": true,
717
+ "isSigningField": true,
718
+ "isVLEncoded": false,
719
+ "nth": 55,
720
+ "type": "UInt32"
721
+ }
722
+ ],
723
+ [
724
+ "GracePeriod",
725
+ {
726
+ "isSerialized": true,
727
+ "isSigningField": true,
728
+ "isVLEncoded": false,
729
+ "nth": 56,
730
+ "type": "UInt32"
731
+ }
732
+ ],
733
+ [
734
+ "PreviousPaymentDueDate",
735
+ {
736
+ "isSerialized": true,
737
+ "isSigningField": true,
738
+ "isVLEncoded": false,
739
+ "nth": 57,
740
+ "type": "UInt32"
741
+ }
742
+ ],
743
+ [
744
+ "NextPaymentDueDate",
745
+ {
746
+ "isSerialized": true,
747
+ "isSigningField": true,
748
+ "isVLEncoded": false,
749
+ "nth": 58,
750
+ "type": "UInt32"
751
+ }
752
+ ],
753
+ [
754
+ "PaymentRemaining",
755
+ {
756
+ "isSerialized": true,
757
+ "isSigningField": true,
758
+ "isVLEncoded": false,
759
+ "nth": 59,
760
+ "type": "UInt32"
761
+ }
762
+ ],
763
+ [
764
+ "PaymentTotal",
765
+ {
766
+ "isSerialized": true,
767
+ "isSigningField": true,
768
+ "isVLEncoded": false,
769
+ "nth": 60,
770
+ "type": "UInt32"
771
+ }
772
+ ],
773
+ [
774
+ "LoanSequence",
775
+ {
776
+ "isSerialized": true,
777
+ "isSigningField": true,
778
+ "isVLEncoded": false,
779
+ "nth": 61,
780
+ "type": "UInt32"
781
+ }
782
+ ],
783
+ [
784
+ "CoverRateMinimum",
785
+ {
786
+ "isSerialized": true,
787
+ "isSigningField": true,
788
+ "isVLEncoded": false,
789
+ "nth": 62,
790
+ "type": "UInt32"
791
+ }
792
+ ],
793
+ [
794
+ "CoverRateLiquidation",
795
+ {
796
+ "isSerialized": true,
797
+ "isSigningField": true,
798
+ "isVLEncoded": false,
799
+ "nth": 63,
800
+ "type": "UInt32"
801
+ }
802
+ ],
803
+ [
804
+ "OverpaymentFee",
805
+ {
806
+ "isSerialized": true,
807
+ "isSigningField": true,
808
+ "isVLEncoded": false,
809
+ "nth": 64,
810
+ "type": "UInt32"
811
+ }
812
+ ],
813
+ [
814
+ "InterestRate",
815
+ {
816
+ "isSerialized": true,
817
+ "isSigningField": true,
818
+ "isVLEncoded": false,
819
+ "nth": 65,
820
+ "type": "UInt32"
821
+ }
822
+ ],
823
+ [
824
+ "LateInterestRate",
825
+ {
826
+ "isSerialized": true,
827
+ "isSigningField": true,
828
+ "isVLEncoded": false,
829
+ "nth": 66,
830
+ "type": "UInt32"
831
+ }
832
+ ],
833
+ [
834
+ "CloseInterestRate",
835
+ {
836
+ "isSerialized": true,
837
+ "isSigningField": true,
838
+ "isVLEncoded": false,
839
+ "nth": 67,
840
+ "type": "UInt32"
841
+ }
842
+ ],
843
+ [
844
+ "OverpaymentInterestRate",
845
+ {
846
+ "isSerialized": true,
847
+ "isSigningField": true,
848
+ "isVLEncoded": false,
849
+ "nth": 68,
850
+ "type": "UInt32"
851
+ }
852
+ ],
673
853
  [
674
854
  "IndexNext",
675
855
  {
@@ -930,6 +1110,36 @@
930
1110
  "type": "UInt64"
931
1111
  }
932
1112
  ],
1113
+ [
1114
+ "LockedAmount",
1115
+ {
1116
+ "isSerialized": true,
1117
+ "isSigningField": true,
1118
+ "isVLEncoded": false,
1119
+ "nth": 29,
1120
+ "type": "UInt64"
1121
+ }
1122
+ ],
1123
+ [
1124
+ "VaultNode",
1125
+ {
1126
+ "isSerialized": true,
1127
+ "isSigningField": true,
1128
+ "isVLEncoded": false,
1129
+ "nth": 30,
1130
+ "type": "UInt64"
1131
+ }
1132
+ ],
1133
+ [
1134
+ "LoanBrokerNode",
1135
+ {
1136
+ "isSerialized": true,
1137
+ "isSigningField": true,
1138
+ "isVLEncoded": false,
1139
+ "nth": 31,
1140
+ "type": "UInt64"
1141
+ }
1142
+ ],
933
1143
  [
934
1144
  "EmailHash",
935
1145
  {
@@ -1260,6 +1470,46 @@
1260
1470
  "type": "Hash256"
1261
1471
  }
1262
1472
  ],
1473
+ [
1474
+ "VaultID",
1475
+ {
1476
+ "isSerialized": true,
1477
+ "isSigningField": true,
1478
+ "isVLEncoded": false,
1479
+ "nth": 35,
1480
+ "type": "Hash256"
1481
+ }
1482
+ ],
1483
+ [
1484
+ "ParentBatchID",
1485
+ {
1486
+ "isSerialized": true,
1487
+ "isSigningField": true,
1488
+ "isVLEncoded": false,
1489
+ "nth": 36,
1490
+ "type": "Hash256"
1491
+ }
1492
+ ],
1493
+ [
1494
+ "LoanBrokerID",
1495
+ {
1496
+ "isSerialized": true,
1497
+ "isSigningField": true,
1498
+ "isVLEncoded": false,
1499
+ "nth": 37,
1500
+ "type": "Hash256"
1501
+ }
1502
+ ],
1503
+ [
1504
+ "LoanID",
1505
+ {
1506
+ "isSerialized": true,
1507
+ "isSigningField": true,
1508
+ "isVLEncoded": false,
1509
+ "nth": 38,
1510
+ "type": "Hash256"
1511
+ }
1512
+ ],
1263
1513
  [
1264
1514
  "hash",
1265
1515
  {
@@ -1950,6 +2200,16 @@
1950
2200
  "type": "AccountID"
1951
2201
  }
1952
2202
  ],
2203
+ [
2204
+ "Delegate",
2205
+ {
2206
+ "isSerialized": true,
2207
+ "isSigningField": true,
2208
+ "isVLEncoded": true,
2209
+ "nth": 12,
2210
+ "type": "AccountID"
2211
+ }
2212
+ ],
1953
2213
  [
1954
2214
  "HookAccount",
1955
2215
  {
@@ -2030,6 +2290,26 @@
2030
2290
  "type": "AccountID"
2031
2291
  }
2032
2292
  ],
2293
+ [
2294
+ "Borrower",
2295
+ {
2296
+ "isSerialized": true,
2297
+ "isSigningField": true,
2298
+ "isVLEncoded": true,
2299
+ "nth": 25,
2300
+ "type": "AccountID"
2301
+ }
2302
+ ],
2303
+ [
2304
+ "Counterparty",
2305
+ {
2306
+ "isSerialized": true,
2307
+ "isSigningField": true,
2308
+ "isVLEncoded": true,
2309
+ "nth": 26,
2310
+ "type": "AccountID"
2311
+ }
2312
+ ],
2033
2313
  [
2034
2314
  "Number",
2035
2315
  {
@@ -2040,6 +2320,176 @@
2040
2320
  "type": "Number"
2041
2321
  }
2042
2322
  ],
2323
+ [
2324
+ "AssetsAvailable",
2325
+ {
2326
+ "isSerialized": true,
2327
+ "isSigningField": true,
2328
+ "isVLEncoded": false,
2329
+ "nth": 2,
2330
+ "type": "Number"
2331
+ }
2332
+ ],
2333
+ [
2334
+ "AssetsMaximum",
2335
+ {
2336
+ "isSerialized": true,
2337
+ "isSigningField": true,
2338
+ "isVLEncoded": false,
2339
+ "nth": 3,
2340
+ "type": "Number"
2341
+ }
2342
+ ],
2343
+ [
2344
+ "AssetsTotal",
2345
+ {
2346
+ "isSerialized": true,
2347
+ "isSigningField": true,
2348
+ "isVLEncoded": false,
2349
+ "nth": 4,
2350
+ "type": "Number"
2351
+ }
2352
+ ],
2353
+ [
2354
+ "LossUnrealized",
2355
+ {
2356
+ "isSerialized": true,
2357
+ "isSigningField": true,
2358
+ "isVLEncoded": false,
2359
+ "nth": 5,
2360
+ "type": "Number"
2361
+ }
2362
+ ],
2363
+ [
2364
+ "DebtTotal",
2365
+ {
2366
+ "isSerialized": true,
2367
+ "isSigningField": true,
2368
+ "isVLEncoded": false,
2369
+ "nth": 6,
2370
+ "type": "Number"
2371
+ }
2372
+ ],
2373
+ [
2374
+ "DebtMaximum",
2375
+ {
2376
+ "isSerialized": true,
2377
+ "isSigningField": true,
2378
+ "isVLEncoded": false,
2379
+ "nth": 7,
2380
+ "type": "Number"
2381
+ }
2382
+ ],
2383
+ [
2384
+ "CoverAvailable",
2385
+ {
2386
+ "isSerialized": true,
2387
+ "isSigningField": true,
2388
+ "isVLEncoded": false,
2389
+ "nth": 8,
2390
+ "type": "Number"
2391
+ }
2392
+ ],
2393
+ [
2394
+ "LoanOriginationFee",
2395
+ {
2396
+ "isSerialized": true,
2397
+ "isSigningField": true,
2398
+ "isVLEncoded": false,
2399
+ "nth": 9,
2400
+ "type": "Number"
2401
+ }
2402
+ ],
2403
+ [
2404
+ "LoanServiceFee",
2405
+ {
2406
+ "isSerialized": true,
2407
+ "isSigningField": true,
2408
+ "isVLEncoded": false,
2409
+ "nth": 10,
2410
+ "type": "Number"
2411
+ }
2412
+ ],
2413
+ [
2414
+ "LatePaymentFee",
2415
+ {
2416
+ "isSerialized": true,
2417
+ "isSigningField": true,
2418
+ "isVLEncoded": false,
2419
+ "nth": 11,
2420
+ "type": "Number"
2421
+ }
2422
+ ],
2423
+ [
2424
+ "ClosePaymentFee",
2425
+ {
2426
+ "isSerialized": true,
2427
+ "isSigningField": true,
2428
+ "isVLEncoded": false,
2429
+ "nth": 12,
2430
+ "type": "Number"
2431
+ }
2432
+ ],
2433
+ [
2434
+ "PrincipalOutstanding",
2435
+ {
2436
+ "isSerialized": true,
2437
+ "isSigningField": true,
2438
+ "isVLEncoded": false,
2439
+ "nth": 13,
2440
+ "type": "Number"
2441
+ }
2442
+ ],
2443
+ [
2444
+ "PrincipalRequested",
2445
+ {
2446
+ "isSerialized": true,
2447
+ "isSigningField": true,
2448
+ "isVLEncoded": false,
2449
+ "nth": 14,
2450
+ "type": "Number"
2451
+ }
2452
+ ],
2453
+ [
2454
+ "TotalValueOutstanding",
2455
+ {
2456
+ "isSerialized": true,
2457
+ "isSigningField": true,
2458
+ "isVLEncoded": false,
2459
+ "nth": 15,
2460
+ "type": "Number"
2461
+ }
2462
+ ],
2463
+ [
2464
+ "PeriodicPayment",
2465
+ {
2466
+ "isSerialized": true,
2467
+ "isSigningField": true,
2468
+ "isVLEncoded": false,
2469
+ "nth": 16,
2470
+ "type": "Number"
2471
+ }
2472
+ ],
2473
+ [
2474
+ "ManagementFeeOutstanding",
2475
+ {
2476
+ "isSerialized": true,
2477
+ "isSigningField": true,
2478
+ "isVLEncoded": false,
2479
+ "nth": 17,
2480
+ "type": "Number"
2481
+ }
2482
+ ],
2483
+ [
2484
+ "LoanScale",
2485
+ {
2486
+ "isSerialized": true,
2487
+ "isSigningField": true,
2488
+ "isVLEncoded": false,
2489
+ "nth": 1,
2490
+ "type": "Int32"
2491
+ }
2492
+ ],
2043
2493
  [
2044
2494
  "TransactionMetaData",
2045
2495
  {
@@ -2170,6 +2620,16 @@
2170
2620
  "type": "STObject"
2171
2621
  }
2172
2622
  ],
2623
+ [
2624
+ "Permission",
2625
+ {
2626
+ "isSerialized": true,
2627
+ "isSigningField": true,
2628
+ "isVLEncoded": false,
2629
+ "nth": 15,
2630
+ "type": "STObject"
2631
+ }
2632
+ ],
2173
2633
  [
2174
2634
  "Signer",
2175
2635
  {
@@ -2340,6 +2800,46 @@
2340
2800
  "type": "STObject"
2341
2801
  }
2342
2802
  ],
2803
+ [
2804
+ "RawTransaction",
2805
+ {
2806
+ "isSerialized": true,
2807
+ "isSigningField": true,
2808
+ "isVLEncoded": false,
2809
+ "nth": 34,
2810
+ "type": "STObject"
2811
+ }
2812
+ ],
2813
+ [
2814
+ "BatchSigner",
2815
+ {
2816
+ "isSerialized": true,
2817
+ "isSigningField": true,
2818
+ "isVLEncoded": false,
2819
+ "nth": 35,
2820
+ "type": "STObject"
2821
+ }
2822
+ ],
2823
+ [
2824
+ "Book",
2825
+ {
2826
+ "isSerialized": true,
2827
+ "isSigningField": true,
2828
+ "isVLEncoded": false,
2829
+ "nth": 36,
2830
+ "type": "STObject"
2831
+ }
2832
+ ],
2833
+ [
2834
+ "CounterpartySignature",
2835
+ {
2836
+ "isSerialized": true,
2837
+ "isSigningField": false,
2838
+ "isVLEncoded": false,
2839
+ "nth": 37,
2840
+ "type": "STObject"
2841
+ }
2842
+ ],
2343
2843
  [
2344
2844
  "Signers",
2345
2845
  {
@@ -2440,6 +2940,16 @@
2440
2940
  "type": "STArray"
2441
2941
  }
2442
2942
  ],
2943
+ [
2944
+ "AdditionalBooks",
2945
+ {
2946
+ "isSerialized": true,
2947
+ "isSigningField": true,
2948
+ "isVLEncoded": false,
2949
+ "nth": 13,
2950
+ "type": "STArray"
2951
+ }
2952
+ ],
2443
2953
  [
2444
2954
  "Majorities",
2445
2955
  {
@@ -2560,6 +3070,36 @@
2560
3070
  "type": "STArray"
2561
3071
  }
2562
3072
  ],
3073
+ [
3074
+ "Permissions",
3075
+ {
3076
+ "isSerialized": true,
3077
+ "isSigningField": true,
3078
+ "isVLEncoded": false,
3079
+ "nth": 29,
3080
+ "type": "STArray"
3081
+ }
3082
+ ],
3083
+ [
3084
+ "RawTransactions",
3085
+ {
3086
+ "isSerialized": true,
3087
+ "isSigningField": true,
3088
+ "isVLEncoded": false,
3089
+ "nth": 30,
3090
+ "type": "STArray"
3091
+ }
3092
+ ],
3093
+ [
3094
+ "BatchSigners",
3095
+ {
3096
+ "isSerialized": true,
3097
+ "isSigningField": false,
3098
+ "isVLEncoded": false,
3099
+ "nth": 31,
3100
+ "type": "STArray"
3101
+ }
3102
+ ],
2563
3103
  [
2564
3104
  "CloseResolution",
2565
3105
  {
@@ -2650,6 +3190,16 @@
2650
3190
  "type": "UInt8"
2651
3191
  }
2652
3192
  ],
3193
+ [
3194
+ "WithdrawalPolicy",
3195
+ {
3196
+ "isSerialized": true,
3197
+ "isSigningField": true,
3198
+ "isVLEncoded": false,
3199
+ "nth": 20,
3200
+ "type": "UInt8"
3201
+ }
3202
+ ],
2653
3203
  [
2654
3204
  "TakerPaysCurrency",
2655
3205
  {
@@ -2760,6 +3310,16 @@
2760
3310
  "type": "Hash192"
2761
3311
  }
2762
3312
  ],
3313
+ [
3314
+ "ShareMPTID",
3315
+ {
3316
+ "isSerialized": true,
3317
+ "isSigningField": true,
3318
+ "isVLEncoded": false,
3319
+ "nth": 2,
3320
+ "type": "Hash192"
3321
+ }
3322
+ ],
2763
3323
  [
2764
3324
  "LockingChainIssue",
2765
3325
  {
@@ -2879,12 +3439,15 @@
2879
3439
  "Check": 67,
2880
3440
  "Credential": 129,
2881
3441
  "DID": 73,
3442
+ "Delegate": 131,
2882
3443
  "DepositPreauth": 112,
2883
3444
  "DirectoryNode": 100,
2884
3445
  "Escrow": 117,
2885
3446
  "FeeSettings": 115,
2886
3447
  "Invalid": -1,
2887
3448
  "LedgerHashes": 104,
3449
+ "Loan": 137,
3450
+ "LoanBroker": 136,
2888
3451
  "MPToken": 127,
2889
3452
  "MPTokenIssuance": 126,
2890
3453
  "NFTokenOffer": 55,
@@ -2897,6 +3460,7 @@
2897
3460
  "RippleState": 114,
2898
3461
  "SignerList": 83,
2899
3462
  "Ticket": 84,
3463
+ "Vault": 132,
2900
3464
  "XChainOwnedClaimID": 113,
2901
3465
  "XChainOwnedCreateAccountClaimID": 116
2902
3466
  },
@@ -2933,6 +3497,7 @@
2933
3497
  "tecINVALID_UPDATE_TIME": 188,
2934
3498
  "tecINVARIANT_FAILED": 147,
2935
3499
  "tecKILLED": 150,
3500
+ "tecLIMIT_EXCEEDED": 195,
2936
3501
  "tecLOCKED": 192,
2937
3502
  "tecMAX_SEQUENCE_REACHED": 154,
2938
3503
  "tecNEED_MASTER_KEY": 142,
@@ -2940,6 +3505,7 @@
2940
3505
  "tecNFTOKEN_OFFER_TYPE_MISMATCH": 157,
2941
3506
  "tecNO_ALTERNATIVE_KEY": 130,
2942
3507
  "tecNO_AUTH": 134,
3508
+ "tecNO_DELEGATE_PERMISSION": 198,
2943
3509
  "tecNO_DST": 124,
2944
3510
  "tecNO_DST_INSUF_XRP": 125,
2945
3511
  "tecNO_ENTRY": 140,
@@ -2956,6 +3522,8 @@
2956
3522
  "tecOWNERS": 132,
2957
3523
  "tecPATH_DRY": 128,
2958
3524
  "tecPATH_PARTIAL": 101,
3525
+ "tecPRECISION_LOSS": 197,
3526
+ "tecPSEUDO_ACCOUNT": 196,
2959
3527
  "tecTOKEN_PAIR_NOT_FOUND": 189,
2960
3528
  "tecTOO_SOON": 152,
2961
3529
  "tecUNFUNDED": 129,
@@ -2963,6 +3531,7 @@
2963
3531
  "tecUNFUNDED_AMM": 162,
2964
3532
  "tecUNFUNDED_OFFER": 103,
2965
3533
  "tecUNFUNDED_PAYMENT": 104,
3534
+ "tecWRONG_ASSET": 194,
2966
3535
  "tecXCHAIN_ACCOUNT_CREATE_PAST": 181,
2967
3536
  "tecXCHAIN_ACCOUNT_CREATE_TOO_MANY": 182,
2968
3537
  "tecXCHAIN_BAD_CLAIM_ID": 172,
@@ -3059,6 +3628,7 @@
3059
3628
  "temINVALID_ACCOUNT_ID": -268,
3060
3629
  "temINVALID_COUNT": -266,
3061
3630
  "temINVALID_FLAG": -276,
3631
+ "temINVALID_INNER_BATCH": -250,
3062
3632
  "temMALFORMED": -299,
3063
3633
  "temREDUNDANT": -275,
3064
3634
  "temRIPPLE_EMPTY": -274,
@@ -3072,12 +3642,14 @@
3072
3642
  "temXCHAIN_BRIDGE_NONDOOR_OWNER": -257,
3073
3643
  "temXCHAIN_EQUAL_DOOR_ACCOUNTS": -260,
3074
3644
 
3645
+ "terADDRESS_COLLISION": -86,
3075
3646
  "terFUNDS_SPENT": -98,
3076
3647
  "terINSUF_FEE_B": -97,
3077
3648
  "terLAST": -91,
3078
3649
  "terNO_ACCOUNT": -96,
3079
3650
  "terNO_AMM": -87,
3080
3651
  "terNO_AUTH": -95,
3652
+ "terNO_DELEGATE_PERMISSION": -85,
3081
3653
  "terNO_LINE": -94,
3082
3654
  "terNO_RIPPLE": -90,
3083
3655
  "terOWNERS": -93,
@@ -3098,6 +3670,7 @@
3098
3670
  "AMMWithdraw": 37,
3099
3671
  "AccountDelete": 21,
3100
3672
  "AccountSet": 3,
3673
+ "Batch": 71,
3101
3674
  "CheckCancel": 18,
3102
3675
  "CheckCash": 17,
3103
3676
  "CheckCreate": 16,
@@ -3107,6 +3680,7 @@
3107
3680
  "CredentialDelete": 60,
3108
3681
  "DIDDelete": 50,
3109
3682
  "DIDSet": 49,
3683
+ "DelegateSet": 64,
3110
3684
  "DepositPreauth": 19,
3111
3685
  "EnableAmendment": 100,
3112
3686
  "EscrowCancel": 4,
@@ -3114,6 +3688,15 @@
3114
3688
  "EscrowFinish": 2,
3115
3689
  "Invalid": -1,
3116
3690
  "LedgerStateFix": 53,
3691
+ "LoanBrokerCoverClawback": 78,
3692
+ "LoanBrokerCoverDeposit": 76,
3693
+ "LoanBrokerCoverWithdraw": 77,
3694
+ "LoanBrokerDelete": 75,
3695
+ "LoanBrokerSet": 74,
3696
+ "LoanDelete": 81,
3697
+ "LoanManage": 82,
3698
+ "LoanPay": 84,
3699
+ "LoanSet": 80,
3117
3700
  "MPTokenAuthorize": 57,
3118
3701
  "MPTokenIssuanceCreate": 54,
3119
3702
  "MPTokenIssuanceDestroy": 55,
@@ -3140,6 +3723,12 @@
3140
3723
  "TicketCreate": 10,
3141
3724
  "TrustSet": 20,
3142
3725
  "UNLModify": 102,
3726
+ "VaultClawback": 70,
3727
+ "VaultCreate": 65,
3728
+ "VaultDelete": 67,
3729
+ "VaultDeposit": 68,
3730
+ "VaultSet": 66,
3731
+ "VaultWithdraw": 69,
3143
3732
  "XChainAccountCreateCommit": 44,
3144
3733
  "XChainAddAccountCreateAttestation": 46,
3145
3734
  "XChainAddClaimAttestation": 45,
@@ -3159,6 +3748,8 @@
3159
3748
  "Hash160": 17,
3160
3749
  "Hash192": 21,
3161
3750
  "Hash256": 5,
3751
+ "Int32": 10,
3752
+ "Int64": 11,
3162
3753
  "Issue": 24,
3163
3754
  "LedgerEntry": 10002,
3164
3755
  "Metadata": 10004,
@@ -3180,4 +3771,4 @@
3180
3771
  "Vector256": 19,
3181
3772
  "XChainBridge": 25
3182
3773
  }
3183
- }
3774
+ }