@meterio/sumer-js 0.1.29 → 0.1.31
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.
- package/dist/browser/sumer.min.js +6 -6
- package/dist/nodejs/abi.js +538 -81
- package/dist/nodejs/abi.js.map +1 -1
- package/dist/nodejs/comptroller.d.ts +5 -1
- package/dist/nodejs/comptroller.js +1 -1
- package/dist/nodejs/comptroller.js.map +1 -1
- package/dist/nodejs/errors.d.ts +20 -0
- package/dist/nodejs/errors.js +20 -0
- package/dist/nodejs/errors.js.map +1 -1
- package/dist/nodejs/index.d.ts +20 -0
- package/dist/nodejs/typechain/contracts/CToken/CErc20.d.ts +34 -1
- package/dist/nodejs/typechain/contracts/CToken/CEther.d.ts +34 -1
- package/dist/nodejs/typechain/contracts/CToken/CToken.d.ts +34 -1
- package/dist/nodejs/typechain/contracts/CToken/CTokenStorage.d.ts +34 -1
- package/dist/nodejs/typechain/contracts/CToken/SuErc20.d.ts +34 -1
- package/dist/nodejs/typechain/contracts/Comptroller/Comptroller.d.ts +1 -34
- package/dist/nodejs/typechain/contracts/Comptroller/RedemptionManager.d.ts +54 -18
- package/dist/nodejs/typechain/contracts/Interfaces/ICToken.d.ts +34 -1
- package/dist/nodejs/typechain/contracts/Interfaces/IRedemptionManager.d.ts +27 -9
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.d.ts +56 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.js +69 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.d.ts +56 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.js +69 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CTokenStorage__factory.d.ts +35 -0
- package/dist/nodejs/typechain/factories/contracts/CToken/CTokenStorage__factory.js +43 -0
- package/dist/nodejs/typechain/factories/contracts/CToken/CTokenStorage__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CToken__factory.d.ts +55 -0
- package/dist/nodejs/typechain/factories/contracts/CToken/CToken__factory.js +68 -0
- package/dist/nodejs/typechain/factories/contracts/CToken/CToken__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.d.ts +56 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.js +69 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.d.ts +21 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.js +26 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.d.ts +21 -36
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js +26 -44
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.d.ts +75 -13
- package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.js +97 -14
- package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Interfaces/ICToken__factory.d.ts +35 -0
- package/dist/nodejs/typechain/factories/contracts/Interfaces/ICToken__factory.js +43 -0
- package/dist/nodejs/typechain/factories/contracts/Interfaces/ICToken__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IRedemptionManager__factory.d.ts +31 -11
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IRedemptionManager__factory.js +39 -12
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IRedemptionManager__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/SumerErrors__factory.d.ts +21 -1
- package/dist/nodejs/typechain/factories/contracts/SumerErrors__factory.js +26 -1
- package/dist/nodejs/typechain/factories/contracts/SumerErrors__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/VeSumer.sol/VeSumer__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/VeSumer.sol/VeSumer__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/VeSumer.sol/VeSumer__factory.js.map +1 -1
- package/package.json +1 -1
package/dist/nodejs/abi.js
CHANGED
|
@@ -357,11 +357,21 @@ exports.abi = {
|
|
|
357
357
|
"name": "BorrowValueMustBeLargerThanThreshold",
|
|
358
358
|
"type": "error"
|
|
359
359
|
},
|
|
360
|
+
{
|
|
361
|
+
"inputs": [],
|
|
362
|
+
"name": "CantExitMarketWithNonZeroBorrowBalance",
|
|
363
|
+
"type": "error"
|
|
364
|
+
},
|
|
360
365
|
{
|
|
361
366
|
"inputs": [],
|
|
362
367
|
"name": "CantSweepUnderlying",
|
|
363
368
|
"type": "error"
|
|
364
369
|
},
|
|
370
|
+
{
|
|
371
|
+
"inputs": [],
|
|
372
|
+
"name": "GroupIdMismatch",
|
|
373
|
+
"type": "error"
|
|
374
|
+
},
|
|
365
375
|
{
|
|
366
376
|
"inputs": [],
|
|
367
377
|
"name": "InsufficientCollateral",
|
|
@@ -382,6 +392,11 @@ exports.abi = {
|
|
|
382
392
|
"name": "InvalidAmount",
|
|
383
393
|
"type": "error"
|
|
384
394
|
},
|
|
395
|
+
{
|
|
396
|
+
"inputs": [],
|
|
397
|
+
"name": "InvalidCloseFactor",
|
|
398
|
+
"type": "error"
|
|
399
|
+
},
|
|
385
400
|
{
|
|
386
401
|
"inputs": [],
|
|
387
402
|
"name": "InvalidComptroller",
|
|
@@ -397,6 +412,11 @@ exports.abi = {
|
|
|
397
412
|
"name": "InvalidExchangeRate",
|
|
398
413
|
"type": "error"
|
|
399
414
|
},
|
|
415
|
+
{
|
|
416
|
+
"inputs": [],
|
|
417
|
+
"name": "InvalidGroupId",
|
|
418
|
+
"type": "error"
|
|
419
|
+
},
|
|
400
420
|
{
|
|
401
421
|
"inputs": [],
|
|
402
422
|
"name": "InvalidInterestRateModel",
|
|
@@ -542,6 +562,11 @@ exports.abi = {
|
|
|
542
562
|
"name": "RedeemTransferOutNotPossible",
|
|
543
563
|
"type": "error"
|
|
544
564
|
},
|
|
565
|
+
{
|
|
566
|
+
"inputs": [],
|
|
567
|
+
"name": "RedemptionSeizeTooMuch",
|
|
568
|
+
"type": "error"
|
|
569
|
+
},
|
|
545
570
|
{
|
|
546
571
|
"inputs": [],
|
|
547
572
|
"name": "ReduceReservesCashNotAvailable",
|
|
@@ -2868,11 +2893,21 @@ exports.abi = {
|
|
|
2868
2893
|
"name": "BorrowValueMustBeLargerThanThreshold",
|
|
2869
2894
|
"type": "error"
|
|
2870
2895
|
},
|
|
2896
|
+
{
|
|
2897
|
+
"inputs": [],
|
|
2898
|
+
"name": "CantExitMarketWithNonZeroBorrowBalance",
|
|
2899
|
+
"type": "error"
|
|
2900
|
+
},
|
|
2871
2901
|
{
|
|
2872
2902
|
"inputs": [],
|
|
2873
2903
|
"name": "CantSweepUnderlying",
|
|
2874
2904
|
"type": "error"
|
|
2875
2905
|
},
|
|
2906
|
+
{
|
|
2907
|
+
"inputs": [],
|
|
2908
|
+
"name": "GroupIdMismatch",
|
|
2909
|
+
"type": "error"
|
|
2910
|
+
},
|
|
2876
2911
|
{
|
|
2877
2912
|
"inputs": [],
|
|
2878
2913
|
"name": "InsufficientCollateral",
|
|
@@ -2893,6 +2928,11 @@ exports.abi = {
|
|
|
2893
2928
|
"name": "InvalidAmount",
|
|
2894
2929
|
"type": "error"
|
|
2895
2930
|
},
|
|
2931
|
+
{
|
|
2932
|
+
"inputs": [],
|
|
2933
|
+
"name": "InvalidCloseFactor",
|
|
2934
|
+
"type": "error"
|
|
2935
|
+
},
|
|
2896
2936
|
{
|
|
2897
2937
|
"inputs": [],
|
|
2898
2938
|
"name": "InvalidComptroller",
|
|
@@ -2908,6 +2948,11 @@ exports.abi = {
|
|
|
2908
2948
|
"name": "InvalidExchangeRate",
|
|
2909
2949
|
"type": "error"
|
|
2910
2950
|
},
|
|
2951
|
+
{
|
|
2952
|
+
"inputs": [],
|
|
2953
|
+
"name": "InvalidGroupId",
|
|
2954
|
+
"type": "error"
|
|
2955
|
+
},
|
|
2911
2956
|
{
|
|
2912
2957
|
"inputs": [],
|
|
2913
2958
|
"name": "InvalidInterestRateModel",
|
|
@@ -3053,6 +3098,11 @@ exports.abi = {
|
|
|
3053
3098
|
"name": "RedeemTransferOutNotPossible",
|
|
3054
3099
|
"type": "error"
|
|
3055
3100
|
},
|
|
3101
|
+
{
|
|
3102
|
+
"inputs": [],
|
|
3103
|
+
"name": "RedemptionSeizeTooMuch",
|
|
3104
|
+
"type": "error"
|
|
3105
|
+
},
|
|
3056
3106
|
{
|
|
3057
3107
|
"inputs": [],
|
|
3058
3108
|
"name": "ReduceReservesCashNotAvailable",
|
|
@@ -3434,6 +3484,49 @@ exports.abi = {
|
|
|
3434
3484
|
"name": "Redeem",
|
|
3435
3485
|
"type": "event"
|
|
3436
3486
|
},
|
|
3487
|
+
{
|
|
3488
|
+
"anonymous": false,
|
|
3489
|
+
"inputs": [
|
|
3490
|
+
{
|
|
3491
|
+
"indexed": true,
|
|
3492
|
+
"internalType": "address",
|
|
3493
|
+
"name": "redeemer",
|
|
3494
|
+
"type": "address"
|
|
3495
|
+
},
|
|
3496
|
+
{
|
|
3497
|
+
"indexed": true,
|
|
3498
|
+
"internalType": "address",
|
|
3499
|
+
"name": "provider",
|
|
3500
|
+
"type": "address"
|
|
3501
|
+
},
|
|
3502
|
+
{
|
|
3503
|
+
"indexed": false,
|
|
3504
|
+
"internalType": "uint256",
|
|
3505
|
+
"name": "repayAmount",
|
|
3506
|
+
"type": "uint256"
|
|
3507
|
+
},
|
|
3508
|
+
{
|
|
3509
|
+
"indexed": false,
|
|
3510
|
+
"internalType": "address",
|
|
3511
|
+
"name": "seizeToken",
|
|
3512
|
+
"type": "address"
|
|
3513
|
+
},
|
|
3514
|
+
{
|
|
3515
|
+
"indexed": false,
|
|
3516
|
+
"internalType": "uint256",
|
|
3517
|
+
"name": "seizeAmount",
|
|
3518
|
+
"type": "uint256"
|
|
3519
|
+
},
|
|
3520
|
+
{
|
|
3521
|
+
"indexed": false,
|
|
3522
|
+
"internalType": "uint256",
|
|
3523
|
+
"name": "redemptionRateMantissa",
|
|
3524
|
+
"type": "uint256"
|
|
3525
|
+
}
|
|
3526
|
+
],
|
|
3527
|
+
"name": "RedeemFaceValue",
|
|
3528
|
+
"type": "event"
|
|
3529
|
+
},
|
|
3437
3530
|
{
|
|
3438
3531
|
"anonymous": false,
|
|
3439
3532
|
"inputs": [
|
|
@@ -4673,11 +4766,21 @@ exports.abi = {
|
|
|
4673
4766
|
"name": "BorrowValueMustBeLargerThanThreshold",
|
|
4674
4767
|
"type": "error"
|
|
4675
4768
|
},
|
|
4769
|
+
{
|
|
4770
|
+
"inputs": [],
|
|
4771
|
+
"name": "CantExitMarketWithNonZeroBorrowBalance",
|
|
4772
|
+
"type": "error"
|
|
4773
|
+
},
|
|
4676
4774
|
{
|
|
4677
4775
|
"inputs": [],
|
|
4678
4776
|
"name": "CantSweepUnderlying",
|
|
4679
4777
|
"type": "error"
|
|
4680
4778
|
},
|
|
4779
|
+
{
|
|
4780
|
+
"inputs": [],
|
|
4781
|
+
"name": "GroupIdMismatch",
|
|
4782
|
+
"type": "error"
|
|
4783
|
+
},
|
|
4681
4784
|
{
|
|
4682
4785
|
"inputs": [],
|
|
4683
4786
|
"name": "InsufficientCollateral",
|
|
@@ -4698,6 +4801,11 @@ exports.abi = {
|
|
|
4698
4801
|
"name": "InvalidAmount",
|
|
4699
4802
|
"type": "error"
|
|
4700
4803
|
},
|
|
4804
|
+
{
|
|
4805
|
+
"inputs": [],
|
|
4806
|
+
"name": "InvalidCloseFactor",
|
|
4807
|
+
"type": "error"
|
|
4808
|
+
},
|
|
4701
4809
|
{
|
|
4702
4810
|
"inputs": [],
|
|
4703
4811
|
"name": "InvalidComptroller",
|
|
@@ -4713,6 +4821,11 @@ exports.abi = {
|
|
|
4713
4821
|
"name": "InvalidExchangeRate",
|
|
4714
4822
|
"type": "error"
|
|
4715
4823
|
},
|
|
4824
|
+
{
|
|
4825
|
+
"inputs": [],
|
|
4826
|
+
"name": "InvalidGroupId",
|
|
4827
|
+
"type": "error"
|
|
4828
|
+
},
|
|
4716
4829
|
{
|
|
4717
4830
|
"inputs": [],
|
|
4718
4831
|
"name": "InvalidInterestRateModel",
|
|
@@ -4858,6 +4971,11 @@ exports.abi = {
|
|
|
4858
4971
|
"name": "RedeemTransferOutNotPossible",
|
|
4859
4972
|
"type": "error"
|
|
4860
4973
|
},
|
|
4974
|
+
{
|
|
4975
|
+
"inputs": [],
|
|
4976
|
+
"name": "RedemptionSeizeTooMuch",
|
|
4977
|
+
"type": "error"
|
|
4978
|
+
},
|
|
4861
4979
|
{
|
|
4862
4980
|
"inputs": [],
|
|
4863
4981
|
"name": "ReduceReservesCashNotAvailable",
|
|
@@ -5239,6 +5357,49 @@ exports.abi = {
|
|
|
5239
5357
|
"name": "Redeem",
|
|
5240
5358
|
"type": "event"
|
|
5241
5359
|
},
|
|
5360
|
+
{
|
|
5361
|
+
"anonymous": false,
|
|
5362
|
+
"inputs": [
|
|
5363
|
+
{
|
|
5364
|
+
"indexed": true,
|
|
5365
|
+
"internalType": "address",
|
|
5366
|
+
"name": "redeemer",
|
|
5367
|
+
"type": "address"
|
|
5368
|
+
},
|
|
5369
|
+
{
|
|
5370
|
+
"indexed": true,
|
|
5371
|
+
"internalType": "address",
|
|
5372
|
+
"name": "provider",
|
|
5373
|
+
"type": "address"
|
|
5374
|
+
},
|
|
5375
|
+
{
|
|
5376
|
+
"indexed": false,
|
|
5377
|
+
"internalType": "uint256",
|
|
5378
|
+
"name": "repayAmount",
|
|
5379
|
+
"type": "uint256"
|
|
5380
|
+
},
|
|
5381
|
+
{
|
|
5382
|
+
"indexed": false,
|
|
5383
|
+
"internalType": "address",
|
|
5384
|
+
"name": "seizeToken",
|
|
5385
|
+
"type": "address"
|
|
5386
|
+
},
|
|
5387
|
+
{
|
|
5388
|
+
"indexed": false,
|
|
5389
|
+
"internalType": "uint256",
|
|
5390
|
+
"name": "seizeAmount",
|
|
5391
|
+
"type": "uint256"
|
|
5392
|
+
},
|
|
5393
|
+
{
|
|
5394
|
+
"indexed": false,
|
|
5395
|
+
"internalType": "uint256",
|
|
5396
|
+
"name": "redemptionRateMantissa",
|
|
5397
|
+
"type": "uint256"
|
|
5398
|
+
}
|
|
5399
|
+
],
|
|
5400
|
+
"name": "RedeemFaceValue",
|
|
5401
|
+
"type": "event"
|
|
5402
|
+
},
|
|
5242
5403
|
{
|
|
5243
5404
|
"anonymous": false,
|
|
5244
5405
|
"inputs": [
|
|
@@ -6354,11 +6515,21 @@ exports.abi = {
|
|
|
6354
6515
|
"name": "BorrowValueMustBeLargerThanThreshold",
|
|
6355
6516
|
"type": "error"
|
|
6356
6517
|
},
|
|
6518
|
+
{
|
|
6519
|
+
"inputs": [],
|
|
6520
|
+
"name": "CantExitMarketWithNonZeroBorrowBalance",
|
|
6521
|
+
"type": "error"
|
|
6522
|
+
},
|
|
6357
6523
|
{
|
|
6358
6524
|
"inputs": [],
|
|
6359
6525
|
"name": "CantSweepUnderlying",
|
|
6360
6526
|
"type": "error"
|
|
6361
6527
|
},
|
|
6528
|
+
{
|
|
6529
|
+
"inputs": [],
|
|
6530
|
+
"name": "GroupIdMismatch",
|
|
6531
|
+
"type": "error"
|
|
6532
|
+
},
|
|
6362
6533
|
{
|
|
6363
6534
|
"inputs": [],
|
|
6364
6535
|
"name": "InsufficientCollateral",
|
|
@@ -6379,6 +6550,11 @@ exports.abi = {
|
|
|
6379
6550
|
"name": "InvalidAmount",
|
|
6380
6551
|
"type": "error"
|
|
6381
6552
|
},
|
|
6553
|
+
{
|
|
6554
|
+
"inputs": [],
|
|
6555
|
+
"name": "InvalidCloseFactor",
|
|
6556
|
+
"type": "error"
|
|
6557
|
+
},
|
|
6382
6558
|
{
|
|
6383
6559
|
"inputs": [],
|
|
6384
6560
|
"name": "InvalidComptroller",
|
|
@@ -6394,6 +6570,11 @@ exports.abi = {
|
|
|
6394
6570
|
"name": "InvalidExchangeRate",
|
|
6395
6571
|
"type": "error"
|
|
6396
6572
|
},
|
|
6573
|
+
{
|
|
6574
|
+
"inputs": [],
|
|
6575
|
+
"name": "InvalidGroupId",
|
|
6576
|
+
"type": "error"
|
|
6577
|
+
},
|
|
6397
6578
|
{
|
|
6398
6579
|
"inputs": [],
|
|
6399
6580
|
"name": "InvalidInterestRateModel",
|
|
@@ -6539,6 +6720,11 @@ exports.abi = {
|
|
|
6539
6720
|
"name": "RedeemTransferOutNotPossible",
|
|
6540
6721
|
"type": "error"
|
|
6541
6722
|
},
|
|
6723
|
+
{
|
|
6724
|
+
"inputs": [],
|
|
6725
|
+
"name": "RedemptionSeizeTooMuch",
|
|
6726
|
+
"type": "error"
|
|
6727
|
+
},
|
|
6542
6728
|
{
|
|
6543
6729
|
"inputs": [],
|
|
6544
6730
|
"name": "ReduceReservesCashNotAvailable",
|
|
@@ -6907,6 +7093,49 @@ exports.abi = {
|
|
|
6907
7093
|
"name": "Redeem",
|
|
6908
7094
|
"type": "event"
|
|
6909
7095
|
},
|
|
7096
|
+
{
|
|
7097
|
+
"anonymous": false,
|
|
7098
|
+
"inputs": [
|
|
7099
|
+
{
|
|
7100
|
+
"indexed": true,
|
|
7101
|
+
"internalType": "address",
|
|
7102
|
+
"name": "redeemer",
|
|
7103
|
+
"type": "address"
|
|
7104
|
+
},
|
|
7105
|
+
{
|
|
7106
|
+
"indexed": true,
|
|
7107
|
+
"internalType": "address",
|
|
7108
|
+
"name": "provider",
|
|
7109
|
+
"type": "address"
|
|
7110
|
+
},
|
|
7111
|
+
{
|
|
7112
|
+
"indexed": false,
|
|
7113
|
+
"internalType": "uint256",
|
|
7114
|
+
"name": "repayAmount",
|
|
7115
|
+
"type": "uint256"
|
|
7116
|
+
},
|
|
7117
|
+
{
|
|
7118
|
+
"indexed": false,
|
|
7119
|
+
"internalType": "address",
|
|
7120
|
+
"name": "seizeToken",
|
|
7121
|
+
"type": "address"
|
|
7122
|
+
},
|
|
7123
|
+
{
|
|
7124
|
+
"indexed": false,
|
|
7125
|
+
"internalType": "uint256",
|
|
7126
|
+
"name": "seizeAmount",
|
|
7127
|
+
"type": "uint256"
|
|
7128
|
+
},
|
|
7129
|
+
{
|
|
7130
|
+
"indexed": false,
|
|
7131
|
+
"internalType": "uint256",
|
|
7132
|
+
"name": "redemptionRateMantissa",
|
|
7133
|
+
"type": "uint256"
|
|
7134
|
+
}
|
|
7135
|
+
],
|
|
7136
|
+
"name": "RedeemFaceValue",
|
|
7137
|
+
"type": "event"
|
|
7138
|
+
},
|
|
6910
7139
|
{
|
|
6911
7140
|
"anonymous": false,
|
|
6912
7141
|
"inputs": [
|
|
@@ -8097,6 +8326,49 @@ exports.abi = {
|
|
|
8097
8326
|
"name": "Redeem",
|
|
8098
8327
|
"type": "event"
|
|
8099
8328
|
},
|
|
8329
|
+
{
|
|
8330
|
+
"anonymous": false,
|
|
8331
|
+
"inputs": [
|
|
8332
|
+
{
|
|
8333
|
+
"indexed": true,
|
|
8334
|
+
"internalType": "address",
|
|
8335
|
+
"name": "redeemer",
|
|
8336
|
+
"type": "address"
|
|
8337
|
+
},
|
|
8338
|
+
{
|
|
8339
|
+
"indexed": true,
|
|
8340
|
+
"internalType": "address",
|
|
8341
|
+
"name": "provider",
|
|
8342
|
+
"type": "address"
|
|
8343
|
+
},
|
|
8344
|
+
{
|
|
8345
|
+
"indexed": false,
|
|
8346
|
+
"internalType": "uint256",
|
|
8347
|
+
"name": "repayAmount",
|
|
8348
|
+
"type": "uint256"
|
|
8349
|
+
},
|
|
8350
|
+
{
|
|
8351
|
+
"indexed": false,
|
|
8352
|
+
"internalType": "address",
|
|
8353
|
+
"name": "seizeToken",
|
|
8354
|
+
"type": "address"
|
|
8355
|
+
},
|
|
8356
|
+
{
|
|
8357
|
+
"indexed": false,
|
|
8358
|
+
"internalType": "uint256",
|
|
8359
|
+
"name": "seizeAmount",
|
|
8360
|
+
"type": "uint256"
|
|
8361
|
+
},
|
|
8362
|
+
{
|
|
8363
|
+
"indexed": false,
|
|
8364
|
+
"internalType": "uint256",
|
|
8365
|
+
"name": "redemptionRateMantissa",
|
|
8366
|
+
"type": "uint256"
|
|
8367
|
+
}
|
|
8368
|
+
],
|
|
8369
|
+
"name": "RedeemFaceValue",
|
|
8370
|
+
"type": "event"
|
|
8371
|
+
},
|
|
8100
8372
|
{
|
|
8101
8373
|
"anonymous": false,
|
|
8102
8374
|
"inputs": [
|
|
@@ -8962,11 +9234,21 @@ exports.abi = {
|
|
|
8962
9234
|
"name": "BorrowValueMustBeLargerThanThreshold",
|
|
8963
9235
|
"type": "error"
|
|
8964
9236
|
},
|
|
9237
|
+
{
|
|
9238
|
+
"inputs": [],
|
|
9239
|
+
"name": "CantExitMarketWithNonZeroBorrowBalance",
|
|
9240
|
+
"type": "error"
|
|
9241
|
+
},
|
|
8965
9242
|
{
|
|
8966
9243
|
"inputs": [],
|
|
8967
9244
|
"name": "CantSweepUnderlying",
|
|
8968
9245
|
"type": "error"
|
|
8969
9246
|
},
|
|
9247
|
+
{
|
|
9248
|
+
"inputs": [],
|
|
9249
|
+
"name": "GroupIdMismatch",
|
|
9250
|
+
"type": "error"
|
|
9251
|
+
},
|
|
8970
9252
|
{
|
|
8971
9253
|
"inputs": [],
|
|
8972
9254
|
"name": "InsufficientCollateral",
|
|
@@ -8987,6 +9269,11 @@ exports.abi = {
|
|
|
8987
9269
|
"name": "InvalidAmount",
|
|
8988
9270
|
"type": "error"
|
|
8989
9271
|
},
|
|
9272
|
+
{
|
|
9273
|
+
"inputs": [],
|
|
9274
|
+
"name": "InvalidCloseFactor",
|
|
9275
|
+
"type": "error"
|
|
9276
|
+
},
|
|
8990
9277
|
{
|
|
8991
9278
|
"inputs": [],
|
|
8992
9279
|
"name": "InvalidComptroller",
|
|
@@ -9002,6 +9289,11 @@ exports.abi = {
|
|
|
9002
9289
|
"name": "InvalidExchangeRate",
|
|
9003
9290
|
"type": "error"
|
|
9004
9291
|
},
|
|
9292
|
+
{
|
|
9293
|
+
"inputs": [],
|
|
9294
|
+
"name": "InvalidGroupId",
|
|
9295
|
+
"type": "error"
|
|
9296
|
+
},
|
|
9005
9297
|
{
|
|
9006
9298
|
"inputs": [],
|
|
9007
9299
|
"name": "InvalidInterestRateModel",
|
|
@@ -9147,6 +9439,11 @@ exports.abi = {
|
|
|
9147
9439
|
"name": "RedeemTransferOutNotPossible",
|
|
9148
9440
|
"type": "error"
|
|
9149
9441
|
},
|
|
9442
|
+
{
|
|
9443
|
+
"inputs": [],
|
|
9444
|
+
"name": "RedemptionSeizeTooMuch",
|
|
9445
|
+
"type": "error"
|
|
9446
|
+
},
|
|
9150
9447
|
{
|
|
9151
9448
|
"inputs": [],
|
|
9152
9449
|
"name": "ReduceReservesCashNotAvailable",
|
|
@@ -9496,36 +9793,79 @@ exports.abi = {
|
|
|
9496
9793
|
{
|
|
9497
9794
|
"indexed": false,
|
|
9498
9795
|
"internalType": "uint256",
|
|
9499
|
-
"name": "newReserveFactorMantissa",
|
|
9796
|
+
"name": "newReserveFactorMantissa",
|
|
9797
|
+
"type": "uint256"
|
|
9798
|
+
}
|
|
9799
|
+
],
|
|
9800
|
+
"name": "NewReserveFactor",
|
|
9801
|
+
"type": "event"
|
|
9802
|
+
},
|
|
9803
|
+
{
|
|
9804
|
+
"anonymous": false,
|
|
9805
|
+
"inputs": [
|
|
9806
|
+
{
|
|
9807
|
+
"indexed": false,
|
|
9808
|
+
"internalType": "address",
|
|
9809
|
+
"name": "redeemer",
|
|
9810
|
+
"type": "address"
|
|
9811
|
+
},
|
|
9812
|
+
{
|
|
9813
|
+
"indexed": false,
|
|
9814
|
+
"internalType": "uint256",
|
|
9815
|
+
"name": "redeemAmount",
|
|
9816
|
+
"type": "uint256"
|
|
9817
|
+
},
|
|
9818
|
+
{
|
|
9819
|
+
"indexed": false,
|
|
9820
|
+
"internalType": "uint256",
|
|
9821
|
+
"name": "redeemTokens",
|
|
9822
|
+
"type": "uint256"
|
|
9823
|
+
}
|
|
9824
|
+
],
|
|
9825
|
+
"name": "Redeem",
|
|
9826
|
+
"type": "event"
|
|
9827
|
+
},
|
|
9828
|
+
{
|
|
9829
|
+
"anonymous": false,
|
|
9830
|
+
"inputs": [
|
|
9831
|
+
{
|
|
9832
|
+
"indexed": true,
|
|
9833
|
+
"internalType": "address",
|
|
9834
|
+
"name": "redeemer",
|
|
9835
|
+
"type": "address"
|
|
9836
|
+
},
|
|
9837
|
+
{
|
|
9838
|
+
"indexed": true,
|
|
9839
|
+
"internalType": "address",
|
|
9840
|
+
"name": "provider",
|
|
9841
|
+
"type": "address"
|
|
9842
|
+
},
|
|
9843
|
+
{
|
|
9844
|
+
"indexed": false,
|
|
9845
|
+
"internalType": "uint256",
|
|
9846
|
+
"name": "repayAmount",
|
|
9500
9847
|
"type": "uint256"
|
|
9501
|
-
}
|
|
9502
|
-
],
|
|
9503
|
-
"name": "NewReserveFactor",
|
|
9504
|
-
"type": "event"
|
|
9505
|
-
},
|
|
9506
|
-
{
|
|
9507
|
-
"anonymous": false,
|
|
9508
|
-
"inputs": [
|
|
9848
|
+
},
|
|
9509
9849
|
{
|
|
9510
9850
|
"indexed": false,
|
|
9511
9851
|
"internalType": "address",
|
|
9512
|
-
"name": "
|
|
9852
|
+
"name": "seizeToken",
|
|
9513
9853
|
"type": "address"
|
|
9514
9854
|
},
|
|
9515
9855
|
{
|
|
9516
9856
|
"indexed": false,
|
|
9517
9857
|
"internalType": "uint256",
|
|
9518
|
-
"name": "
|
|
9858
|
+
"name": "seizeAmount",
|
|
9519
9859
|
"type": "uint256"
|
|
9520
9860
|
},
|
|
9521
9861
|
{
|
|
9522
9862
|
"indexed": false,
|
|
9523
9863
|
"internalType": "uint256",
|
|
9524
|
-
"name": "
|
|
9864
|
+
"name": "redemptionRateMantissa",
|
|
9525
9865
|
"type": "uint256"
|
|
9526
9866
|
}
|
|
9527
9867
|
],
|
|
9528
|
-
"name": "
|
|
9868
|
+
"name": "RedeemFaceValue",
|
|
9529
9869
|
"type": "event"
|
|
9530
9870
|
},
|
|
9531
9871
|
{
|
|
@@ -12165,11 +12505,21 @@ exports.abi = {
|
|
|
12165
12505
|
"name": "BorrowValueMustBeLargerThanThreshold",
|
|
12166
12506
|
"type": "error"
|
|
12167
12507
|
},
|
|
12508
|
+
{
|
|
12509
|
+
"inputs": [],
|
|
12510
|
+
"name": "CantExitMarketWithNonZeroBorrowBalance",
|
|
12511
|
+
"type": "error"
|
|
12512
|
+
},
|
|
12168
12513
|
{
|
|
12169
12514
|
"inputs": [],
|
|
12170
12515
|
"name": "CantSweepUnderlying",
|
|
12171
12516
|
"type": "error"
|
|
12172
12517
|
},
|
|
12518
|
+
{
|
|
12519
|
+
"inputs": [],
|
|
12520
|
+
"name": "GroupIdMismatch",
|
|
12521
|
+
"type": "error"
|
|
12522
|
+
},
|
|
12173
12523
|
{
|
|
12174
12524
|
"inputs": [],
|
|
12175
12525
|
"name": "InsufficientCollateral",
|
|
@@ -12190,6 +12540,11 @@ exports.abi = {
|
|
|
12190
12540
|
"name": "InvalidAmount",
|
|
12191
12541
|
"type": "error"
|
|
12192
12542
|
},
|
|
12543
|
+
{
|
|
12544
|
+
"inputs": [],
|
|
12545
|
+
"name": "InvalidCloseFactor",
|
|
12546
|
+
"type": "error"
|
|
12547
|
+
},
|
|
12193
12548
|
{
|
|
12194
12549
|
"inputs": [],
|
|
12195
12550
|
"name": "InvalidComptroller",
|
|
@@ -12205,6 +12560,11 @@ exports.abi = {
|
|
|
12205
12560
|
"name": "InvalidExchangeRate",
|
|
12206
12561
|
"type": "error"
|
|
12207
12562
|
},
|
|
12563
|
+
{
|
|
12564
|
+
"inputs": [],
|
|
12565
|
+
"name": "InvalidGroupId",
|
|
12566
|
+
"type": "error"
|
|
12567
|
+
},
|
|
12208
12568
|
{
|
|
12209
12569
|
"inputs": [],
|
|
12210
12570
|
"name": "InvalidInterestRateModel",
|
|
@@ -12350,6 +12710,11 @@ exports.abi = {
|
|
|
12350
12710
|
"name": "RedeemTransferOutNotPossible",
|
|
12351
12711
|
"type": "error"
|
|
12352
12712
|
},
|
|
12713
|
+
{
|
|
12714
|
+
"inputs": [],
|
|
12715
|
+
"name": "RedemptionSeizeTooMuch",
|
|
12716
|
+
"type": "error"
|
|
12717
|
+
},
|
|
12353
12718
|
{
|
|
12354
12719
|
"inputs": [],
|
|
12355
12720
|
"name": "ReduceReservesCashNotAvailable",
|
|
@@ -13461,11 +13826,21 @@ exports.abi = {
|
|
|
13461
13826
|
"name": "BorrowValueMustBeLargerThanThreshold",
|
|
13462
13827
|
"type": "error"
|
|
13463
13828
|
},
|
|
13829
|
+
{
|
|
13830
|
+
"inputs": [],
|
|
13831
|
+
"name": "CantExitMarketWithNonZeroBorrowBalance",
|
|
13832
|
+
"type": "error"
|
|
13833
|
+
},
|
|
13464
13834
|
{
|
|
13465
13835
|
"inputs": [],
|
|
13466
13836
|
"name": "CantSweepUnderlying",
|
|
13467
13837
|
"type": "error"
|
|
13468
13838
|
},
|
|
13839
|
+
{
|
|
13840
|
+
"inputs": [],
|
|
13841
|
+
"name": "GroupIdMismatch",
|
|
13842
|
+
"type": "error"
|
|
13843
|
+
},
|
|
13469
13844
|
{
|
|
13470
13845
|
"inputs": [],
|
|
13471
13846
|
"name": "InsufficientCollateral",
|
|
@@ -13486,6 +13861,11 @@ exports.abi = {
|
|
|
13486
13861
|
"name": "InvalidAmount",
|
|
13487
13862
|
"type": "error"
|
|
13488
13863
|
},
|
|
13864
|
+
{
|
|
13865
|
+
"inputs": [],
|
|
13866
|
+
"name": "InvalidCloseFactor",
|
|
13867
|
+
"type": "error"
|
|
13868
|
+
},
|
|
13489
13869
|
{
|
|
13490
13870
|
"inputs": [],
|
|
13491
13871
|
"name": "InvalidComptroller",
|
|
@@ -13501,6 +13881,11 @@ exports.abi = {
|
|
|
13501
13881
|
"name": "InvalidExchangeRate",
|
|
13502
13882
|
"type": "error"
|
|
13503
13883
|
},
|
|
13884
|
+
{
|
|
13885
|
+
"inputs": [],
|
|
13886
|
+
"name": "InvalidGroupId",
|
|
13887
|
+
"type": "error"
|
|
13888
|
+
},
|
|
13504
13889
|
{
|
|
13505
13890
|
"inputs": [],
|
|
13506
13891
|
"name": "InvalidInterestRateModel",
|
|
@@ -13646,6 +14031,11 @@ exports.abi = {
|
|
|
13646
14031
|
"name": "RedeemTransferOutNotPossible",
|
|
13647
14032
|
"type": "error"
|
|
13648
14033
|
},
|
|
14034
|
+
{
|
|
14035
|
+
"inputs": [],
|
|
14036
|
+
"name": "RedemptionSeizeTooMuch",
|
|
14037
|
+
"type": "error"
|
|
14038
|
+
},
|
|
13649
14039
|
{
|
|
13650
14040
|
"inputs": [],
|
|
13651
14041
|
"name": "ReduceReservesCashNotAvailable",
|
|
@@ -14008,49 +14398,6 @@ exports.abi = {
|
|
|
14008
14398
|
"name": "NewPriceOracle",
|
|
14009
14399
|
"type": "event"
|
|
14010
14400
|
},
|
|
14011
|
-
{
|
|
14012
|
-
"anonymous": false,
|
|
14013
|
-
"inputs": [
|
|
14014
|
-
{
|
|
14015
|
-
"indexed": false,
|
|
14016
|
-
"internalType": "address",
|
|
14017
|
-
"name": "redeemer",
|
|
14018
|
-
"type": "address"
|
|
14019
|
-
},
|
|
14020
|
-
{
|
|
14021
|
-
"indexed": false,
|
|
14022
|
-
"internalType": "address",
|
|
14023
|
-
"name": "provider",
|
|
14024
|
-
"type": "address"
|
|
14025
|
-
},
|
|
14026
|
-
{
|
|
14027
|
-
"indexed": false,
|
|
14028
|
-
"internalType": "address",
|
|
14029
|
-
"name": "redeemToken",
|
|
14030
|
-
"type": "address"
|
|
14031
|
-
},
|
|
14032
|
-
{
|
|
14033
|
-
"indexed": false,
|
|
14034
|
-
"internalType": "uint256",
|
|
14035
|
-
"name": "redeemAmount",
|
|
14036
|
-
"type": "uint256"
|
|
14037
|
-
},
|
|
14038
|
-
{
|
|
14039
|
-
"indexed": false,
|
|
14040
|
-
"internalType": "address",
|
|
14041
|
-
"name": "seizeToken",
|
|
14042
|
-
"type": "address"
|
|
14043
|
-
},
|
|
14044
|
-
{
|
|
14045
|
-
"indexed": false,
|
|
14046
|
-
"internalType": "uint256",
|
|
14047
|
-
"name": "seizeAmount",
|
|
14048
|
-
"type": "uint256"
|
|
14049
|
-
}
|
|
14050
|
-
],
|
|
14051
|
-
"name": "Redemption",
|
|
14052
|
-
"type": "event"
|
|
14053
|
-
},
|
|
14054
14401
|
{
|
|
14055
14402
|
"anonymous": false,
|
|
14056
14403
|
"inputs": [
|
|
@@ -16847,6 +17194,12 @@ exports.abi = {
|
|
|
16847
17194
|
{
|
|
16848
17195
|
"anonymous": false,
|
|
16849
17196
|
"inputs": [
|
|
17197
|
+
{
|
|
17198
|
+
"indexed": false,
|
|
17199
|
+
"internalType": "address",
|
|
17200
|
+
"name": "asset",
|
|
17201
|
+
"type": "address"
|
|
17202
|
+
},
|
|
16850
17203
|
{
|
|
16851
17204
|
"indexed": false,
|
|
16852
17205
|
"internalType": "uint256",
|
|
@@ -16873,6 +17226,12 @@ exports.abi = {
|
|
|
16873
17226
|
{
|
|
16874
17227
|
"anonymous": false,
|
|
16875
17228
|
"inputs": [
|
|
17229
|
+
{
|
|
17230
|
+
"indexed": false,
|
|
17231
|
+
"internalType": "address",
|
|
17232
|
+
"name": "asset",
|
|
17233
|
+
"type": "address"
|
|
17234
|
+
},
|
|
16876
17235
|
{
|
|
16877
17236
|
"indexed": false,
|
|
16878
17237
|
"internalType": "uint256",
|
|
@@ -17062,6 +17421,25 @@ exports.abi = {
|
|
|
17062
17421
|
"stateMutability": "view",
|
|
17063
17422
|
"type": "function"
|
|
17064
17423
|
},
|
|
17424
|
+
{
|
|
17425
|
+
"inputs": [
|
|
17426
|
+
{
|
|
17427
|
+
"internalType": "address",
|
|
17428
|
+
"name": "",
|
|
17429
|
+
"type": "address"
|
|
17430
|
+
}
|
|
17431
|
+
],
|
|
17432
|
+
"name": "baseRateMap",
|
|
17433
|
+
"outputs": [
|
|
17434
|
+
{
|
|
17435
|
+
"internalType": "uint256",
|
|
17436
|
+
"name": "",
|
|
17437
|
+
"type": "uint256"
|
|
17438
|
+
}
|
|
17439
|
+
],
|
|
17440
|
+
"stateMutability": "view",
|
|
17441
|
+
"type": "function"
|
|
17442
|
+
},
|
|
17065
17443
|
{
|
|
17066
17444
|
"inputs": [
|
|
17067
17445
|
{
|
|
@@ -17130,12 +17508,47 @@ exports.abi = {
|
|
|
17130
17508
|
"type": "function"
|
|
17131
17509
|
},
|
|
17132
17510
|
{
|
|
17133
|
-
"inputs": [
|
|
17511
|
+
"inputs": [
|
|
17512
|
+
{
|
|
17513
|
+
"internalType": "address",
|
|
17514
|
+
"name": "asset",
|
|
17515
|
+
"type": "address"
|
|
17516
|
+
}
|
|
17517
|
+
],
|
|
17134
17518
|
"name": "decayBaseRateFromBorrowing",
|
|
17135
17519
|
"outputs": [],
|
|
17136
17520
|
"stateMutability": "nonpayable",
|
|
17137
17521
|
"type": "function"
|
|
17138
17522
|
},
|
|
17523
|
+
{
|
|
17524
|
+
"inputs": [
|
|
17525
|
+
{
|
|
17526
|
+
"internalType": "address",
|
|
17527
|
+
"name": "asset",
|
|
17528
|
+
"type": "address"
|
|
17529
|
+
},
|
|
17530
|
+
{
|
|
17531
|
+
"internalType": "uint256",
|
|
17532
|
+
"name": "redeemAmount",
|
|
17533
|
+
"type": "uint256"
|
|
17534
|
+
},
|
|
17535
|
+
{
|
|
17536
|
+
"internalType": "uint256",
|
|
17537
|
+
"name": "_totalSupply",
|
|
17538
|
+
"type": "uint256"
|
|
17539
|
+
}
|
|
17540
|
+
],
|
|
17541
|
+
"name": "getCurrentRedemptionRate",
|
|
17542
|
+
"outputs": [
|
|
17543
|
+
{
|
|
17544
|
+
"internalType": "uint256",
|
|
17545
|
+
"name": "",
|
|
17546
|
+
"type": "uint256"
|
|
17547
|
+
}
|
|
17548
|
+
],
|
|
17549
|
+
"stateMutability": "view",
|
|
17550
|
+
"type": "function"
|
|
17551
|
+
},
|
|
17139
17552
|
{
|
|
17140
17553
|
"inputs": [
|
|
17141
17554
|
{
|
|
@@ -17180,21 +17593,14 @@ exports.abi = {
|
|
|
17180
17593
|
"type": "function"
|
|
17181
17594
|
},
|
|
17182
17595
|
{
|
|
17183
|
-
"inputs": [
|
|
17184
|
-
"name": "getRedemptionRate",
|
|
17185
|
-
"outputs": [
|
|
17596
|
+
"inputs": [
|
|
17186
17597
|
{
|
|
17187
|
-
"internalType": "
|
|
17188
|
-
"name": "",
|
|
17189
|
-
"type": "
|
|
17598
|
+
"internalType": "address",
|
|
17599
|
+
"name": "asset",
|
|
17600
|
+
"type": "address"
|
|
17190
17601
|
}
|
|
17191
17602
|
],
|
|
17192
|
-
"
|
|
17193
|
-
"type": "function"
|
|
17194
|
-
},
|
|
17195
|
-
{
|
|
17196
|
-
"inputs": [],
|
|
17197
|
-
"name": "getRedemptionRateWithDecay",
|
|
17603
|
+
"name": "getRedemptionRate",
|
|
17198
17604
|
"outputs": [
|
|
17199
17605
|
{
|
|
17200
17606
|
"internalType": "uint256",
|
|
@@ -17359,6 +17765,25 @@ exports.abi = {
|
|
|
17359
17765
|
"stateMutability": "view",
|
|
17360
17766
|
"type": "function"
|
|
17361
17767
|
},
|
|
17768
|
+
{
|
|
17769
|
+
"inputs": [
|
|
17770
|
+
{
|
|
17771
|
+
"internalType": "address",
|
|
17772
|
+
"name": "",
|
|
17773
|
+
"type": "address"
|
|
17774
|
+
}
|
|
17775
|
+
],
|
|
17776
|
+
"name": "lastFeeOperationTimeMap",
|
|
17777
|
+
"outputs": [
|
|
17778
|
+
{
|
|
17779
|
+
"internalType": "uint256",
|
|
17780
|
+
"name": "",
|
|
17781
|
+
"type": "uint256"
|
|
17782
|
+
}
|
|
17783
|
+
],
|
|
17784
|
+
"stateMutability": "view",
|
|
17785
|
+
"type": "function"
|
|
17786
|
+
},
|
|
17362
17787
|
{
|
|
17363
17788
|
"inputs": [
|
|
17364
17789
|
{
|
|
@@ -17455,6 +17880,11 @@ exports.abi = {
|
|
|
17455
17880
|
},
|
|
17456
17881
|
{
|
|
17457
17882
|
"inputs": [
|
|
17883
|
+
{
|
|
17884
|
+
"internalType": "address",
|
|
17885
|
+
"name": "asset",
|
|
17886
|
+
"type": "address"
|
|
17887
|
+
},
|
|
17458
17888
|
{
|
|
17459
17889
|
"internalType": "uint256",
|
|
17460
17890
|
"name": "redeemAmount",
|
|
@@ -22936,6 +23366,35 @@ exports.abi = {
|
|
|
22936
23366
|
"stateMutability": "nonpayable",
|
|
22937
23367
|
"type": "function"
|
|
22938
23368
|
},
|
|
23369
|
+
{
|
|
23370
|
+
"inputs": [
|
|
23371
|
+
{
|
|
23372
|
+
"internalType": "address",
|
|
23373
|
+
"name": "asset",
|
|
23374
|
+
"type": "address"
|
|
23375
|
+
},
|
|
23376
|
+
{
|
|
23377
|
+
"internalType": "uint256",
|
|
23378
|
+
"name": "redeemAmount",
|
|
23379
|
+
"type": "uint256"
|
|
23380
|
+
},
|
|
23381
|
+
{
|
|
23382
|
+
"internalType": "uint256",
|
|
23383
|
+
"name": "_totalSupply",
|
|
23384
|
+
"type": "uint256"
|
|
23385
|
+
}
|
|
23386
|
+
],
|
|
23387
|
+
"name": "getCurrentRedemptionRate",
|
|
23388
|
+
"outputs": [
|
|
23389
|
+
{
|
|
23390
|
+
"internalType": "uint256",
|
|
23391
|
+
"name": "",
|
|
23392
|
+
"type": "uint256"
|
|
23393
|
+
}
|
|
23394
|
+
],
|
|
23395
|
+
"stateMutability": "nonpayable",
|
|
23396
|
+
"type": "function"
|
|
23397
|
+
},
|
|
22939
23398
|
{
|
|
22940
23399
|
"inputs": [
|
|
22941
23400
|
{
|
|
@@ -22980,21 +23439,14 @@ exports.abi = {
|
|
|
22980
23439
|
"type": "function"
|
|
22981
23440
|
},
|
|
22982
23441
|
{
|
|
22983
|
-
"inputs": [
|
|
22984
|
-
"name": "getRedemptionRate",
|
|
22985
|
-
"outputs": [
|
|
23442
|
+
"inputs": [
|
|
22986
23443
|
{
|
|
22987
|
-
"internalType": "
|
|
22988
|
-
"name": "",
|
|
22989
|
-
"type": "
|
|
23444
|
+
"internalType": "address",
|
|
23445
|
+
"name": "asset",
|
|
23446
|
+
"type": "address"
|
|
22990
23447
|
}
|
|
22991
23448
|
],
|
|
22992
|
-
"
|
|
22993
|
-
"type": "function"
|
|
22994
|
-
},
|
|
22995
|
-
{
|
|
22996
|
-
"inputs": [],
|
|
22997
|
-
"name": "getRedemptionRateWithDecay",
|
|
23449
|
+
"name": "getRedemptionRate",
|
|
22998
23450
|
"outputs": [
|
|
22999
23451
|
{
|
|
23000
23452
|
"internalType": "uint256",
|
|
@@ -23026,6 +23478,11 @@ exports.abi = {
|
|
|
23026
23478
|
},
|
|
23027
23479
|
{
|
|
23028
23480
|
"inputs": [
|
|
23481
|
+
{
|
|
23482
|
+
"internalType": "address",
|
|
23483
|
+
"name": "asset",
|
|
23484
|
+
"type": "address"
|
|
23485
|
+
},
|
|
23029
23486
|
{
|
|
23030
23487
|
"internalType": "uint256",
|
|
23031
23488
|
"name": "redeemAmount",
|