@venusprotocol/isolated-pools 3.8.0 → 3.9.0-dev.2

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 (34) hide show
  1. package/deployments/arbitrumone/VToken_vgmBTC-USDC_Core.json +257 -0
  2. package/deployments/arbitrumone/VToken_vgmWETH-USDC_Core.json +257 -0
  3. package/deployments/arbitrumone.json +148 -0
  4. package/deployments/arbitrumone_addresses.json +2 -0
  5. package/deployments/arbitrumsepolia/JumpRateModelV2_base0bps_slope1500bps_jump25000bps_kink4500bps.json +608 -0
  6. package/deployments/arbitrumsepolia/JumpRateModelV2_base0bps_slope300bps_jump45000bps_kink9000bps.json +608 -0
  7. package/deployments/arbitrumsepolia/MockgmBTC.json +458 -0
  8. package/deployments/arbitrumsepolia/MockgmETH.json +458 -0
  9. package/deployments/arbitrumsepolia/VToken_vgmBTC-USDC_Core.json +257 -0
  10. package/deployments/arbitrumsepolia/VToken_vgmWETH-USDC_Core.json +257 -0
  11. package/deployments/arbitrumsepolia/solcInputs/3c20dc65cc123659b5918437b44f9306.json +403 -0
  12. package/deployments/arbitrumsepolia.json +1549 -63
  13. package/deployments/arbitrumsepolia_addresses.json +6 -0
  14. package/deployments/basemainnet/JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps.json +608 -0
  15. package/deployments/basemainnet/VToken_vwsuperOETHb_Core.json +257 -0
  16. package/deployments/basemainnet/solcInputs/3c20dc65cc123659b5918437b44f9306.json +403 -0
  17. package/deployments/basemainnet.json +434 -0
  18. package/deployments/basemainnet_addresses.json +3 -1
  19. package/deployments/basesepolia/MockwsuperOETHb.json +477 -0
  20. package/deployments/basesepolia/VToken_vwsuperOETHb_Core.json +257 -0
  21. package/deployments/basesepolia/solcInputs/338456d498a2526684d442357ddf6830.json +52 -0
  22. package/deployments/basesepolia/solcInputs/3c20dc65cc123659b5918437b44f9306.json +403 -0
  23. package/deployments/basesepolia.json +402 -0
  24. package/deployments/basesepolia_addresses.json +3 -1
  25. package/dist/deployments/arbitrumone.json +148 -0
  26. package/dist/deployments/arbitrumsepolia.json +1549 -63
  27. package/dist/deployments/basemainnet.json +434 -0
  28. package/dist/deployments/basesepolia.json +402 -0
  29. package/dist/helpers/deploymentConfig.js +165 -12
  30. package/dist/typechain/factories/PoolRegistryInterface__factory.d.ts +16 -2
  31. package/dist/typechain/factories/PoolRegistryInterface__factory.js +119 -0
  32. package/package.json +2 -2
  33. package/typechain/PoolRegistryInterface.d.ts +178 -0
  34. package/typechain/factories/PoolRegistryInterface__factory.ts +119 -0
@@ -3552,6 +3552,366 @@
3552
3552
  }
3553
3553
  ]
3554
3554
  },
