@venusprotocol/isolated-pools 3.7.0-dev.3 → 3.7.0-dev.4
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/deployments/ethereum/JumpRateModelV2_base0bps_slope450bps_jump20000bps_kink4500bps.json +608 -0
- package/deployments/ethereum/VToken_vpufETH_LiquidStakedETH.json +257 -0
- package/deployments/ethereum.json +434 -0
- package/deployments/ethereum_addresses.json +2 -0
- package/deployments/sepolia/JumpRateModelV2_base0bps_slope450bps_jump20000bps_kink4500bps.json +608 -0
- package/deployments/sepolia/MockpufETH.json +458 -0
- package/deployments/sepolia/VToken_vpufETH_LiquidStakedETH.json +257 -0
- package/deployments/sepolia.json +931 -188
- package/deployments/sepolia_addresses.json +3 -0
- package/dist/deployments/ethereum.json +434 -0
- package/dist/deployments/sepolia.json +931 -188
- package/dist/helpers/deploymentConfig.js +50 -0
- package/package.json +1 -1
package/deployments/sepolia.json
CHANGED
|
@@ -3332,29 +3332,24 @@
|
|
|
3332
3332
|
}
|
|
3333
3333
|
]
|
|
3334
3334
|
},
|
|
3335
|
-
"
|
|
3336
|
-
"address": "
|
|
3335
|
+
"JumpRateModelV2_base0bps_slope450bps_jump20000bps_kink4500bps": {
|
|
3336
|
+
"address": "0x9404B140E5384326ef108B089EBDa71a7f23Cd55",
|
|
3337
3337
|
"abi": [
|
|
3338
3338
|
{
|
|
3339
3339
|
"inputs": [
|
|
3340
3340
|
{
|
|
3341
3341
|
"internalType": "uint256",
|
|
3342
|
-
"name": "
|
|
3343
|
-
"type": "uint256"
|
|
3344
|
-
},
|
|
3345
|
-
{
|
|
3346
|
-
"internalType": "uint256",
|
|
3347
|
-
"name": "baseRatePerYear",
|
|
3342
|
+
"name": "baseRatePerYear_",
|
|
3348
3343
|
"type": "uint256"
|
|
3349
3344
|
},
|
|
3350
3345
|
{
|
|
3351
3346
|
"internalType": "uint256",
|
|
3352
|
-
"name": "
|
|
3347
|
+
"name": "multiplierPerYear_",
|
|
3353
3348
|
"type": "uint256"
|
|
3354
3349
|
},
|
|
3355
3350
|
{
|
|
3356
3351
|
"internalType": "uint256",
|
|
3357
|
-
"name": "
|
|
3352
|
+
"name": "jumpMultiplierPerYear_",
|
|
3358
3353
|
"type": "uint256"
|
|
3359
3354
|
},
|
|
3360
3355
|
{
|
|
@@ -3366,11 +3361,31 @@
|
|
|
3366
3361
|
"internalType": "contract IAccessControlManagerV8",
|
|
3367
3362
|
"name": "accessControlManager_",
|
|
3368
3363
|
"type": "address"
|
|
3364
|
+
},
|
|
3365
|
+
{
|
|
3366
|
+
"internalType": "bool",
|
|
3367
|
+
"name": "timeBased_",
|
|
3368
|
+
"type": "bool"
|
|
3369
|
+
},
|
|
3370
|
+
{
|
|
3371
|
+
"internalType": "uint256",
|
|
3372
|
+
"name": "blocksPerYear_",
|
|
3373
|
+
"type": "uint256"
|
|
3369
3374
|
}
|
|
3370
3375
|
],
|
|
3371
3376
|
"stateMutability": "nonpayable",
|
|
3372
3377
|
"type": "constructor"
|
|
3373
3378
|
},
|
|
3379
|
+
{
|
|
3380
|
+
"inputs": [],
|
|
3381
|
+
"name": "InvalidBlocksPerYear",
|
|
3382
|
+
"type": "error"
|
|
3383
|
+
},
|
|
3384
|
+
{
|
|
3385
|
+
"inputs": [],
|
|
3386
|
+
"name": "InvalidTimeBasedConfiguration",
|
|
3387
|
+
"type": "error"
|
|
3388
|
+
},
|
|
3374
3389
|
{
|
|
3375
3390
|
"inputs": [
|
|
3376
3391
|
{
|
|
@@ -3398,19 +3413,19 @@
|
|
|
3398
3413
|
{
|
|
3399
3414
|
"indexed": false,
|
|
3400
3415
|
"internalType": "uint256",
|
|
3401
|
-
"name": "
|
|
3416
|
+
"name": "baseRatePerBlockOrTimestamp",
|
|
3402
3417
|
"type": "uint256"
|
|
3403
3418
|
},
|
|
3404
3419
|
{
|
|
3405
3420
|
"indexed": false,
|
|
3406
3421
|
"internalType": "uint256",
|
|
3407
|
-
"name": "
|
|
3422
|
+
"name": "multiplierPerBlockOrTimestamp",
|
|
3408
3423
|
"type": "uint256"
|
|
3409
3424
|
},
|
|
3410
3425
|
{
|
|
3411
3426
|
"indexed": false,
|
|
3412
3427
|
"internalType": "uint256",
|
|
3413
|
-
"name": "
|
|
3428
|
+
"name": "jumpMultiplierPerBlockOrTimestamp",
|
|
3414
3429
|
"type": "uint256"
|
|
3415
3430
|
},
|
|
3416
3431
|
{
|
|
@@ -3451,7 +3466,20 @@
|
|
|
3451
3466
|
},
|
|
3452
3467
|
{
|
|
3453
3468
|
"inputs": [],
|
|
3454
|
-
"name": "
|
|
3469
|
+
"name": "blocksOrSecondsPerYear",
|
|
3470
|
+
"outputs": [
|
|
3471
|
+
{
|
|
3472
|
+
"internalType": "uint256",
|
|
3473
|
+
"name": "",
|
|
3474
|
+
"type": "uint256"
|
|
3475
|
+
}
|
|
3476
|
+
],
|
|
3477
|
+
"stateMutability": "view",
|
|
3478
|
+
"type": "function"
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
"inputs": [],
|
|
3482
|
+
"name": "getBlockNumberOrTimestamp",
|
|
3455
3483
|
"outputs": [
|
|
3456
3484
|
{
|
|
3457
3485
|
"internalType": "uint256",
|
|
@@ -3548,6 +3576,19 @@
|
|
|
3548
3576
|
"stateMutability": "pure",
|
|
3549
3577
|
"type": "function"
|
|
3550
3578
|
},
|
|
3579
|
+
{
|
|
3580
|
+
"inputs": [],
|
|
3581
|
+
"name": "isTimeBased",
|
|
3582
|
+
"outputs": [
|
|
3583
|
+
{
|
|
3584
|
+
"internalType": "bool",
|
|
3585
|
+
"name": "",
|
|
3586
|
+
"type": "bool"
|
|
3587
|
+
}
|
|
3588
|
+
],
|
|
3589
|
+
"stateMutability": "view",
|
|
3590
|
+
"type": "function"
|
|
3591
|
+
},
|
|
3551
3592
|
{
|
|
3552
3593
|
"inputs": [],
|
|
3553
3594
|
"name": "jumpMultiplierPerBlock",
|
|
@@ -3651,8 +3692,8 @@
|
|
|
3651
3692
|
}
|
|
3652
3693
|
]
|
|
3653
3694
|
},
|
|
3654
|
-
"
|
|
3655
|
-
"address": "
|
|
3695
|
+
"JumpRateModelV2_base0bps_slope450bps_jump8000bps_kink8000bps": {
|
|
3696
|
+
"address": "0xe948BBE16a846988A501A33Fb6A82Af4E2f231aE",
|
|
3656
3697
|
"abi": [
|
|
3657
3698
|
{
|
|
3658
3699
|
"inputs": [
|
|
@@ -3970,8 +4011,8 @@
|
|
|
3970
4011
|
}
|
|
3971
4012
|
]
|
|
3972
4013
|
},
|
|
3973
|
-
"
|
|
3974
|
-
"address": "
|
|
4014
|
+
"JumpRateModelV2_base0bps_slope500bps_jump8000bps_kink7500bps": {
|
|
4015
|
+
"address": "0x1A9ca9032C7ee7335736fCaa5e8fb62b283538da",
|
|
3975
4016
|
"abi": [
|
|
3976
4017
|
{
|
|
3977
4018
|
"inputs": [
|
|
@@ -4289,8 +4330,8 @@
|
|
|
4289
4330
|
}
|
|
4290
4331
|
]
|
|
4291
4332
|
},
|
|
4292
|
-
"
|
|
4293
|
-
"address": "
|
|
4333
|
+
"JumpRateModelV2_base0bps_slope700bps_jump8000bps_kink8000bps": {
|
|
4334
|
+
"address": "0xA03205bC635A772E533E7BE36b5701E331a70ea3",
|
|
4294
4335
|
"abi": [
|
|
4295
4336
|
{
|
|
4296
4337
|
"inputs": [
|
|
@@ -4608,24 +4649,29 @@
|
|
|
4608
4649
|
}
|
|
4609
4650
|
]
|
|
4610
4651
|
},
|
|
4611
|
-
"
|
|
4612
|
-
"address": "
|
|
4652
|
+
"JumpRateModelV2_base0bps_slope9000bps_jump7500bps_kink4500bps": {
|
|
4653
|
+
"address": "0xf5EA67C92EF40b948EF672DE5fb913237A880A9E",
|
|
4613
4654
|
"abi": [
|
|
4614
4655
|
{
|
|
4615
4656
|
"inputs": [
|
|
4616
4657
|
{
|
|
4617
4658
|
"internalType": "uint256",
|
|
4618
|
-
"name": "
|
|
4659
|
+
"name": "blocksPerYear_",
|
|
4619
4660
|
"type": "uint256"
|
|
4620
4661
|
},
|
|
4621
4662
|
{
|
|
4622
4663
|
"internalType": "uint256",
|
|
4623
|
-
"name": "
|
|
4664
|
+
"name": "baseRatePerYear",
|
|
4624
4665
|
"type": "uint256"
|
|
4625
4666
|
},
|
|
4626
4667
|
{
|
|
4627
4668
|
"internalType": "uint256",
|
|
4628
|
-
"name": "
|
|
4669
|
+
"name": "multiplierPerYear",
|
|
4670
|
+
"type": "uint256"
|
|
4671
|
+
},
|
|
4672
|
+
{
|
|
4673
|
+
"internalType": "uint256",
|
|
4674
|
+
"name": "jumpMultiplierPerYear",
|
|
4629
4675
|
"type": "uint256"
|
|
4630
4676
|
},
|
|
4631
4677
|
{
|
|
@@ -4637,31 +4683,11 @@
|
|
|
4637
4683
|
"internalType": "contract IAccessControlManagerV8",
|
|
4638
4684
|
"name": "accessControlManager_",
|
|
4639
4685
|
"type": "address"
|
|
4640
|
-
},
|
|
4641
|
-
{
|
|
4642
|
-
"internalType": "bool",
|
|
4643
|
-
"name": "timeBased_",
|
|
4644
|
-
"type": "bool"
|
|
4645
|
-
},
|
|
4646
|
-
{
|
|
4647
|
-
"internalType": "uint256",
|
|
4648
|
-
"name": "blocksPerYear_",
|
|
4649
|
-
"type": "uint256"
|
|
4650
4686
|
}
|
|
4651
4687
|
],
|
|
4652
4688
|
"stateMutability": "nonpayable",
|
|
4653
4689
|
"type": "constructor"
|
|
4654
4690
|
},
|
|
4655
|
-
{
|
|
4656
|
-
"inputs": [],
|
|
4657
|
-
"name": "InvalidBlocksPerYear",
|
|
4658
|
-
"type": "error"
|
|
4659
|
-
},
|
|
4660
|
-
{
|
|
4661
|
-
"inputs": [],
|
|
4662
|
-
"name": "InvalidTimeBasedConfiguration",
|
|
4663
|
-
"type": "error"
|
|
4664
|
-
},
|
|
4665
4691
|
{
|
|
4666
4692
|
"inputs": [
|
|
4667
4693
|
{
|
|
@@ -4689,19 +4715,19 @@
|
|
|
4689
4715
|
{
|
|
4690
4716
|
"indexed": false,
|
|
4691
4717
|
"internalType": "uint256",
|
|
4692
|
-
"name": "
|
|
4718
|
+
"name": "baseRatePerBlock",
|
|
4693
4719
|
"type": "uint256"
|
|
4694
4720
|
},
|
|
4695
4721
|
{
|
|
4696
4722
|
"indexed": false,
|
|
4697
4723
|
"internalType": "uint256",
|
|
4698
|
-
"name": "
|
|
4724
|
+
"name": "multiplierPerBlock",
|
|
4699
4725
|
"type": "uint256"
|
|
4700
4726
|
},
|
|
4701
4727
|
{
|
|
4702
4728
|
"indexed": false,
|
|
4703
4729
|
"internalType": "uint256",
|
|
4704
|
-
"name": "
|
|
4730
|
+
"name": "jumpMultiplierPerBlock",
|
|
4705
4731
|
"type": "uint256"
|
|
4706
4732
|
},
|
|
4707
4733
|
{
|
|
@@ -4742,20 +4768,7 @@
|
|
|
4742
4768
|
},
|
|
4743
4769
|
{
|
|
4744
4770
|
"inputs": [],
|
|
4745
|
-
"name": "
|
|
4746
|
-
"outputs": [
|
|
4747
|
-
{
|
|
4748
|
-
"internalType": "uint256",
|
|
4749
|
-
"name": "",
|
|
4750
|
-
"type": "uint256"
|
|
4751
|
-
}
|
|
4752
|
-
],
|
|
4753
|
-
"stateMutability": "view",
|
|
4754
|
-
"type": "function"
|
|
4755
|
-
},
|
|
4756
|
-
{
|
|
4757
|
-
"inputs": [],
|
|
4758
|
-
"name": "getBlockNumberOrTimestamp",
|
|
4771
|
+
"name": "blocksPerYear",
|
|
4759
4772
|
"outputs": [
|
|
4760
4773
|
{
|
|
4761
4774
|
"internalType": "uint256",
|
|
@@ -4852,19 +4865,6 @@
|
|
|
4852
4865
|
"stateMutability": "pure",
|
|
4853
4866
|
"type": "function"
|
|
4854
4867
|
},
|
|
4855
|
-
{
|
|
4856
|
-
"inputs": [],
|
|
4857
|
-
"name": "isTimeBased",
|
|
4858
|
-
"outputs": [
|
|
4859
|
-
{
|
|
4860
|
-
"internalType": "bool",
|
|
4861
|
-
"name": "",
|
|
4862
|
-
"type": "bool"
|
|
4863
|
-
}
|
|
4864
|
-
],
|
|
4865
|
-
"stateMutability": "view",
|
|
4866
|
-
"type": "function"
|
|
4867
|
-
},
|
|
4868
4868
|
{
|
|
4869
4869
|
"inputs": [],
|
|
4870
4870
|
"name": "jumpMultiplierPerBlock",
|
|
@@ -4968,8 +4968,8 @@
|
|
|
4968
4968
|
}
|
|
4969
4969
|
]
|
|
4970
4970
|
},
|
|
4971
|
-
"
|
|
4972
|
-
"address": "
|
|
4971
|
+
"JumpRateModelV2_base0bps_slope900bps_jump20000bps_kink4500bps": {
|
|
4972
|
+
"address": "0x49DF29953303c5AB09201d54435C8662d06d024C",
|
|
4973
4973
|
"abi": [
|
|
4974
4974
|
{
|
|
4975
4975
|
"inputs": [
|
|
@@ -5328,8 +5328,8 @@
|
|
|
5328
5328
|
}
|
|
5329
5329
|
]
|
|
5330
5330
|
},
|
|
5331
|
-
"
|
|
5332
|
-
"address": "
|
|
5331
|
+
"JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4000bps": {
|
|
5332
|
+
"address": "0x0F2F036067BBFc5841d394Aee78F611C64f7c759",
|
|
5333
5333
|
"abi": [
|
|
5334
5334
|
{
|
|
5335
5335
|
"inputs": [
|
|
@@ -5688,29 +5688,24 @@
|
|
|
5688
5688
|
}
|
|
5689
5689
|
]
|
|
5690
5690
|
},
|
|
5691
|
-
"
|
|
5692
|
-
"address": "
|
|
5691
|
+
"JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps": {
|
|
5692
|
+
"address": "0x9Fafd82fE0623B286FEbe02c82C9428AD6b0e420",
|
|
5693
5693
|
"abi": [
|
|
5694
5694
|
{
|
|
5695
5695
|
"inputs": [
|
|
5696
5696
|
{
|
|
5697
5697
|
"internalType": "uint256",
|
|
5698
|
-
"name": "
|
|
5699
|
-
"type": "uint256"
|
|
5700
|
-
},
|
|
5701
|
-
{
|
|
5702
|
-
"internalType": "uint256",
|
|
5703
|
-
"name": "baseRatePerYear",
|
|
5698
|
+
"name": "baseRatePerYear_",
|
|
5704
5699
|
"type": "uint256"
|
|
5705
5700
|
},
|
|
5706
5701
|
{
|
|
5707
5702
|
"internalType": "uint256",
|
|
5708
|
-
"name": "
|
|
5703
|
+
"name": "multiplierPerYear_",
|
|
5709
5704
|
"type": "uint256"
|
|
5710
5705
|
},
|
|
5711
5706
|
{
|
|
5712
5707
|
"internalType": "uint256",
|
|
5713
|
-
"name": "
|
|
5708
|
+
"name": "jumpMultiplierPerYear_",
|
|
5714
5709
|
"type": "uint256"
|
|
5715
5710
|
},
|
|
5716
5711
|
{
|
|
@@ -5722,11 +5717,31 @@
|
|
|
5722
5717
|
"internalType": "contract IAccessControlManagerV8",
|
|
5723
5718
|
"name": "accessControlManager_",
|
|
5724
5719
|
"type": "address"
|
|
5720
|
+
},
|
|
5721
|
+
{
|
|
5722
|
+
"internalType": "bool",
|
|
5723
|
+
"name": "timeBased_",
|
|
5724
|
+
"type": "bool"
|
|
5725
|
+
},
|
|
5726
|
+
{
|
|
5727
|
+
"internalType": "uint256",
|
|
5728
|
+
"name": "blocksPerYear_",
|
|
5729
|
+
"type": "uint256"
|
|
5725
5730
|
}
|
|
5726
5731
|
],
|
|
5727
5732
|
"stateMutability": "nonpayable",
|
|
5728
5733
|
"type": "constructor"
|
|
5729
5734
|
},
|
|
5735
|
+
{
|
|
5736
|
+
"inputs": [],
|
|
5737
|
+
"name": "InvalidBlocksPerYear",
|
|
5738
|
+
"type": "error"
|
|
5739
|
+
},
|
|
5740
|
+
{
|
|
5741
|
+
"inputs": [],
|
|
5742
|
+
"name": "InvalidTimeBasedConfiguration",
|
|
5743
|
+
"type": "error"
|
|
5744
|
+
},
|
|
5730
5745
|
{
|
|
5731
5746
|
"inputs": [
|
|
5732
5747
|
{
|
|
@@ -5754,19 +5769,19 @@
|
|
|
5754
5769
|
{
|
|
5755
5770
|
"indexed": false,
|
|
5756
5771
|
"internalType": "uint256",
|
|
5757
|
-
"name": "
|
|
5772
|
+
"name": "baseRatePerBlockOrTimestamp",
|
|
5758
5773
|
"type": "uint256"
|
|
5759
5774
|
},
|
|
5760
5775
|
{
|
|
5761
5776
|
"indexed": false,
|
|
5762
5777
|
"internalType": "uint256",
|
|
5763
|
-
"name": "
|
|
5778
|
+
"name": "multiplierPerBlockOrTimestamp",
|
|
5764
5779
|
"type": "uint256"
|
|
5765
5780
|
},
|
|
5766
5781
|
{
|
|
5767
5782
|
"indexed": false,
|
|
5768
5783
|
"internalType": "uint256",
|
|
5769
|
-
"name": "
|
|
5784
|
+
"name": "jumpMultiplierPerBlockOrTimestamp",
|
|
5770
5785
|
"type": "uint256"
|
|
5771
5786
|
},
|
|
5772
5787
|
{
|
|
@@ -5807,7 +5822,20 @@
|
|
|
5807
5822
|
},
|
|
5808
5823
|
{
|
|
5809
5824
|
"inputs": [],
|
|
5810
|
-
"name": "
|
|
5825
|
+
"name": "blocksOrSecondsPerYear",
|
|
5826
|
+
"outputs": [
|
|
5827
|
+
{
|
|
5828
|
+
"internalType": "uint256",
|
|
5829
|
+
"name": "",
|
|
5830
|
+
"type": "uint256"
|
|
5831
|
+
}
|
|
5832
|
+
],
|
|
5833
|
+
"stateMutability": "view",
|
|
5834
|
+
"type": "function"
|
|
5835
|
+
},
|
|
5836
|
+
{
|
|
5837
|
+
"inputs": [],
|
|
5838
|
+
"name": "getBlockNumberOrTimestamp",
|
|
5811
5839
|
"outputs": [
|
|
5812
5840
|
{
|
|
5813
5841
|
"internalType": "uint256",
|
|
@@ -5904,6 +5932,19 @@
|
|
|
5904
5932
|
"stateMutability": "pure",
|
|
5905
5933
|
"type": "function"
|
|
5906
5934
|
},
|
|
5935
|
+
{
|
|
5936
|
+
"inputs": [],
|
|
5937
|
+
"name": "isTimeBased",
|
|
5938
|
+
"outputs": [
|
|
5939
|
+
{
|
|
5940
|
+
"internalType": "bool",
|
|
5941
|
+
"name": "",
|
|
5942
|
+
"type": "bool"
|
|
5943
|
+
}
|
|
5944
|
+
],
|
|
5945
|
+
"stateMutability": "view",
|
|
5946
|
+
"type": "function"
|
|
5947
|
+
},
|
|
5907
5948
|
{
|
|
5908
5949
|
"inputs": [],
|
|
5909
5950
|
"name": "jumpMultiplierPerBlock",
|
|
@@ -6007,8 +6048,8 @@
|
|
|
6007
6048
|
}
|
|
6008
6049
|
]
|
|
6009
6050
|
},
|
|
6010
|
-
"
|
|
6011
|
-
"address": "
|
|
6051
|
+
"JumpRateModelV2_base0bps_slope900bps_jump7500bps_kink4500bps": {
|
|
6052
|
+
"address": "0x1b821241f5E3f3AecBeE29901BeE07f5a264915f",
|
|
6012
6053
|
"abi": [
|
|
6013
6054
|
{
|
|
6014
6055
|
"inputs": [
|
|
@@ -6326,8 +6367,8 @@
|
|
|
6326
6367
|
}
|
|
6327
6368
|
]
|
|
6328
6369
|
},
|
|
6329
|
-
"
|
|
6330
|
-
"address": "
|
|
6370
|
+
"JumpRateModelV2_base200bps_slope1500bps_jump30000bps_kink4500bps": {
|
|
6371
|
+
"address": "0x710F4044007a0e72e54626394462dB57d2d8479F",
|
|
6331
6372
|
"abi": [
|
|
6332
6373
|
{
|
|
6333
6374
|
"inputs": [
|
|
@@ -6482,9 +6523,637 @@
|
|
|
6482
6523
|
"name": "getBorrowRate",
|
|
6483
6524
|
"outputs": [
|
|
6484
6525
|
{
|
|
6485
|
-
"internalType": "uint256",
|
|
6526
|
+
"internalType": "uint256",
|
|
6527
|
+
"name": "",
|
|
6528
|
+
"type": "uint256"
|
|
6529
|
+
}
|
|
6530
|
+
],
|
|
6531
|
+
"stateMutability": "view",
|
|
6532
|
+
"type": "function"
|
|
6533
|
+
},
|
|
6534
|
+
{
|
|
6535
|
+
"inputs": [
|
|
6536
|
+
{
|
|
6537
|
+
"internalType": "uint256",
|
|
6538
|
+
"name": "cash",
|
|
6539
|
+
"type": "uint256"
|
|
6540
|
+
},
|
|
6541
|
+
{
|
|
6542
|
+
"internalType": "uint256",
|
|
6543
|
+
"name": "borrows",
|
|
6544
|
+
"type": "uint256"
|
|
6545
|
+
},
|
|
6546
|
+
{
|
|
6547
|
+
"internalType": "uint256",
|
|
6548
|
+
"name": "reserves",
|
|
6549
|
+
"type": "uint256"
|
|
6550
|
+
},
|
|
6551
|
+
{
|
|
6552
|
+
"internalType": "uint256",
|
|
6553
|
+
"name": "reserveFactorMantissa",
|
|
6554
|
+
"type": "uint256"
|
|
6555
|
+
},
|
|
6556
|
+
{
|
|
6557
|
+
"internalType": "uint256",
|
|
6558
|
+
"name": "badDebt",
|
|
6559
|
+
"type": "uint256"
|
|
6560
|
+
}
|
|
6561
|
+
],
|
|
6562
|
+
"name": "getSupplyRate",
|
|
6563
|
+
"outputs": [
|
|
6564
|
+
{
|
|
6565
|
+
"internalType": "uint256",
|
|
6566
|
+
"name": "",
|
|
6567
|
+
"type": "uint256"
|
|
6568
|
+
}
|
|
6569
|
+
],
|
|
6570
|
+
"stateMutability": "view",
|
|
6571
|
+
"type": "function"
|
|
6572
|
+
},
|
|
6573
|
+
{
|
|
6574
|
+
"inputs": [],
|
|
6575
|
+
"name": "isInterestRateModel",
|
|
6576
|
+
"outputs": [
|
|
6577
|
+
{
|
|
6578
|
+
"internalType": "bool",
|
|
6579
|
+
"name": "",
|
|
6580
|
+
"type": "bool"
|
|
6581
|
+
}
|
|
6582
|
+
],
|
|
6583
|
+
"stateMutability": "pure",
|
|
6584
|
+
"type": "function"
|
|
6585
|
+
},
|
|
6586
|
+
{
|
|
6587
|
+
"inputs": [],
|
|
6588
|
+
"name": "jumpMultiplierPerBlock",
|
|
6589
|
+
"outputs": [
|
|
6590
|
+
{
|
|
6591
|
+
"internalType": "uint256",
|
|
6592
|
+
"name": "",
|
|
6593
|
+
"type": "uint256"
|
|
6594
|
+
}
|
|
6595
|
+
],
|
|
6596
|
+
"stateMutability": "view",
|
|
6597
|
+
"type": "function"
|
|
6598
|
+
},
|
|
6599
|
+
{
|
|
6600
|
+
"inputs": [],
|
|
6601
|
+
"name": "kink",
|
|
6602
|
+
"outputs": [
|
|
6603
|
+
{
|
|
6604
|
+
"internalType": "uint256",
|
|
6605
|
+
"name": "",
|
|
6606
|
+
"type": "uint256"
|
|
6607
|
+
}
|
|
6608
|
+
],
|
|
6609
|
+
"stateMutability": "view",
|
|
6610
|
+
"type": "function"
|
|
6611
|
+
},
|
|
6612
|
+
{
|
|
6613
|
+
"inputs": [],
|
|
6614
|
+
"name": "multiplierPerBlock",
|
|
6615
|
+
"outputs": [
|
|
6616
|
+
{
|
|
6617
|
+
"internalType": "uint256",
|
|
6618
|
+
"name": "",
|
|
6619
|
+
"type": "uint256"
|
|
6620
|
+
}
|
|
6621
|
+
],
|
|
6622
|
+
"stateMutability": "view",
|
|
6623
|
+
"type": "function"
|
|
6624
|
+
},
|
|
6625
|
+
{
|
|
6626
|
+
"inputs": [
|
|
6627
|
+
{
|
|
6628
|
+
"internalType": "uint256",
|
|
6629
|
+
"name": "baseRatePerYear",
|
|
6630
|
+
"type": "uint256"
|
|
6631
|
+
},
|
|
6632
|
+
{
|
|
6633
|
+
"internalType": "uint256",
|
|
6634
|
+
"name": "multiplierPerYear",
|
|
6635
|
+
"type": "uint256"
|
|
6636
|
+
},
|
|
6637
|
+
{
|
|
6638
|
+
"internalType": "uint256",
|
|
6639
|
+
"name": "jumpMultiplierPerYear",
|
|
6640
|
+
"type": "uint256"
|
|
6641
|
+
},
|
|
6642
|
+
{
|
|
6643
|
+
"internalType": "uint256",
|
|
6644
|
+
"name": "kink_",
|
|
6645
|
+
"type": "uint256"
|
|
6646
|
+
}
|
|
6647
|
+
],
|
|
6648
|
+
"name": "updateJumpRateModel",
|
|
6649
|
+
"outputs": [],
|
|
6650
|
+
"stateMutability": "nonpayable",
|
|
6651
|
+
"type": "function"
|
|
6652
|
+
},
|
|
6653
|
+
{
|
|
6654
|
+
"inputs": [
|
|
6655
|
+
{
|
|
6656
|
+
"internalType": "uint256",
|
|
6657
|
+
"name": "cash",
|
|
6658
|
+
"type": "uint256"
|
|
6659
|
+
},
|
|
6660
|
+
{
|
|
6661
|
+
"internalType": "uint256",
|
|
6662
|
+
"name": "borrows",
|
|
6663
|
+
"type": "uint256"
|
|
6664
|
+
},
|
|
6665
|
+
{
|
|
6666
|
+
"internalType": "uint256",
|
|
6667
|
+
"name": "reserves",
|
|
6668
|
+
"type": "uint256"
|
|
6669
|
+
},
|
|
6670
|
+
{
|
|
6671
|
+
"internalType": "uint256",
|
|
6672
|
+
"name": "badDebt",
|
|
6673
|
+
"type": "uint256"
|
|
6674
|
+
}
|
|
6675
|
+
],
|
|
6676
|
+
"name": "utilizationRate",
|
|
6677
|
+
"outputs": [
|
|
6678
|
+
{
|
|
6679
|
+
"internalType": "uint256",
|
|
6680
|
+
"name": "",
|
|
6681
|
+
"type": "uint256"
|
|
6682
|
+
}
|
|
6683
|
+
],
|
|
6684
|
+
"stateMutability": "pure",
|
|
6685
|
+
"type": "function"
|
|
6686
|
+
}
|
|
6687
|
+
]
|
|
6688
|
+
},
|
|
6689
|
+
"JumpRateModelV2_base200bps_slope2000bps_jump30000bps_kink4500bps": {
|
|
6690
|
+
"address": "0xaf5feAbe347BE5DF603CE63e45155bDb8049C78c",
|
|
6691
|
+
"abi": [
|
|
6692
|
+
{
|
|
6693
|
+
"inputs": [
|
|
6694
|
+
{
|
|
6695
|
+
"internalType": "uint256",
|
|
6696
|
+
"name": "blocksPerYear_",
|
|
6697
|
+
"type": "uint256"
|
|
6698
|
+
},
|
|
6699
|
+
{
|
|
6700
|
+
"internalType": "uint256",
|
|
6701
|
+
"name": "baseRatePerYear",
|
|
6702
|
+
"type": "uint256"
|
|
6703
|
+
},
|
|
6704
|
+
{
|
|
6705
|
+
"internalType": "uint256",
|
|
6706
|
+
"name": "multiplierPerYear",
|
|
6707
|
+
"type": "uint256"
|
|
6708
|
+
},
|
|
6709
|
+
{
|
|
6710
|
+
"internalType": "uint256",
|
|
6711
|
+
"name": "jumpMultiplierPerYear",
|
|
6712
|
+
"type": "uint256"
|
|
6713
|
+
},
|
|
6714
|
+
{
|
|
6715
|
+
"internalType": "uint256",
|
|
6716
|
+
"name": "kink_",
|
|
6717
|
+
"type": "uint256"
|
|
6718
|
+
},
|
|
6719
|
+
{
|
|
6720
|
+
"internalType": "contract IAccessControlManagerV8",
|
|
6721
|
+
"name": "accessControlManager_",
|
|
6722
|
+
"type": "address"
|
|
6723
|
+
}
|
|
6724
|
+
],
|
|
6725
|
+
"stateMutability": "nonpayable",
|
|
6726
|
+
"type": "constructor"
|
|
6727
|
+
},
|
|
6728
|
+
{
|
|
6729
|
+
"inputs": [
|
|
6730
|
+
{
|
|
6731
|
+
"internalType": "address",
|
|
6732
|
+
"name": "sender",
|
|
6733
|
+
"type": "address"
|
|
6734
|
+
},
|
|
6735
|
+
{
|
|
6736
|
+
"internalType": "address",
|
|
6737
|
+
"name": "calledContract",
|
|
6738
|
+
"type": "address"
|
|
6739
|
+
},
|
|
6740
|
+
{
|
|
6741
|
+
"internalType": "string",
|
|
6742
|
+
"name": "methodSignature",
|
|
6743
|
+
"type": "string"
|
|
6744
|
+
}
|
|
6745
|
+
],
|
|
6746
|
+
"name": "Unauthorized",
|
|
6747
|
+
"type": "error"
|
|
6748
|
+
},
|
|
6749
|
+
{
|
|
6750
|
+
"anonymous": false,
|
|
6751
|
+
"inputs": [
|
|
6752
|
+
{
|
|
6753
|
+
"indexed": false,
|
|
6754
|
+
"internalType": "uint256",
|
|
6755
|
+
"name": "baseRatePerBlock",
|
|
6756
|
+
"type": "uint256"
|
|
6757
|
+
},
|
|
6758
|
+
{
|
|
6759
|
+
"indexed": false,
|
|
6760
|
+
"internalType": "uint256",
|
|
6761
|
+
"name": "multiplierPerBlock",
|
|
6762
|
+
"type": "uint256"
|
|
6763
|
+
},
|
|
6764
|
+
{
|
|
6765
|
+
"indexed": false,
|
|
6766
|
+
"internalType": "uint256",
|
|
6767
|
+
"name": "jumpMultiplierPerBlock",
|
|
6768
|
+
"type": "uint256"
|
|
6769
|
+
},
|
|
6770
|
+
{
|
|
6771
|
+
"indexed": false,
|
|
6772
|
+
"internalType": "uint256",
|
|
6773
|
+
"name": "kink",
|
|
6774
|
+
"type": "uint256"
|
|
6775
|
+
}
|
|
6776
|
+
],
|
|
6777
|
+
"name": "NewInterestParams",
|
|
6778
|
+
"type": "event"
|
|
6779
|
+
},
|
|
6780
|
+
{
|
|
6781
|
+
"inputs": [],
|
|
6782
|
+
"name": "accessControlManager",
|
|
6783
|
+
"outputs": [
|
|
6784
|
+
{
|
|
6785
|
+
"internalType": "contract IAccessControlManagerV8",
|
|
6786
|
+
"name": "",
|
|
6787
|
+
"type": "address"
|
|
6788
|
+
}
|
|
6789
|
+
],
|
|
6790
|
+
"stateMutability": "view",
|
|
6791
|
+
"type": "function"
|
|
6792
|
+
},
|
|
6793
|
+
{
|
|
6794
|
+
"inputs": [],
|
|
6795
|
+
"name": "baseRatePerBlock",
|
|
6796
|
+
"outputs": [
|
|
6797
|
+
{
|
|
6798
|
+
"internalType": "uint256",
|
|
6799
|
+
"name": "",
|
|
6800
|
+
"type": "uint256"
|
|
6801
|
+
}
|
|
6802
|
+
],
|
|
6803
|
+
"stateMutability": "view",
|
|
6804
|
+
"type": "function"
|
|
6805
|
+
},
|
|
6806
|
+
{
|
|
6807
|
+
"inputs": [],
|
|
6808
|
+
"name": "blocksPerYear",
|
|
6809
|
+
"outputs": [
|
|
6810
|
+
{
|
|
6811
|
+
"internalType": "uint256",
|
|
6812
|
+
"name": "",
|
|
6813
|
+
"type": "uint256"
|
|
6814
|
+
}
|
|
6815
|
+
],
|
|
6816
|
+
"stateMutability": "view",
|
|
6817
|
+
"type": "function"
|
|
6818
|
+
},
|
|
6819
|
+
{
|
|
6820
|
+
"inputs": [
|
|
6821
|
+
{
|
|
6822
|
+
"internalType": "uint256",
|
|
6823
|
+
"name": "cash",
|
|
6824
|
+
"type": "uint256"
|
|
6825
|
+
},
|
|
6826
|
+
{
|
|
6827
|
+
"internalType": "uint256",
|
|
6828
|
+
"name": "borrows",
|
|
6829
|
+
"type": "uint256"
|
|
6830
|
+
},
|
|
6831
|
+
{
|
|
6832
|
+
"internalType": "uint256",
|
|
6833
|
+
"name": "reserves",
|
|
6834
|
+
"type": "uint256"
|
|
6835
|
+
},
|
|
6836
|
+
{
|
|
6837
|
+
"internalType": "uint256",
|
|
6838
|
+
"name": "badDebt",
|
|
6839
|
+
"type": "uint256"
|
|
6840
|
+
}
|
|
6841
|
+
],
|
|
6842
|
+
"name": "getBorrowRate",
|
|
6843
|
+
"outputs": [
|
|
6844
|
+
{
|
|
6845
|
+
"internalType": "uint256",
|
|
6846
|
+
"name": "",
|
|
6847
|
+
"type": "uint256"
|
|
6848
|
+
}
|
|
6849
|
+
],
|
|
6850
|
+
"stateMutability": "view",
|
|
6851
|
+
"type": "function"
|
|
6852
|
+
},
|
|
6853
|
+
{
|
|
6854
|
+
"inputs": [
|
|
6855
|
+
{
|
|
6856
|
+
"internalType": "uint256",
|
|
6857
|
+
"name": "cash",
|
|
6858
|
+
"type": "uint256"
|
|
6859
|
+
},
|
|
6860
|
+
{
|
|
6861
|
+
"internalType": "uint256",
|
|
6862
|
+
"name": "borrows",
|
|
6863
|
+
"type": "uint256"
|
|
6864
|
+
},
|
|
6865
|
+
{
|
|
6866
|
+
"internalType": "uint256",
|
|
6867
|
+
"name": "reserves",
|
|
6868
|
+
"type": "uint256"
|
|
6869
|
+
},
|
|
6870
|
+
{
|
|
6871
|
+
"internalType": "uint256",
|
|
6872
|
+
"name": "reserveFactorMantissa",
|
|
6873
|
+
"type": "uint256"
|
|
6874
|
+
},
|
|
6875
|
+
{
|
|
6876
|
+
"internalType": "uint256",
|
|
6877
|
+
"name": "badDebt",
|
|
6878
|
+
"type": "uint256"
|
|
6879
|
+
}
|
|
6880
|
+
],
|
|
6881
|
+
"name": "getSupplyRate",
|
|
6882
|
+
"outputs": [
|
|
6883
|
+
{
|
|
6884
|
+
"internalType": "uint256",
|
|
6885
|
+
"name": "",
|
|
6886
|
+
"type": "uint256"
|
|
6887
|
+
}
|
|
6888
|
+
],
|
|
6889
|
+
"stateMutability": "view",
|
|
6890
|
+
"type": "function"
|
|
6891
|
+
},
|
|
6892
|
+
{
|
|
6893
|
+
"inputs": [],
|
|
6894
|
+
"name": "isInterestRateModel",
|
|
6895
|
+
"outputs": [
|
|
6896
|
+
{
|
|
6897
|
+
"internalType": "bool",
|
|
6898
|
+
"name": "",
|
|
6899
|
+
"type": "bool"
|
|
6900
|
+
}
|
|
6901
|
+
],
|
|
6902
|
+
"stateMutability": "pure",
|
|
6903
|
+
"type": "function"
|
|
6904
|
+
},
|
|
6905
|
+
{
|
|
6906
|
+
"inputs": [],
|
|
6907
|
+
"name": "jumpMultiplierPerBlock",
|
|
6908
|
+
"outputs": [
|
|
6909
|
+
{
|
|
6910
|
+
"internalType": "uint256",
|
|
6911
|
+
"name": "",
|
|
6912
|
+
"type": "uint256"
|
|
6913
|
+
}
|
|
6914
|
+
],
|
|
6915
|
+
"stateMutability": "view",
|
|
6916
|
+
"type": "function"
|
|
6917
|
+
},
|
|
6918
|
+
{
|
|
6919
|
+
"inputs": [],
|
|
6920
|
+
"name": "kink",
|
|
6921
|
+
"outputs": [
|
|
6922
|
+
{
|
|
6923
|
+
"internalType": "uint256",
|
|
6924
|
+
"name": "",
|
|
6925
|
+
"type": "uint256"
|
|
6926
|
+
}
|
|
6927
|
+
],
|
|
6928
|
+
"stateMutability": "view",
|
|
6929
|
+
"type": "function"
|
|
6930
|
+
},
|
|
6931
|
+
{
|
|
6932
|
+
"inputs": [],
|
|
6933
|
+
"name": "multiplierPerBlock",
|
|
6934
|
+
"outputs": [
|
|
6935
|
+
{
|
|
6936
|
+
"internalType": "uint256",
|
|
6937
|
+
"name": "",
|
|
6938
|
+
"type": "uint256"
|
|
6939
|
+
}
|
|
6940
|
+
],
|
|
6941
|
+
"stateMutability": "view",
|
|
6942
|
+
"type": "function"
|
|
6943
|
+
},
|
|
6944
|
+
{
|
|
6945
|
+
"inputs": [
|
|
6946
|
+
{
|
|
6947
|
+
"internalType": "uint256",
|
|
6948
|
+
"name": "baseRatePerYear",
|
|
6949
|
+
"type": "uint256"
|
|
6950
|
+
},
|
|
6951
|
+
{
|
|
6952
|
+
"internalType": "uint256",
|
|
6953
|
+
"name": "multiplierPerYear",
|
|
6954
|
+
"type": "uint256"
|
|
6955
|
+
},
|
|
6956
|
+
{
|
|
6957
|
+
"internalType": "uint256",
|
|
6958
|
+
"name": "jumpMultiplierPerYear",
|
|
6959
|
+
"type": "uint256"
|
|
6960
|
+
},
|
|
6961
|
+
{
|
|
6962
|
+
"internalType": "uint256",
|
|
6963
|
+
"name": "kink_",
|
|
6964
|
+
"type": "uint256"
|
|
6965
|
+
}
|
|
6966
|
+
],
|
|
6967
|
+
"name": "updateJumpRateModel",
|
|
6968
|
+
"outputs": [],
|
|
6969
|
+
"stateMutability": "nonpayable",
|
|
6970
|
+
"type": "function"
|
|
6971
|
+
},
|
|
6972
|
+
{
|
|
6973
|
+
"inputs": [
|
|
6974
|
+
{
|
|
6975
|
+
"internalType": "uint256",
|
|
6976
|
+
"name": "cash",
|
|
6977
|
+
"type": "uint256"
|
|
6978
|
+
},
|
|
6979
|
+
{
|
|
6980
|
+
"internalType": "uint256",
|
|
6981
|
+
"name": "borrows",
|
|
6982
|
+
"type": "uint256"
|
|
6983
|
+
},
|
|
6984
|
+
{
|
|
6985
|
+
"internalType": "uint256",
|
|
6986
|
+
"name": "reserves",
|
|
6987
|
+
"type": "uint256"
|
|
6988
|
+
},
|
|
6989
|
+
{
|
|
6990
|
+
"internalType": "uint256",
|
|
6991
|
+
"name": "badDebt",
|
|
6992
|
+
"type": "uint256"
|
|
6993
|
+
}
|
|
6994
|
+
],
|
|
6995
|
+
"name": "utilizationRate",
|
|
6996
|
+
"outputs": [
|
|
6997
|
+
{
|
|
6998
|
+
"internalType": "uint256",
|
|
6999
|
+
"name": "",
|
|
7000
|
+
"type": "uint256"
|
|
7001
|
+
}
|
|
7002
|
+
],
|
|
7003
|
+
"stateMutability": "pure",
|
|
7004
|
+
"type": "function"
|
|
7005
|
+
}
|
|
7006
|
+
]
|
|
7007
|
+
},
|
|
7008
|
+
"MockCRV": {
|
|
7009
|
+
"address": "0x2c78EF7eab67A6e0C9cAa6f2821929351bdDF3d3",
|
|
7010
|
+
"abi": [
|
|
7011
|
+
{
|
|
7012
|
+
"inputs": [
|
|
7013
|
+
{
|
|
7014
|
+
"internalType": "string",
|
|
7015
|
+
"name": "name_",
|
|
7016
|
+
"type": "string"
|
|
7017
|
+
},
|
|
7018
|
+
{
|
|
7019
|
+
"internalType": "string",
|
|
7020
|
+
"name": "symbol_",
|
|
7021
|
+
"type": "string"
|
|
7022
|
+
},
|
|
7023
|
+
{
|
|
7024
|
+
"internalType": "uint8",
|
|
7025
|
+
"name": "decimals_",
|
|
7026
|
+
"type": "uint8"
|
|
7027
|
+
}
|
|
7028
|
+
],
|
|
7029
|
+
"stateMutability": "nonpayable",
|
|
7030
|
+
"type": "constructor"
|
|
7031
|
+
},
|
|
7032
|
+
{
|
|
7033
|
+
"anonymous": false,
|
|
7034
|
+
"inputs": [
|
|
7035
|
+
{
|
|
7036
|
+
"indexed": true,
|
|
7037
|
+
"internalType": "address",
|
|
7038
|
+
"name": "owner",
|
|
7039
|
+
"type": "address"
|
|
7040
|
+
},
|
|
7041
|
+
{
|
|
7042
|
+
"indexed": true,
|
|
7043
|
+
"internalType": "address",
|
|
7044
|
+
"name": "spender",
|
|
7045
|
+
"type": "address"
|
|
7046
|
+
},
|
|
7047
|
+
{
|
|
7048
|
+
"indexed": false,
|
|
7049
|
+
"internalType": "uint256",
|
|
7050
|
+
"name": "value",
|
|
7051
|
+
"type": "uint256"
|
|
7052
|
+
}
|
|
7053
|
+
],
|
|
7054
|
+
"name": "Approval",
|
|
7055
|
+
"type": "event"
|
|
7056
|
+
},
|
|
7057
|
+
{
|
|
7058
|
+
"anonymous": false,
|
|
7059
|
+
"inputs": [
|
|
7060
|
+
{
|
|
7061
|
+
"indexed": true,
|
|
7062
|
+
"internalType": "address",
|
|
7063
|
+
"name": "from",
|
|
7064
|
+
"type": "address"
|
|
7065
|
+
},
|
|
7066
|
+
{
|
|
7067
|
+
"indexed": true,
|
|
7068
|
+
"internalType": "address",
|
|
7069
|
+
"name": "to",
|
|
7070
|
+
"type": "address"
|
|
7071
|
+
},
|
|
7072
|
+
{
|
|
7073
|
+
"indexed": false,
|
|
7074
|
+
"internalType": "uint256",
|
|
7075
|
+
"name": "value",
|
|
7076
|
+
"type": "uint256"
|
|
7077
|
+
}
|
|
7078
|
+
],
|
|
7079
|
+
"name": "Transfer",
|
|
7080
|
+
"type": "event"
|
|
7081
|
+
},
|
|
7082
|
+
{
|
|
7083
|
+
"inputs": [
|
|
7084
|
+
{
|
|
7085
|
+
"internalType": "address",
|
|
7086
|
+
"name": "owner",
|
|
7087
|
+
"type": "address"
|
|
7088
|
+
},
|
|
7089
|
+
{
|
|
7090
|
+
"internalType": "address",
|
|
7091
|
+
"name": "spender",
|
|
7092
|
+
"type": "address"
|
|
7093
|
+
}
|
|
7094
|
+
],
|
|
7095
|
+
"name": "allowance",
|
|
7096
|
+
"outputs": [
|
|
7097
|
+
{
|
|
7098
|
+
"internalType": "uint256",
|
|
7099
|
+
"name": "",
|
|
7100
|
+
"type": "uint256"
|
|
7101
|
+
}
|
|
7102
|
+
],
|
|
7103
|
+
"stateMutability": "view",
|
|
7104
|
+
"type": "function"
|
|
7105
|
+
},
|
|
7106
|
+
{
|
|
7107
|
+
"inputs": [
|
|
7108
|
+
{
|
|
7109
|
+
"internalType": "address",
|
|
7110
|
+
"name": "spender",
|
|
7111
|
+
"type": "address"
|
|
7112
|
+
},
|
|
7113
|
+
{
|
|
7114
|
+
"internalType": "uint256",
|
|
7115
|
+
"name": "amount",
|
|
7116
|
+
"type": "uint256"
|
|
7117
|
+
}
|
|
7118
|
+
],
|
|
7119
|
+
"name": "approve",
|
|
7120
|
+
"outputs": [
|
|
7121
|
+
{
|
|
7122
|
+
"internalType": "bool",
|
|
7123
|
+
"name": "",
|
|
7124
|
+
"type": "bool"
|
|
7125
|
+
}
|
|
7126
|
+
],
|
|
7127
|
+
"stateMutability": "nonpayable",
|
|
7128
|
+
"type": "function"
|
|
7129
|
+
},
|
|
7130
|
+
{
|
|
7131
|
+
"inputs": [
|
|
7132
|
+
{
|
|
7133
|
+
"internalType": "address",
|
|
7134
|
+
"name": "account",
|
|
7135
|
+
"type": "address"
|
|
7136
|
+
}
|
|
7137
|
+
],
|
|
7138
|
+
"name": "balanceOf",
|
|
7139
|
+
"outputs": [
|
|
7140
|
+
{
|
|
7141
|
+
"internalType": "uint256",
|
|
7142
|
+
"name": "",
|
|
7143
|
+
"type": "uint256"
|
|
7144
|
+
}
|
|
7145
|
+
],
|
|
7146
|
+
"stateMutability": "view",
|
|
7147
|
+
"type": "function"
|
|
7148
|
+
},
|
|
7149
|
+
{
|
|
7150
|
+
"inputs": [],
|
|
7151
|
+
"name": "decimals",
|
|
7152
|
+
"outputs": [
|
|
7153
|
+
{
|
|
7154
|
+
"internalType": "uint8",
|
|
6486
7155
|
"name": "",
|
|
6487
|
-
"type": "
|
|
7156
|
+
"type": "uint8"
|
|
6488
7157
|
}
|
|
6489
7158
|
],
|
|
6490
7159
|
"stateMutability": "view",
|
|
@@ -6493,45 +7162,54 @@
|
|
|
6493
7162
|
{
|
|
6494
7163
|
"inputs": [
|
|
6495
7164
|
{
|
|
6496
|
-
"internalType": "
|
|
6497
|
-
"name": "
|
|
6498
|
-
"type": "
|
|
6499
|
-
},
|
|
6500
|
-
{
|
|
6501
|
-
"internalType": "uint256",
|
|
6502
|
-
"name": "borrows",
|
|
6503
|
-
"type": "uint256"
|
|
6504
|
-
},
|
|
6505
|
-
{
|
|
6506
|
-
"internalType": "uint256",
|
|
6507
|
-
"name": "reserves",
|
|
6508
|
-
"type": "uint256"
|
|
6509
|
-
},
|
|
6510
|
-
{
|
|
6511
|
-
"internalType": "uint256",
|
|
6512
|
-
"name": "reserveFactorMantissa",
|
|
6513
|
-
"type": "uint256"
|
|
7165
|
+
"internalType": "address",
|
|
7166
|
+
"name": "spender",
|
|
7167
|
+
"type": "address"
|
|
6514
7168
|
},
|
|
6515
7169
|
{
|
|
6516
7170
|
"internalType": "uint256",
|
|
6517
|
-
"name": "
|
|
7171
|
+
"name": "subtractedValue",
|
|
6518
7172
|
"type": "uint256"
|
|
6519
7173
|
}
|
|
6520
7174
|
],
|
|
6521
|
-
"name": "
|
|
7175
|
+
"name": "decreaseAllowance",
|
|
6522
7176
|
"outputs": [
|
|
6523
7177
|
{
|
|
6524
|
-
"internalType": "
|
|
7178
|
+
"internalType": "bool",
|
|
6525
7179
|
"name": "",
|
|
7180
|
+
"type": "bool"
|
|
7181
|
+
}
|
|
7182
|
+
],
|
|
7183
|
+
"stateMutability": "nonpayable",
|
|
7184
|
+
"type": "function"
|
|
7185
|
+
},
|
|
7186
|
+
{
|
|
7187
|
+
"inputs": [
|
|
7188
|
+
{
|
|
7189
|
+
"internalType": "uint256",
|
|
7190
|
+
"name": "amount",
|
|
6526
7191
|
"type": "uint256"
|
|
6527
7192
|
}
|
|
6528
7193
|
],
|
|
6529
|
-
"
|
|
7194
|
+
"name": "faucet",
|
|
7195
|
+
"outputs": [],
|
|
7196
|
+
"stateMutability": "nonpayable",
|
|
6530
7197
|
"type": "function"
|
|
6531
7198
|
},
|
|
6532
7199
|
{
|
|
6533
|
-
"inputs": [
|
|
6534
|
-
|
|
7200
|
+
"inputs": [
|
|
7201
|
+
{
|
|
7202
|
+
"internalType": "address",
|
|
7203
|
+
"name": "spender",
|
|
7204
|
+
"type": "address"
|
|
7205
|
+
},
|
|
7206
|
+
{
|
|
7207
|
+
"internalType": "uint256",
|
|
7208
|
+
"name": "addedValue",
|
|
7209
|
+
"type": "uint256"
|
|
7210
|
+
}
|
|
7211
|
+
],
|
|
7212
|
+
"name": "increaseAllowance",
|
|
6535
7213
|
"outputs": [
|
|
6536
7214
|
{
|
|
6537
7215
|
"internalType": "bool",
|
|
@@ -6539,17 +7217,17 @@
|
|
|
6539
7217
|
"type": "bool"
|
|
6540
7218
|
}
|
|
6541
7219
|
],
|
|
6542
|
-
"stateMutability": "
|
|
7220
|
+
"stateMutability": "nonpayable",
|
|
6543
7221
|
"type": "function"
|
|
6544
7222
|
},
|
|
6545
7223
|
{
|
|
6546
7224
|
"inputs": [],
|
|
6547
|
-
"name": "
|
|
7225
|
+
"name": "name",
|
|
6548
7226
|
"outputs": [
|
|
6549
7227
|
{
|
|
6550
|
-
"internalType": "
|
|
7228
|
+
"internalType": "string",
|
|
6551
7229
|
"name": "",
|
|
6552
|
-
"type": "
|
|
7230
|
+
"type": "string"
|
|
6553
7231
|
}
|
|
6554
7232
|
],
|
|
6555
7233
|
"stateMutability": "view",
|
|
@@ -6557,12 +7235,12 @@
|
|
|
6557
7235
|
},
|
|
6558
7236
|
{
|
|
6559
7237
|
"inputs": [],
|
|
6560
|
-
"name": "
|
|
7238
|
+
"name": "symbol",
|
|
6561
7239
|
"outputs": [
|
|
6562
7240
|
{
|
|
6563
|
-
"internalType": "
|
|
7241
|
+
"internalType": "string",
|
|
6564
7242
|
"name": "",
|
|
6565
|
-
"type": "
|
|
7243
|
+
"type": "string"
|
|
6566
7244
|
}
|
|
6567
7245
|
],
|
|
6568
7246
|
"stateMutability": "view",
|
|
@@ -6570,7 +7248,7 @@
|
|
|
6570
7248
|
},
|
|
6571
7249
|
{
|
|
6572
7250
|
"inputs": [],
|
|
6573
|
-
"name": "
|
|
7251
|
+
"name": "totalSupply",
|
|
6574
7252
|
"outputs": [
|
|
6575
7253
|
{
|
|
6576
7254
|
"internalType": "uint256",
|
|
@@ -6584,69 +7262,60 @@
|
|
|
6584
7262
|
{
|
|
6585
7263
|
"inputs": [
|
|
6586
7264
|
{
|
|
6587
|
-
"internalType": "
|
|
6588
|
-
"name": "
|
|
6589
|
-
"type": "
|
|
6590
|
-
},
|
|
6591
|
-
{
|
|
6592
|
-
"internalType": "uint256",
|
|
6593
|
-
"name": "multiplierPerYear",
|
|
6594
|
-
"type": "uint256"
|
|
7265
|
+
"internalType": "address",
|
|
7266
|
+
"name": "to",
|
|
7267
|
+
"type": "address"
|
|
6595
7268
|
},
|
|
6596
7269
|
{
|
|
6597
7270
|
"internalType": "uint256",
|
|
6598
|
-
"name": "
|
|
7271
|
+
"name": "amount",
|
|
6599
7272
|
"type": "uint256"
|
|
6600
|
-
}
|
|
7273
|
+
}
|
|
7274
|
+
],
|
|
7275
|
+
"name": "transfer",
|
|
7276
|
+
"outputs": [
|
|
6601
7277
|
{
|
|
6602
|
-
"internalType": "
|
|
6603
|
-
"name": "
|
|
6604
|
-
"type": "
|
|
7278
|
+
"internalType": "bool",
|
|
7279
|
+
"name": "",
|
|
7280
|
+
"type": "bool"
|
|
6605
7281
|
}
|
|
6606
7282
|
],
|
|
6607
|
-
"name": "updateJumpRateModel",
|
|
6608
|
-
"outputs": [],
|
|
6609
7283
|
"stateMutability": "nonpayable",
|
|
6610
7284
|
"type": "function"
|
|
6611
7285
|
},
|
|
6612
7286
|
{
|
|
6613
7287
|
"inputs": [
|
|
6614
7288
|
{
|
|
6615
|
-
"internalType": "
|
|
6616
|
-
"name": "
|
|
6617
|
-
"type": "
|
|
6618
|
-
},
|
|
6619
|
-
{
|
|
6620
|
-
"internalType": "uint256",
|
|
6621
|
-
"name": "borrows",
|
|
6622
|
-
"type": "uint256"
|
|
7289
|
+
"internalType": "address",
|
|
7290
|
+
"name": "from",
|
|
7291
|
+
"type": "address"
|
|
6623
7292
|
},
|
|
6624
7293
|
{
|
|
6625
|
-
"internalType": "
|
|
6626
|
-
"name": "
|
|
6627
|
-
"type": "
|
|
7294
|
+
"internalType": "address",
|
|
7295
|
+
"name": "to",
|
|
7296
|
+
"type": "address"
|
|
6628
7297
|
},
|
|
6629
7298
|
{
|
|
6630
7299
|
"internalType": "uint256",
|
|
6631
|
-
"name": "
|
|
7300
|
+
"name": "amount",
|
|
6632
7301
|
"type": "uint256"
|
|
6633
7302
|
}
|
|
6634
7303
|
],
|
|
6635
|
-
"name": "
|
|
7304
|
+
"name": "transferFrom",
|
|
6636
7305
|
"outputs": [
|
|
6637
7306
|
{
|
|
6638
|
-
"internalType": "
|
|
7307
|
+
"internalType": "bool",
|
|
6639
7308
|
"name": "",
|
|
6640
|
-
"type": "
|
|
7309
|
+
"type": "bool"
|
|
6641
7310
|
}
|
|
6642
7311
|
],
|
|
6643
|
-
"stateMutability": "
|
|
7312
|
+
"stateMutability": "nonpayable",
|
|
6644
7313
|
"type": "function"
|
|
6645
7314
|
}
|
|
6646
7315
|
]
|
|
6647
7316
|
},
|
|
6648
|
-
"
|
|
6649
|
-
"address": "
|
|
7317
|
+
"MockDAI": {
|
|
7318
|
+
"address": "0x75236711d42D0f7Ba91E03fdCe0C9377F5b76c07",
|
|
6650
7319
|
"abi": [
|
|
6651
7320
|
{
|
|
6652
7321
|
"inputs": [
|
|
@@ -6954,8 +7623,8 @@
|
|
|
6954
7623
|
}
|
|
6955
7624
|
]
|
|
6956
7625
|
},
|
|
6957
|
-
"
|
|
6958
|
-
"address": "
|
|
7626
|
+
"MockEIGEN": {
|
|
7627
|
+
"address": "0xf140594470Bff436aE82F2116ab8a438671C6e83",
|
|
6959
7628
|
"abi": [
|
|
6960
7629
|
{
|
|
6961
7630
|
"inputs": [
|
|
@@ -7263,8 +7932,8 @@
|
|
|
7263
7932
|
}
|
|
7264
7933
|
]
|
|
7265
7934
|
},
|
|
7266
|
-
"
|
|
7267
|
-
"address": "
|
|
7935
|
+
"MockFRAX": {
|
|
7936
|
+
"address": "0x10630d59848547c9F59538E2d8963D63B912C075",
|
|
7268
7937
|
"abi": [
|
|
7269
7938
|
{
|
|
7270
7939
|
"inputs": [
|
|
@@ -7572,8 +8241,8 @@
|
|
|
7572
8241
|
}
|
|
7573
8242
|
]
|
|
7574
8243
|
},
|
|
7575
|
-
"
|
|
7576
|
-
"address": "
|
|
8244
|
+
"MockPT-weETH-26DEC2024": {
|
|
8245
|
+
"address": "0x56107201d3e4b7Db92dEa0Edb9e0454346AEb8B5",
|
|
7577
8246
|
"abi": [
|
|
7578
8247
|
{
|
|
7579
8248
|
"inputs": [
|
|
@@ -7881,8 +8550,8 @@
|
|
|
7881
8550
|
}
|
|
7882
8551
|
]
|
|
7883
8552
|
},
|
|
7884
|
-
"
|
|
7885
|
-
"address": "
|
|
8553
|
+
"MockTUSD": {
|
|
8554
|
+
"address": "0x78b292069da1661b7C12B6E766cB506C220b987a",
|
|
7886
8555
|
"abi": [
|
|
7887
8556
|
{
|
|
7888
8557
|
"inputs": [
|
|
@@ -8190,8 +8859,8 @@
|
|
|
8190
8859
|
}
|
|
8191
8860
|
]
|
|
8192
8861
|
},
|
|
8193
|
-
"
|
|
8194
|
-
"address": "
|
|
8862
|
+
"MockUSDC": {
|
|
8863
|
+
"address": "0x772d68929655ce7234C8C94256526ddA66Ef641E",
|
|
8195
8864
|
"abi": [
|
|
8196
8865
|
{
|
|
8197
8866
|
"inputs": [
|
|
@@ -8499,8 +9168,8 @@
|
|
|
8499
9168
|
}
|
|
8500
9169
|
]
|
|
8501
9170
|
},
|
|
8502
|
-
"
|
|
8503
|
-
"address": "
|
|
9171
|
+
"MockUSDT": {
|
|
9172
|
+
"address": "0x8d412FD0bc5d826615065B931171Eed10F5AF266",
|
|
8504
9173
|
"abi": [
|
|
8505
9174
|
{
|
|
8506
9175
|
"inputs": [
|
|
@@ -8808,8 +9477,8 @@
|
|
|
8808
9477
|
}
|
|
8809
9478
|
]
|
|
8810
9479
|
},
|
|
8811
|
-
"
|
|
8812
|
-
"address": "
|
|
9480
|
+
"MockWBTC": {
|
|
9481
|
+
"address": "0x92A2928f5634BEa89A195e7BeCF0f0FEEDAB885b",
|
|
8813
9482
|
"abi": [
|
|
8814
9483
|
{
|
|
8815
9484
|
"inputs": [
|
|
@@ -9117,8 +9786,8 @@
|
|
|
9117
9786
|
}
|
|
9118
9787
|
]
|
|
9119
9788
|
},
|
|
9120
|
-
"
|
|
9121
|
-
"address": "
|
|
9789
|
+
"MockcrvUSD": {
|
|
9790
|
+
"address": "0x36421d873abCa3E2bE6BB3c819C0CF26374F63b6",
|
|
9122
9791
|
"abi": [
|
|
9123
9792
|
{
|
|
9124
9793
|
"inputs": [
|
|
@@ -9426,8 +10095,8 @@
|
|
|
9426
10095
|
}
|
|
9427
10096
|
]
|
|
9428
10097
|
},
|
|
9429
|
-
"
|
|
9430
|
-
"address": "
|
|
10098
|
+
"MockeBTC": {
|
|
10099
|
+
"address": "0xd48392CCf3fe028023D0783E570DFc71996859d7",
|
|
9431
10100
|
"abi": [
|
|
9432
10101
|
{
|
|
9433
10102
|
"inputs": [
|
|
@@ -9735,8 +10404,8 @@
|
|
|
9735
10404
|
}
|
|
9736
10405
|
]
|
|
9737
10406
|
},
|
|
9738
|
-
"
|
|
9739
|
-
"address": "
|
|
10407
|
+
"MockeETH": {
|
|
10408
|
+
"address": "0x0012875a7395a293Adfc9b5cDC2Cfa352C4cDcD3",
|
|
9740
10409
|
"abi": [
|
|
9741
10410
|
{
|
|
9742
10411
|
"inputs": [
|
|
@@ -10044,8 +10713,8 @@
|
|
|
10044
10713
|
}
|
|
10045
10714
|
]
|
|
10046
10715
|
},
|
|
10047
|
-
"
|
|
10048
|
-
"address": "
|
|
10716
|
+
"MockezETH": {
|
|
10717
|
+
"address": "0xB8eb706b85Ae7355c9FE4371a499F50f3484809c",
|
|
10049
10718
|
"abi": [
|
|
10050
10719
|
{
|
|
10051
10720
|
"inputs": [
|
|
@@ -10353,8 +11022,8 @@
|
|
|
10353
11022
|
}
|
|
10354
11023
|
]
|
|
10355
11024
|
},
|
|
10356
|
-
"
|
|
10357
|
-
"address": "
|
|
11025
|
+
"MockpufETH": {
|
|
11026
|
+
"address": "0x6D9f78b57AEeB0543a3c3B32Cc038bFB14a4bA68",
|
|
10358
11027
|
"abi": [
|
|
10359
11028
|
{
|
|
10360
11029
|
"inputs": [
|
|
@@ -29023,6 +29692,80 @@
|
|
|
29023
29692
|
}
|
|
29024
29693
|
]
|
|
29025
29694
|
},
|
|
29695
|
+
"VToken_vpufETH_LiquidStakedETH": {
|
|
29696
|
+
"address": "0x1E4d64B7c6f1F71969E5137B5Ee8cBa9Ab9c9356",
|
|
29697
|
+
"abi": [
|
|
29698
|
+
{
|
|
29699
|
+
"inputs": [
|
|
29700
|
+
{
|
|
29701
|
+
"internalType": "address",
|
|
29702
|
+
"name": "beacon",
|
|
29703
|
+
"type": "address"
|
|
29704
|
+
},
|
|
29705
|
+
{
|
|
29706
|
+
"internalType": "bytes",
|
|
29707
|
+
"name": "data",
|
|
29708
|
+
"type": "bytes"
|
|
29709
|
+
}
|
|
29710
|
+
],
|
|
29711
|
+
"stateMutability": "payable",
|
|
29712
|
+
"type": "constructor"
|
|
29713
|
+
},
|
|
29714
|
+
{
|
|
29715
|
+
"anonymous": false,
|
|
29716
|
+
"inputs": [
|
|
29717
|
+
{
|
|
29718
|
+
"indexed": false,
|
|
29719
|
+
"internalType": "address",
|
|
29720
|
+
"name": "previousAdmin",
|
|
29721
|
+
"type": "address"
|
|
29722
|
+
},
|
|
29723
|
+
{
|
|
29724
|
+
"indexed": false,
|
|
29725
|
+
"internalType": "address",
|
|
29726
|
+
"name": "newAdmin",
|
|
29727
|
+
"type": "address"
|
|
29728
|
+
}
|
|
29729
|
+
],
|
|
29730
|
+
"name": "AdminChanged",
|
|
29731
|
+
"type": "event"
|
|
29732
|
+
},
|
|
29733
|
+
{
|
|
29734
|
+
"anonymous": false,
|
|
29735
|
+
"inputs": [
|
|
29736
|
+
{
|
|
29737
|
+
"indexed": true,
|
|
29738
|
+
"internalType": "address",
|
|
29739
|
+
"name": "beacon",
|
|
29740
|
+
"type": "address"
|
|
29741
|
+
}
|
|
29742
|
+
],
|
|
29743
|
+
"name": "BeaconUpgraded",
|
|
29744
|
+
"type": "event"
|
|
29745
|
+
},
|
|
29746
|
+
{
|
|
29747
|
+
"anonymous": false,
|
|
29748
|
+
"inputs": [
|
|
29749
|
+
{
|
|
29750
|
+
"indexed": true,
|
|
29751
|
+
"internalType": "address",
|
|
29752
|
+
"name": "implementation",
|
|
29753
|
+
"type": "address"
|
|
29754
|
+
}
|
|
29755
|
+
],
|
|
29756
|
+
"name": "Upgraded",
|
|
29757
|
+
"type": "event"
|
|
29758
|
+
},
|
|
29759
|
+
{
|
|
29760
|
+
"stateMutability": "payable",
|
|
29761
|
+
"type": "fallback"
|
|
29762
|
+
},
|
|
29763
|
+
{
|
|
29764
|
+
"stateMutability": "payable",
|
|
29765
|
+
"type": "receive"
|
|
29766
|
+
}
|
|
29767
|
+
]
|
|
29768
|
+
},
|
|
29026
29769
|
"VToken_vrsETH_LiquidStakedETH": {
|
|
29027
29770
|
"address": "0x20a83DE526F2CF2fCec2131E07b11F956d8f3Cdf",
|
|
29028
29771
|
"abi": [
|