@venusprotocol/isolated-pools 3.7.0-dev.3 → 3.7.0-dev.5

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 (28) hide show
  1. package/deployments/arbitrumone/JumpRateModelV2_base0bps_slope300bps_jump45000bps_kink9000bps.json +608 -0
  2. package/deployments/arbitrumone/solcInputs/3c20dc65cc123659b5918437b44f9306.json +403 -0
  3. package/deployments/arbitrumone.json +360 -0
  4. package/deployments/arbitrumone_addresses.json +1 -0
  5. package/deployments/bscmainnet/JumpRateModelV2_base0bps_slope300bps_jump45000bps_kink9000bps.json +608 -0
  6. package/deployments/bscmainnet.json +360 -0
  7. package/deployments/bscmainnet_addresses.json +1 -0
  8. package/deployments/ethereum/JumpRateModelV2_base0bps_slope300bps_jump45000bps_kink9000bps.json +608 -0
  9. package/deployments/ethereum/JumpRateModelV2_base0bps_slope450bps_jump20000bps_kink4500bps.json +608 -0
  10. package/deployments/ethereum/VToken_vpufETH_LiquidStakedETH.json +257 -0
  11. package/deployments/ethereum.json +861 -67
  12. package/deployments/ethereum_addresses.json +3 -0
  13. package/deployments/opbnbmainnet/JumpRateModelV2_base0bps_slope300bps_jump45000bps_kink9000bps.json +608 -0
  14. package/deployments/opbnbmainnet/solcInputs/3c20dc65cc123659b5918437b44f9306.json +403 -0
  15. package/deployments/opbnbmainnet.json +360 -0
  16. package/deployments/opbnbmainnet_addresses.json +1 -0
  17. package/deployments/sepolia/JumpRateModelV2_base0bps_slope450bps_jump20000bps_kink4500bps.json +608 -0
  18. package/deployments/sepolia/MockpufETH.json +458 -0
  19. package/deployments/sepolia/VToken_vpufETH_LiquidStakedETH.json +257 -0
  20. package/deployments/sepolia.json +931 -188
  21. package/deployments/sepolia_addresses.json +3 -0
  22. package/dist/deployments/arbitrumone.json +360 -0
  23. package/dist/deployments/bscmainnet.json +360 -0
  24. package/dist/deployments/ethereum.json +861 -67
  25. package/dist/deployments/opbnbmainnet.json +360 -0
  26. package/dist/deployments/sepolia.json +931 -188
  27. package/dist/helpers/deploymentConfig.js +66 -16
  28. package/package.json +1 -1
@@ -3258,60 +3258,765 @@
3258
3258
  }
3259
3259
  ]
3260
3260
  },