3555
+ "JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps": {
3556
+ "address": "0x527c29aAfB367fAd5AFf97855EBFAa610AA514CA",
3557
+ "abi": [
3558
+ {
3559
+ "inputs": [
3560
+ {
3561
+ "internalType": "uint256",
3562
+ "name": "baseRatePerYear_",
3563
+ "type": "uint256"
3564
+ },
3565
+ {
3566
+ "internalType": "uint256",
3567
+ "name": "multiplierPerYear_",
3568
+ "type": "uint256"
3569
+ },
3570
+ {
3571
+ "internalType": "uint256",
3572
+ "name": "jumpMultiplierPerYear_",
3573
+ "type": "uint256"
3574
+ },
3575
+ {
3576
+ "internalType": "uint256",
3577
+ "name": "kink_",
3578
+ "type": "uint256"
3579
+ },
3580
+ {
3581
+ "internalType": "contract IAccessControlManagerV8",
3582
+ "name": "accessControlManager_",
3583
+ "type": "address"
3584
+ },
3585
+ {
3586
+ "internalType": "bool",
3587
+ "name": "timeBased_",
3588
+ "type": "bool"
3589
+ },
3590
+ {
3591
+ "internalType": "uint256",
3592
+ "name": "blocksPerYear_",
3593
+ "type": "uint256"
3594
+ }
3595
+ ],
3596
+ "stateMutability": "nonpayable",
3597
+ "type": "constructor"
3598
+ },
3599
+ {
3600
+ "inputs": [],
3601
+ "name": "InvalidBlocksPerYear",
3602
+ "type": "error"
3603
+ },
3604
+ {
3605
+ "inputs": [],
3606
+ "name": "InvalidTimeBasedConfiguration",
3607
+ "type": "error"
3608
+ },
3609
+ {
3610
+ "inputs": [
3611
+ {
3612
+ "internalType": "address",
3613
+ "name": "sender",
3614
+ "type": "address"
3615
+ },
3616
+ {
3617
+ "internalType": "address",
3618
+ "name": "calledContract",
3619
+ "type": "address"
3620
+ },
3621
+ {
3622
+ "internalType": "string",
3623
+ "name": "methodSignature",
3624
+ "type": "string"
3625
+ }
3626
+ ],
3627
+ "name": "Unauthorized",
3628
+ "type": "error"
3629
+ },
3630
+ {
3631
+ "anonymous": false,
3632
+ "inputs": [
3633
+ {
3634
+ "indexed": false,
3635
+ "internalType": "uint256",
3636
+ "name": "baseRatePerBlockOrTimestamp",
3637
+ "type": "uint256"
3638
+ },
3639
+ {
3640
+ "indexed": false,
3641
+ "internalType": "uint256",
3642
+ "name": "multiplierPerBlockOrTimestamp",
3643
+ "type": "uint256"
3644
+ },
3645
+ {
3646
+ "indexed": false,
3647
+ "internalType": "uint256",
3648
+ "name": "jumpMultiplierPerBlockOrTimestamp",
3649
+ "type": "uint256"
3650
+ },
3651
+ {
3652
+ "indexed": false,
3653
+ "internalType": "uint256",
3654
+ "name": "kink",
3655
+ "type": "uint256"
3656
+ }
3657
+ ],
3658
+ "name": "NewInterestParams",
3659
+ "type": "event"
3660
+ },
3661
+ {
3662
+ "inputs": [],
3663
+ "name": "accessControlManager",
3664
+ "outputs": [
3665
+ {
3666
+ "internalType": "contract IAccessControlManagerV8",
3667
+ "name": "",
3668
+ "type": "address"
3669
+ }
3670
+ ],
3671
+ "stateMutability": "view",
3672
+ "type": "function"
3673
+ },
3674
+ {
3675
+ "inputs": [],
3676
+ "name": "baseRatePerBlock",
3677
+ "outputs": [
3678
+ {
3679
+ "internalType": "uint256",
3680
+ "name": "",
3681
+ "type": "uint256"
3682
+ }
3683
+ ],
3684
+ "stateMutability": "view",
3685
+ "type": "function"
3686
+ },
3687
+ {
3688
+ "inputs": [],
3689
+ "name": "blocksOrSecondsPerYear",
3690
+ "outputs": [
3691
+ {
3692
+ "internalType": "uint256",
3693
+ "name": "",
3694
+ "type": "uint256"
3695
+ }
3696
+ ],
3697
+ "stateMutability": "view",
3698
+ "type": "function"
3699
+ },
3700
+ {
3701
+ "inputs": [],
3702
+ "name": "getBlockNumberOrTimestamp",
3703
+ "outputs": [
3704
+ {
3705
+ "internalType": "uint256",
3706
+ "name": "",
3707
+ "type": "uint256"
3708
+ }
3709
+ ],
3710
+ "stateMutability": "view",
3711
+ "type": "function"
3712
+ },
3713
+ {
3714
+ "inputs": [
3715
+ {
3716
+ "internalType": "uint256",
3717
+ "name": "cash",
3718
+ "type": "uint256"
3719
+ },
3720
+ {
3721
+ "internalType": "uint256",
3722
+ "name": "borrows",
3723
+ "type": "uint256"
3724
+ },
3725
+ {
3726
+ "internalType": "uint256",
3727
+ "name": "reserves",
3728
+ "type": "uint256"
3729
+ },
3730
+ {
3731
+ "internalType": "uint256",
3732
+ "name": "badDebt",
3733
+ "type": "uint256"
3734
+ }
3735
+ ],
3736
+ "name": "getBorrowRate",
3737
+ "outputs": [
3738
+ {
3739
+ "internalType": "uint256",
3740
+ "name": "",
3741
+ "type": "uint256"
3742
+ }
3743
+ ],
3744
+ "stateMutability": "view",
3745
+ "type": "function"
3746
+ },
3747
+ {
3748
+ "inputs": [
3749
+ {
3750
+ "internalType": "uint256",
3751
+ "name": "cash",
3752
+ "type": "uint256"
3753
+ },
3754
+ {
3755
+ "internalType": "uint256",
3756
+ "name": "borrows",
3757
+ "type": "uint256"
3758
+ },
3759
+ {
3760
+ "internalType": "uint256",
3761
+ "name": "reserves",
3762
+ "type": "uint256"
3763
+ },
3764
+ {
3765
+ "internalType": "uint256",
3766
+ "name": "reserveFactorMantissa",
3767
+ "type": "uint256"
3768
+ },
3769
+ {
3770
+ "internalType": "uint256",
3771
+ "name": "badDebt",
3772
+ "type": "uint256"
3773
+ }
3774
+ ],
3775
+ "name": "getSupplyRate",
3776
+ "outputs": [
3777
+ {
3778
+ "internalType": "uint256",
3779
+ "name": "",
3780
+ "type": "uint256"
3781
+ }
3782
+ ],
3783
+ "stateMutability": "view",
3784
+ "type": "function"
3785
+ },
3786
+ {
3787
+ "inputs": [],
3788
+ "name": "isInterestRateModel",
3789
+ "outputs": [
3790
+ {
3791
+ "internalType": "bool",
3792
+ "name": "",
3793
+ "type": "bool"
3794
+ }
3795
+ ],
3796
+ "stateMutability": "pure",
3797
+ "type": "function"
3798
+ },
3799
+ {
3800
+ "inputs": [],
3801
+ "name": "isTimeBased",
3802
+ "outputs": [
3803
+ {
3804
+ "internalType": "bool",
3805
+ "name": "",
3806
+ "type": "bool"
3807
+ }
3808
+ ],
3809
+ "stateMutability": "view",
3810
+ "type": "function"
3811
+ },
3812
+ {
3813
+ "inputs": [],
3814
+ "name": "jumpMultiplierPerBlock",
3815
+ "outputs": [
3816
+ {
3817
+ "internalType": "uint256",
3818
+ "name": "",
3819
+ "type": "uint256"
3820
+ }
3821
+ ],
3822
+ "stateMutability": "view",
3823
+ "type": "function"
3824
+ },
3825
+ {
3826
+ "inputs": [],
3827
+ "name": "kink",
3828
+ "outputs": [
3829
+ {
3830
+ "internalType": "uint256",
3831
+ "name": "",
3832
+ "type": "uint256"
3833
+ }
3834
+ ],
3835
+ "stateMutability": "view",
3836
+ "type": "function"
3837
+ },
3838
+ {
3839
+ "inputs": [],
3840
+ "name": "multiplierPerBlock",
3841
+ "outputs": [
3842
+ {
3843
+ "internalType": "uint256",
3844
+ "name": "",
3845
+ "type": "uint256"
3846
+ }
3847
+ ],
3848
+ "stateMutability": "view",
3849
+ "type": "function"
3850
+ },
3851
+ {
3852
+ "inputs": [
3853
+ {
3854
+ "internalType": "uint256",
3855
+ "name": "baseRatePerYear",
3856
+ "type": "uint256"
3857
+ },
3858
+ {
3859
+ "internalType": "uint256",
3860
+ "name": "multiplierPerYear",
3861
+ "type": "uint256"
3862
+ },
3863
+ {
3864
+ "internalType": "uint256",
3865
+ "name": "jumpMultiplierPerYear",
3866
+ "type": "uint256"
3867
+ },
3868
+ {
3869
+ "internalType": "uint256",
3870
+ "name": "kink_",
3871
+ "type": "uint256"
3872
+ }
3873
+ ],
3874
+ "name": "updateJumpRateModel",
3875
+ "outputs": [],
3876
+ "stateMutability": "nonpayable",
3877
+ "type": "function"
3878
+ },
3879
+ {
3880
+ "inputs": [
3881
+ {
3882
+ "internalType": "uint256",
3883
+ "name": "cash",
3884
+ "type": "uint256"
3885
+ },
3886
+ {
3887
+ "internalType": "uint256",
3888
+ "name": "borrows",
3889
+ "type": "uint256"
3890
+ },
3891
+ {
3892
+ "internalType": "uint256",
3893
+ "name": "reserves",
3894
+ "type": "uint256"
3895
+ },
3896
+ {
3897
+ "internalType": "uint256",
3898
+ "name": "badDebt",
3899
+ "type": "uint256"
3900
+ }
3901
+ ],
3902
+ "name": "utilizationRate",
3903
+ "outputs": [
3904
+ {
3905
+ "internalType": "uint256",
3906
+ "name": "",
3907
+ "type": "uint256"
3908
+ }
3909
+ ],
3910
+ "stateMutability": "pure",
3911
+ "type": "function"
3912
+ }
3913
+ ]
3914
+ },
3555
3915
  "NativeTokenGateway_vWETH_Core": {
3556
3916
  "address": "0x8e890ca3829c740895cdEACd4a3BE36ff9343643",
3557
3917
  "abi": [
@@ -9127,6 +9487,80 @@
9127
9487
  "type": "receive"
9128
9488
  }
9129
9489
  ]