3261
- "JumpRateModelV2_base0bps_slope300bps_jump8000bps_kink9000bps": {
3262
- "address": "0xe1747F8D64C297DBB482c4FD8fd11EA73F7Dc85a",
3261
+ "JumpRateModelV2_base0bps_slope300bps_jump45000bps_kink9000bps": {
3262
+ "address": "0x2F81dAA9de0fD60fb9B105Cfc5b67A31Fda547b6",
3263
3263
  "abi": [
3264
3264
  {
3265
3265
  "inputs": [
3266
3266
  {
3267
3267
  "internalType": "uint256",
3268
- "name": "baseRatePerYear_",
3268
+ "name": "baseRatePerYear_",
3269
+ "type": "uint256"
3270
+ },
3271
+ {
3272
+ "internalType": "uint256",
3273
+ "name": "multiplierPerYear_",
3274
+ "type": "uint256"
3275
+ },
3276
+ {
3277
+ "internalType": "uint256",
3278
+ "name": "jumpMultiplierPerYear_",
3279
+ "type": "uint256"
3280
+ },
3281
+ {
3282
+ "internalType": "uint256",
3283
+ "name": "kink_",
3284
+ "type": "uint256"
3285
+ },
3286
+ {
3287
+ "internalType": "contract IAccessControlManagerV8",
3288
+ "name": "accessControlManager_",
3289
+ "type": "address"
3290
+ },
3291
+ {
3292
+ "internalType": "bool",
3293
+ "name": "timeBased_",
3294
+ "type": "bool"
3295
+ },
3296
+ {
3297
+ "internalType": "uint256",
3298
+ "name": "blocksPerYear_",
3299
+ "type": "uint256"
3300
+ }
3301
+ ],
3302
+ "stateMutability": "nonpayable",
3303
+ "type": "constructor"
3304
+ },
3305
+ {
3306
+ "inputs": [],
3307
+ "name": "InvalidBlocksPerYear",
3308
+ "type": "error"
3309
+ },
3310
+ {
3311
+ "inputs": [],
3312
+ "name": "InvalidTimeBasedConfiguration",
3313
+ "type": "error"
3314
+ },
3315
+ {
3316
+ "inputs": [
3317
+ {
3318
+ "internalType": "address",
3319
+ "name": "sender",
3320
+ "type": "address"
3321
+ },
3322
+ {
3323
+ "internalType": "address",
3324
+ "name": "calledContract",
3325
+ "type": "address"
3326
+ },
3327
+ {
3328
+ "internalType": "string",
3329
+ "name": "methodSignature",
3330
+ "type": "string"
3331
+ }
3332
+ ],
3333
+ "name": "Unauthorized",
3334
+ "type": "error"
3335
+ },
3336
+ {
3337
+ "anonymous": false,
3338
+ "inputs": [
3339
+ {
3340
+ "indexed": false,
3341
+ "internalType": "uint256",
3342
+ "name": "baseRatePerBlockOrTimestamp",
3343
+ "type": "uint256"
3344
+ },
3345
+ {
3346
+ "indexed": false,
3347
+ "internalType": "uint256",
3348
+ "name": "multiplierPerBlockOrTimestamp",
3349
+ "type": "uint256"
3350
+ },
3351
+ {
3352
+ "indexed": false,
3353
+ "internalType": "uint256",
3354
+ "name": "jumpMultiplierPerBlockOrTimestamp",
3355
+ "type": "uint256"
3356
+ },
3357
+ {
3358
+ "indexed": false,
3359
+ "internalType": "uint256",
3360
+ "name": "kink",
3361
+ "type": "uint256"
3362
+ }
3363
+ ],
3364
+ "name": "NewInterestParams",
3365
+ "type": "event"
3366
+ },
3367
+ {
3368
+ "inputs": [],
3369
+ "name": "accessControlManager",
3370
+ "outputs": [
3371
+ {
3372
+ "internalType": "contract IAccessControlManagerV8",
3373
+ "name": "",
3374
+ "type": "address"
3375
+ }
3376
+ ],
3377
+ "stateMutability": "view",
3378
+ "type": "function"
3379
+ },
3380
+ {
3381
+ "inputs": [],
3382
+ "name": "baseRatePerBlock",
3383
+ "outputs": [
3384
+ {
3385
+ "internalType": "uint256",
3386
+ "name": "",
3387
+ "type": "uint256"
3388
+ }
3389
+ ],
3390
+ "stateMutability": "view",
3391
+ "type": "function"
3392
+ },
3393
+ {
3394
+ "inputs": [],
3395
+ "name": "blocksOrSecondsPerYear",
3396
+ "outputs": [
3397
+ {
3398
+ "internalType": "uint256",
3399
+ "name": "",
3400
+ "type": "uint256"
3401
+ }
3402
+ ],
3403
+ "stateMutability": "view",
3404
+ "type": "function"
3405
+ },
3406
+ {
3407
+ "inputs": [],
3408
+ "name": "getBlockNumberOrTimestamp",
3409
+ "outputs": [
3410
+ {
3411
+ "internalType": "uint256",
3412
+ "name": "",
3413
+ "type": "uint256"
3414
+ }
3415
+ ],
3416
+ "stateMutability": "view",
3417
+ "type": "function"
3418
+ },
3419
+ {
3420
+ "inputs": [
3421
+ {
3422
+ "internalType": "uint256",
3423
+ "name": "cash",
3424
+ "type": "uint256"
3425
+ },
3426
+ {
3427
+ "internalType": "uint256",
3428
+ "name": "borrows",
3429
+ "type": "uint256"
3430
+ },
3431
+ {
3432
+ "internalType": "uint256",
3433
+ "name": "reserves",
3434
+ "type": "uint256"
3435
+ },
3436
+ {
3437
+ "internalType": "uint256",
3438
+ "name": "badDebt",
3439
+ "type": "uint256"
3440
+ }
3441
+ ],
3442
+ "name": "getBorrowRate",
3443
+ "outputs": [
3444
+ {
3445
+ "internalType": "uint256",
3446
+ "name": "",
3447
+ "type": "uint256"
3448
+ }
3449
+ ],
3450
+ "stateMutability": "view",
3451
+ "type": "function"
3452
+ },
3453
+ {
3454
+ "inputs": [
3455
+ {
3456
+ "internalType": "uint256",
3457
+ "name": "cash",
3458
+ "type": "uint256"
3459
+ },
3460
+ {
3461
+ "internalType": "uint256",
3462
+ "name": "borrows",
3463
+ "type": "uint256"
3464
+ },
3465
+ {
3466
+ "internalType": "uint256",
3467
+ "name": "reserves",
3468
+ "type": "uint256"
3469
+ },
3470
+ {
3471
+ "internalType": "uint256",
3472
+ "name": "reserveFactorMantissa",
3473
+ "type": "uint256"
3474
+ },
3475
+ {
3476
+ "internalType": "uint256",
3477
+ "name": "badDebt",
3478
+ "type": "uint256"
3479
+ }
3480
+ ],
3481
+ "name": "getSupplyRate",
3482
+ "outputs": [
3483
+ {
3484
+ "internalType": "uint256",
3485
+ "name": "",
3486
+ "type": "uint256"
3487
+ }
3488
+ ],
3489
+ "stateMutability": "view",
3490
+ "type": "function"
3491
+ },
3492
+ {
3493
+ "inputs": [],
3494
+ "name": "isInterestRateModel",
3495
+ "outputs": [
3496
+ {
3497
+ "internalType": "bool",
3498
+ "name": "",
3499
+ "type": "bool"
3500
+ }
3501
+ ],
3502
+ "stateMutability": "pure",
3503
+ "type": "function"
3504
+ },
3505
+ {
3506
+ "inputs": [],
3507
+ "name": "isTimeBased",
3508
+ "outputs": [
3509
+ {
3510
+ "internalType": "bool",
3511
+ "name": "",
3512
+ "type": "bool"
3513
+ }
3514
+ ],
3515
+ "stateMutability": "view",
3516
+ "type": "function"
3517
+ },
3518
+ {
3519
+ "inputs": [],
3520
+ "name": "jumpMultiplierPerBlock",
3521
+ "outputs": [
3522
+ {
3523
+ "internalType": "uint256",
3524
+ "name": "",
3525
+ "type": "uint256"
3526
+ }
3527
+ ],
3528
+ "stateMutability": "view",
3529
+ "type": "function"
3530
+ },
3531
+ {
3532
+ "inputs": [],
3533
+ "name": "kink",
3534
+ "outputs": [
3535
+ {
3536
+ "internalType": "uint256",
3537
+ "name": "",
3538
+ "type": "uint256"
3539
+ }
3540
+ ],
3541
+ "stateMutability": "view",
3542
+ "type": "function"
3543
+ },
3544
+ {
3545
+ "inputs": [],
3546
+ "name": "multiplierPerBlock",
3547
+ "outputs": [
3548
+ {
3549
+ "internalType": "uint256",
3550
+ "name": "",
3551
+ "type": "uint256"
3552
+ }
3553
+ ],
3554
+ "stateMutability": "view",
3555
+ "type": "function"
3556
+ },
3557
+ {
3558
+ "inputs": [
3559
+ {
3560
+ "internalType": "uint256",
3561
+ "name": "baseRatePerYear",
3562
+ "type": "uint256"
3563
+ },
3564
+ {
3565
+ "internalType": "uint256",
3566
+ "name": "multiplierPerYear",
3567
+ "type": "uint256"
3568
+ },
3569
+ {
3570
+ "internalType": "uint256",
3571
+ "name": "jumpMultiplierPerYear",
3572
+ "type": "uint256"
3573
+ },
3574
+ {
3575
+ "internalType": "uint256",
3576
+ "name": "kink_",
3577
+ "type": "uint256"
3578
+ }
3579
+ ],
3580
+ "name": "updateJumpRateModel",
3581
+ "outputs": [],
3582
+ "stateMutability": "nonpayable",
3583
+ "type": "function"
3584
+ },
3585
+ {
3586
+ "inputs": [
3587
+ {
3588
+ "internalType": "uint256",
3589
+ "name": "cash",
3590
+ "type": "uint256"
3591
+ },
3592
+ {
3593
+ "internalType": "uint256",
3594
+ "name": "borrows",
3595
+ "type": "uint256"
3596
+ },
3597
+ {
3598
+ "internalType": "uint256",
3599
+ "name": "reserves",
3600
+ "type": "uint256"
3601
+ },
3602
+ {
3603
+ "internalType": "uint256",
3604
+ "name": "badDebt",
3605
+ "type": "uint256"
3606
+ }
3607
+ ],
3608
+ "name": "utilizationRate",
3609
+ "outputs": [
3610
+ {
3611
+ "internalType": "uint256",
3612
+ "name": "",
3613
+ "type": "uint256"
3614
+ }
3615
+ ],
3616
+ "stateMutability": "pure",
3617
+ "type": "function"
3618
+ }
3619
+ ]
3620
+ },
3621
+ "JumpRateModelV2_base0bps_slope300bps_jump8000bps_kink9000bps": {
3622
+ "address": "0xe1747F8D64C297DBB482c4FD8fd11EA73F7Dc85a",
3623
+ "abi": [
3624
+ {
3625
+ "inputs": [
3626
+ {
3627
+ "internalType": "uint256",
3628
+ "name": "baseRatePerYear_",
3629
+ "type": "uint256"
3630
+ },
3631
+ {
3632
+ "internalType": "uint256",
3633
+ "name": "multiplierPerYear_",
3634
+ "type": "uint256"
3635
+ },
3636
+ {
3637
+ "internalType": "uint256",
3638
+ "name": "jumpMultiplierPerYear_",
3639
+ "type": "uint256"
3640
+ },
3641
+ {
3642
+ "internalType": "uint256",
3643
+ "name": "kink_",
3644
+ "type": "uint256"
3645
+ },
3646
+ {
3647
+ "internalType": "contract IAccessControlManagerV8",
3648
+ "name": "accessControlManager_",
3649
+ "type": "address"
3650
+ },
3651
+ {
3652
+ "internalType": "bool",
3653
+ "name": "timeBased_",
3654
+ "type": "bool"
3655
+ },
3656
+ {
3657
+ "internalType": "uint256",
3658
+ "name": "blocksPerYear_",
3659
+ "type": "uint256"
3660
+ }
3661
+ ],
3662
+ "stateMutability": "nonpayable",
3663
+ "type": "constructor"
3664
+ },
3665
+ {
3666
+ "inputs": [],
3667
+ "name": "InvalidBlocksPerYear",
3668
+ "type": "error"
3669
+ },
3670
+ {
3671
+ "inputs": [],
3672
+ "name": "InvalidTimeBasedConfiguration",
3673
+ "type": "error"
3674
+ },
3675
+ {
3676
+ "inputs": [
3677
+ {
3678
+ "internalType": "address",
3679
+ "name": "sender",
3680
+ "type": "address"
3681
+ },
3682
+ {
3683
+ "internalType": "address",
3684
+ "name": "calledContract",
3685
+ "type": "address"
3686
+ },
3687
+ {
3688
+ "internalType": "string",
3689
+ "name": "methodSignature",
3690
+ "type": "string"
3691
+ }
3692
+ ],
3693
+ "name": "Unauthorized",
3694
+ "type": "error"
3695
+ },
3696
+ {
3697
+ "anonymous": false,
3698
+ "inputs": [
3699
+ {
3700
+ "indexed": false,
3701
+ "internalType": "uint256",
3702
+ "name": "baseRatePerBlockOrTimestamp",
3703
+ "type": "uint256"
3704
+ },
3705
+ {
3706
+ "indexed": false,
3707
+ "internalType": "uint256",
3708
+ "name": "multiplierPerBlockOrTimestamp",
3709
+ "type": "uint256"
3710
+ },
3711
+ {
3712
+ "indexed": false,
3713
+ "internalType": "uint256",
3714
+ "name": "jumpMultiplierPerBlockOrTimestamp",
3715
+ "type": "uint256"
3716
+ },
3717
+ {
3718
+ "indexed": false,
3719
+ "internalType": "uint256",
3720
+ "name": "kink",
3721
+ "type": "uint256"
3722
+ }
3723
+ ],
3724
+ "name": "NewInterestParams",
3725
+ "type": "event"
3726
+ },
3727
+ {
3728
+ "inputs": [],
3729
+ "name": "accessControlManager",
3730
+ "outputs": [
3731
+ {
3732
+ "internalType": "contract IAccessControlManagerV8",
3733
+ "name": "",
3734
+ "type": "address"
3735
+ }
3736
+ ],
3737
+ "stateMutability": "view",
3738
+ "type": "function"
3739
+ },
3740
+ {
3741
+ "inputs": [],
3742
+ "name": "baseRatePerBlock",
3743
+ "outputs": [
3744
+ {
3745
+ "internalType": "uint256",
3746
+ "name": "",
3747
+ "type": "uint256"
3748
+ }
3749
+ ],
3750
+ "stateMutability": "view",
3751
+ "type": "function"
3752
+ },
3753
+ {
3754
+ "inputs": [],
3755
+ "name": "blocksOrSecondsPerYear",
3756
+ "outputs": [
3757
+ {
3758
+ "internalType": "uint256",
3759
+ "name": "",
3760
+ "type": "uint256"
3761
+ }
3762
+ ],
3763
+ "stateMutability": "view",
3764
+ "type": "function"
3765
+ },
3766
+ {
3767
+ "inputs": [],
3768
+ "name": "getBlockNumberOrTimestamp",
3769
+ "outputs": [
3770
+ {
3771
+ "internalType": "uint256",
3772
+ "name": "",
3773
+ "type": "uint256"
3774
+ }
3775
+ ],
3776
+ "stateMutability": "view",
3777
+ "type": "function"
3778
+ },
3779
+ {
3780
+ "inputs": [
3781
+ {
3782
+ "internalType": "uint256",
3783
+ "name": "cash",
3784
+ "type": "uint256"
3785
+ },
3786
+ {
3787
+ "internalType": "uint256",
3788
+ "name": "borrows",
3789
+ "type": "uint256"
3790
+ },
3791
+ {
3792
+ "internalType": "uint256",
3793
+ "name": "reserves",
3794
+ "type": "uint256"
3795
+ },
3796
+ {
3797
+ "internalType": "uint256",
3798
+ "name": "badDebt",
3799
+ "type": "uint256"
3800
+ }
3801
+ ],
3802
+ "name": "getBorrowRate",
3803
+ "outputs": [
3804
+ {
3805
+ "internalType": "uint256",
3806
+ "name": "",
3807
+ "type": "uint256"
3808
+ }
3809
+ ],
3810
+ "stateMutability": "view",
3811
+ "type": "function"
3812
+ },
3813
+ {
3814
+ "inputs": [
3815
+ {
3816
+ "internalType": "uint256",
3817
+ "name": "cash",
3818
+ "type": "uint256"
3819
+ },
3820
+ {
3821
+ "internalType": "uint256",
3822
+ "name": "borrows",
3823
+ "type": "uint256"
3824
+ },
3825
+ {
3826
+ "internalType": "uint256",
3827
+ "name": "reserves",
3828
+ "type": "uint256"
3829
+ },
3830
+ {
3831
+ "internalType": "uint256",
3832
+ "name": "reserveFactorMantissa",
3833
+ "type": "uint256"
3834
+ },
3835
+ {
3836
+ "internalType": "uint256",
3837
+ "name": "badDebt",
3838
+ "type": "uint256"
3839
+ }
3840
+ ],
3841
+ "name": "getSupplyRate",
3842
+ "outputs": [
3843
+ {
3844
+ "internalType": "uint256",
3845
+ "name": "",
3846
+ "type": "uint256"
3847
+ }
3848
+ ],
3849
+ "stateMutability": "view",
3850
+ "type": "function"
3851
+ },
3852
+ {
3853
+ "inputs": [],
3854
+ "name": "isInterestRateModel",
3855
+ "outputs": [
3856
+ {
3857
+ "internalType": "bool",
3858
+ "name": "",
3859
+ "type": "bool"
3860
+ }
3861
+ ],
3862
+ "stateMutability": "pure",
3863
+ "type": "function"
3864
+ },
3865
+ {
3866
+ "inputs": [],
3867
+ "name": "isTimeBased",
3868
+ "outputs": [
3869
+ {
3870
+ "internalType": "bool",
3871
+ "name": "",
3872
+ "type": "bool"
3873
+ }
3874
+ ],
3875
+ "stateMutability": "view",
3876
+ "type": "function"
3877
+ },
3878
+ {
3879
+ "inputs": [],
3880
+ "name": "jumpMultiplierPerBlock",
3881
+ "outputs": [
3882
+ {
3883
+ "internalType": "uint256",
3884
+ "name": "",
3885
+ "type": "uint256"
3886
+ }
3887
+ ],
3888
+ "stateMutability": "view",
3889
+ "type": "function"
3890
+ },
3891
+ {
3892
+ "inputs": [],
3893
+ "name": "kink",
3894
+ "outputs": [
3895
+ {
3896
+ "internalType": "uint256",
3897
+ "name": "",
3898
+ "type": "uint256"
3899
+ }
3900
+ ],
3901
+ "stateMutability": "view",
3902
+ "type": "function"
3903
+ },
3904
+ {
3905
+ "inputs": [],
3906
+ "name": "multiplierPerBlock",
3907
+ "outputs": [
3908
+ {
3909
+ "internalType": "uint256",
3910
+ "name": "",
3911
+ "type": "uint256"
3912
+ }
3913
+ ],
3914
+ "stateMutability": "view",
3915
+ "type": "function"
3916
+ },
3917
+ {
3918
+ "inputs": [
3919
+ {
3920
+ "internalType": "uint256",
3921
+ "name": "baseRatePerYear",
3922
+ "type": "uint256"
3923
+ },
3924
+ {
3925
+ "internalType": "uint256",
3926
+ "name": "multiplierPerYear",
3927
+ "type": "uint256"
3928
+ },
3929
+ {
3930
+ "internalType": "uint256",
3931
+ "name": "jumpMultiplierPerYear",
3932
+ "type": "uint256"
3933
+ },
3934
+ {
3935
+ "internalType": "uint256",
3936
+ "name": "kink_",
3937
+ "type": "uint256"
3938
+ }
3939
+ ],
3940
+ "name": "updateJumpRateModel",
3941
+ "outputs": [],
3942
+ "stateMutability": "nonpayable",
3943
+ "type": "function"
3944
+ },
3945
+ {
3946
+ "inputs": [
3947
+ {
3948
+ "internalType": "uint256",
3949
+ "name": "cash",
3269
3950
  "type": "uint256"
3270
3951
  },
3271
3952
  {
3272
3953
  "internalType": "uint256",
3273
- "name": "multiplierPerYear_",
3954
+ "name": "borrows",
3274
3955
  "type": "uint256"
3275
3956
  },
3276
3957
  {
3277
3958
  "internalType": "uint256",
3278
- "name": "jumpMultiplierPerYear_",
3959
+ "name": "reserves",
3279
3960
  "type": "uint256"
3280
3961
  },
3281
3962
  {
3282
3963
  "internalType": "uint256",
3283
- "name": "kink_",
3964
+ "name": "badDebt",
3965
+ "type": "uint256"
3966
+ }
3967
+ ],
3968
+ "name": "utilizationRate",
3969
+ "outputs": [
3970
+ {
3971
+ "internalType": "uint256",
3972
+ "name": "",
3973
+ "type": "uint256"
3974
+ }
3975
+ ],
3976
+ "stateMutability": "pure",
3977
+ "type": "function"
3978
+ }
3979
+ ]
3980
+ },
3981
+ "JumpRateModelV2_base0bps_slope350bps_jump8000bps_kink8000bps": {
3982
+ "address": "0x01E002C218D70dD374566cc40D9fCA1429AB7E65",
3983
+ "abi": [
3984
+ {
3985
+ "inputs": [
3986
+ {
3987
+ "internalType": "uint256",
3988
+ "name": "blocksPerYear_",
3284
3989
  "type": "uint256"
3285
3990
  },
3286
3991
  {
3287
- "internalType": "contract IAccessControlManagerV8",
3288
- "name": "accessControlManager_",
3289
- "type": "address"
3992
+ "internalType": "uint256",
3993
+ "name": "baseRatePerYear",
3994
+ "type": "uint256"
3290
3995
  },
3291
3996
  {
3292
- "internalType": "bool",
3293
- "name": "timeBased_",
3294
- "type": "bool"
3997
+ "internalType": "uint256",
3998
+ "name": "multiplierPerYear",
3999
+ "type": "uint256"
3295
4000
  },
3296
4001
  {
3297
4002
  "internalType": "uint256",
3298
- "name": "blocksPerYear_",
4003
+ "name": "jumpMultiplierPerYear",
4004
+ "type": "uint256"
4005
+ },
4006
+ {
4007
+ "internalType": "uint256",
4008
+ "name": "kink_",
3299
4009
  "type": "uint256"
4010
+ },
4011
+ {
4012
+ "internalType": "contract IAccessControlManagerV8",
4013
+ "name": "accessControlManager_",
4014
+ "type": "address"
3300
4015
  }
3301
4016
  ],
3302
4017
  "stateMutability": "nonpayable",
3303
4018
  "type": "constructor"
3304
4019
  },
3305
- {
3306
- "inputs": [],
3307
- "name": "InvalidBlocksPerYear",
3308
- "type": "error"
3309
- },
3310
- {
3311
- "inputs": [],
3312
- "name": "InvalidTimeBasedConfiguration",
3313
- "type": "error"
3314
- },
3315
4020
  {
3316
4021
  "inputs": [
3317
4022
  {
@@ -3339,19 +4044,19 @@
3339
4044
  {
3340
4045
  "indexed": false,
3341
4046
  "internalType": "uint256",
3342
- "name": "baseRatePerBlockOrTimestamp",
4047
+ "name": "baseRatePerBlock",
3343
4048
  "type": "uint256"
3344
4049
  },
3345
4050
  {
3346
4051
  "indexed": false,
3347
4052
  "internalType": "uint256",
3348
- "name": "multiplierPerBlockOrTimestamp",
4053
+ "name": "multiplierPerBlock",
3349
4054
  "type": "uint256"
3350
4055
  },
3351
4056
  {
3352
4057
  "indexed": false,
3353
4058
  "internalType": "uint256",
3354
- "name": "jumpMultiplierPerBlockOrTimestamp",
4059
+ "name": "jumpMultiplierPerBlock",
3355
4060
  "type": "uint256"
3356
4061
  },
3357
4062
  {
@@ -3392,20 +4097,7 @@
3392
4097
  },
3393
4098
  {
3394
4099
  "inputs": [],
3395
- "name": "blocksOrSecondsPerYear",
3396
- "outputs": [
3397
- {
3398
- "internalType": "uint256",
3399
- "name": "",
3400
- "type": "uint256"
3401
- }
3402
- ],
3403
- "stateMutability": "view",
3404
- "type": "function"
3405
- },
3406
- {
3407
- "inputs": [],
3408
- "name": "getBlockNumberOrTimestamp",
4100
+ "name": "blocksPerYear",
3409
4101
  "outputs": [
3410
4102
  {
3411
4103
  "internalType": "uint256",
@@ -3502,19 +4194,6 @@
3502
4194
  "stateMutability": "pure",
3503
4195
  "type": "function"
3504
4196
  },
3505
- {
3506
- "inputs": [],
3507
- "name": "isTimeBased",
3508
- "outputs": [
3509
- {
3510
- "internalType": "bool",
3511
- "name": "",
3512
- "type": "bool"
3513
- }
3514
- ],
3515
- "stateMutability": "view",
3516
- "type": "function"
3517
- },
3518
4197
  {
3519
4198
  "inputs": [],
3520
4199
  "name": "jumpMultiplierPerBlock",
@@ -3618,29 +4297,24 @@
3618
4297
  }
3619
4298
  ]
3620
4299
  },
3621
- "JumpRateModelV2_base0bps_slope350bps_jump8000bps_kink8000bps": {
3622
- "address": "0x01E002C218D70dD374566cc40D9fCA1429AB7E65",
4300
+ "JumpRateModelV2_base0bps_slope450bps_jump20000bps_kink4500bps": {
4301
+ "address": "0xDaFA3B350288cEb448e0E03077D932f8EF561391",
3623
4302
  "abi": [
3624
4303
  {
3625
4304
  "inputs": [
3626
4305
  {
3627
4306
  "internalType": "uint256",
3628
- "name": "blocksPerYear_",
3629
- "type": "uint256"
3630
- },
3631
- {
3632
- "internalType": "uint256",
3633
- "name": "baseRatePerYear",
4307
+ "name": "baseRatePerYear_",
3634
4308
  "type": "uint256"
3635
4309
  },
3636
4310
  {
3637
4311
  "internalType": "uint256",
3638
- "name": "multiplierPerYear",
4312
+ "name": "multiplierPerYear_",
3639
4313
  "type": "uint256"
3640
4314
  },
3641
4315
  {
3642
4316
  "internalType": "uint256",
3643
- "name": "jumpMultiplierPerYear",
4317
+ "name": "jumpMultiplierPerYear_",
3644
4318
  "type": "uint256"
3645
4319
  },
3646
4320
  {
@@ -3652,11 +4326,31 @@
3652
4326
  "internalType": "contract IAccessControlManagerV8",
3653
4327
  "name": "accessControlManager_",
3654
4328
  "type": "address"
4329
+ },
4330
+ {
4331
+ "internalType": "bool",
4332
+ "name": "timeBased_",
4333
+ "type": "bool"
4334
+ },
4335
+ {
4336
+ "internalType": "uint256",
4337
+ "name": "blocksPerYear_",
4338
+ "type": "uint256"
3655
4339
  }
3656
4340
  ],
3657
4341
  "stateMutability": "nonpayable",
3658
4342
  "type": "constructor"
3659
4343
  },
4344
+ {
4345
+ "inputs": [],
4346
+ "name": "InvalidBlocksPerYear",
4347
+ "type": "error"
4348
+ },
4349
+ {
4350
+ "inputs": [],
4351
+ "name": "InvalidTimeBasedConfiguration",
4352
+ "type": "error"
4353
+ },
3660
4354
  {
3661
4355
  "inputs": [
3662
4356
  {
@@ -3684,19 +4378,19 @@
3684
4378
  {
3685
4379
  "indexed": false,
3686
4380
  "internalType": "uint256",
3687
- "name": "baseRatePerBlock",
4381
+ "name": "baseRatePerBlockOrTimestamp",
3688
4382
  "type": "uint256"
3689
4383
  },
3690
4384
  {
3691
4385
  "indexed": false,
3692
4386
  "internalType": "uint256",
3693
- "name": "multiplierPerBlock",
4387
+ "name": "multiplierPerBlockOrTimestamp",
3694
4388
  "type": "uint256"
3695
4389
  },
3696
4390
  {
3697
4391
  "indexed": false,
3698
4392
  "internalType": "uint256",
3699
- "name": "jumpMultiplierPerBlock",
4393
+ "name": "jumpMultiplierPerBlockOrTimestamp",
3700
4394
  "type": "uint256"
3701
4395
  },
3702
4396
  {
@@ -3737,7 +4431,20 @@
3737
4431
  },
3738
4432
  {
3739
4433
  "inputs": [],
3740
- "name": "blocksPerYear",
4434
+ "name": "blocksOrSecondsPerYear",
4435
+ "outputs": [
4436
+ {
4437
+ "internalType": "uint256",
4438
+ "name": "",
4439
+ "type": "uint256"
4440
+ }
4441
+ ],
4442
+ "stateMutability": "view",
4443
+ "type": "function"
4444
+ },
4445
+ {
4446
+ "inputs": [],
4447
+ "name": "getBlockNumberOrTimestamp",
3741
4448
  "outputs": [
3742
4449
  {
3743
4450
  "internalType": "uint256",
@@ -3834,6 +4541,19 @@
3834
4541
  "stateMutability": "pure",
3835
4542
  "type": "function"
3836
4543
  },
4544
+ {
4545
+ "inputs": [],
4546
+ "name": "isTimeBased",
4547
+ "outputs": [
4548
+ {
4549
+ "internalType": "bool",
4550
+ "name": "",
4551
+ "type": "bool"
4552
+ }
4553
+ ],
4554
+ "stateMutability": "view",
4555
+ "type": "function"
4556
+ },
3837
4557
  {
3838
4558
  "inputs": [],
3839
4559
  "name": "jumpMultiplierPerBlock",
@@ -30064,6 +30784,80 @@
30064
30784
  }
30065
30785
  ]
30066
30786
  },
30787
+ "VToken_vpufETH_LiquidStakedETH": {
30788
+ "address": "0xE0ee5dDeBFe0abe0a4Af50299D68b74Cec31668e",
30789
+ "abi": [
30790
+ {
30791
+ "inputs": [
30792
+ {
30793
+ "internalType": "address",
30794
+ "name": "beacon",
30795
+ "type": "address"
30796
+ },
30797
+ {
30798
+ "internalType": "bytes",
30799
+ "name": "data",
30800
+ "type": "bytes"
30801
+ }
30802
+ ],
30803
+ "stateMutability": "payable",
30804
+ "type": "constructor"
30805
+ },
30806
+ {
30807
+ "anonymous": false,
30808
+ "inputs": [
30809
+ {
30810
+ "indexed": false,
30811
+ "internalType": "address",
30812
+ "name": "previousAdmin",
30813
+ "type": "address"
30814
+ },
30815
+ {
30816
+ "indexed": false,
30817
+ "internalType": "address",
30818
+ "name": "newAdmin",
30819
+ "type": "address"
30820
+ }
30821
+ ],
30822
+ "name": "AdminChanged",
30823
+ "type": "event"
30824
+ },
30825
+ {
30826
+ "anonymous": false,
30827
+ "inputs": [
30828
+ {
30829
+ "indexed": true,
30830
+ "internalType": "address",
30831
+ "name": "beacon",
30832
+ "type": "address"
30833
+ }
30834
+ ],
30835
+ "name": "BeaconUpgraded",
30836
+ "type": "event"
30837
+ },
30838
+ {
30839
+ "anonymous": false,
30840
+ "inputs": [
30841
+ {
30842
+ "indexed": true,
30843
+ "internalType": "address",
30844
+ "name": "implementation",
30845
+ "type": "address"
30846
+ }
30847
+ ],
30848
+ "name": "Upgraded",
30849
+ "type": "event"
30850
+ },
30851
+ {
30852
+ "stateMutability": "payable",
30853
+ "type": "fallback"
30854
+ },
30855
+ {
30856
+ "stateMutability": "payable",
30857
+ "type": "receive"
30858
+ }
30859
+ ]
30860
+ },
30067
30861
  "VToken_vrsETH_LiquidStakedETH": {
30068
30862
  "address": "0xDB6C345f864883a8F4cae87852Ac342589E76D1B",
30069
30863
  "abi": [