9490
+ },
9491
+ "VToken_vwsuperOETHb_Core": {
9492
+ "address": "0x75201D81B3B0b9D17b179118837Be37f64fc4930",
9493
+ "abi": [
9494
+ {
9495
+ "inputs": [
9496
+ {
9497
+ "internalType": "address",
9498
+ "name": "beacon",
9499
+ "type": "address"
9500
+ },
9501
+ {
9502
+ "internalType": "bytes",
9503
+ "name": "data",
9504
+ "type": "bytes"
9505
+ }
9506
+ ],
9507
+ "stateMutability": "payable",
9508
+ "type": "constructor"
9509
+ },
9510
+ {
9511
+ "anonymous": false,
9512
+ "inputs": [
9513
+ {
9514
+ "indexed": false,
9515
+ "internalType": "address",
9516
+ "name": "previousAdmin",
9517
+ "type": "address"
9518
+ },
9519
+ {
9520
+ "indexed": false,
9521
+ "internalType": "address",
9522
+ "name": "newAdmin",
9523
+ "type": "address"
9524
+ }
9525
+ ],
9526
+ "name": "AdminChanged",
9527
+ "type": "event"
9528
+ },
9529
+ {
9530
+ "anonymous": false,
9531
+ "inputs": [
9532
+ {
9533
+ "indexed": true,
9534
+ "internalType": "address",
9535
+ "name": "beacon",
9536
+ "type": "address"
9537
+ }
9538
+ ],
9539
+ "name": "BeaconUpgraded",
9540
+ "type": "event"
9541
+ },
9542
+ {
9543
+ "anonymous": false,
9544
+ "inputs": [
9545
+ {
9546
+ "indexed": true,
9547
+ "internalType": "address",
9548
+ "name": "implementation",
9549
+ "type": "address"
9550
+ }
9551
+ ],
9552
+ "name": "Upgraded",
9553
+ "type": "event"
9554
+ },
9555
+ {
9556
+ "stateMutability": "payable",
9557
+ "type": "fallback"
9558
+ },
9559
+ {
9560
+ "stateMutability": "payable",
9561
+ "type": "receive"
9562
+ }
9563
+ ]
9130
9564
  }
9131
9565
  }
9132
9566
  }