@venusprotocol/isolated-pools 3.7.0-dev.2 → 3.7.0-dev.3
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_slope900bps_jump20000bps_kink4500bps.json +608 -0
- package/deployments/ethereum/VToken_veBTC.json +257 -0
- package/deployments/ethereum.json +434 -0
- package/deployments/ethereum_addresses.json +2 -0
- package/deployments/sepolia/JumpRateModelV2_base0bps_slope900bps_jump20000bps_kink4500bps.json +608 -0
- package/deployments/sepolia/MockeBTC.json +458 -0
- package/deployments/sepolia/VToken_veBTC.json +257 -0
- package/deployments/sepolia.json +875 -132
- package/deployments/sepolia_addresses.json +3 -0
- package/dist/deployments/ethereum.json +434 -0
- package/dist/deployments/sepolia.json +875 -132
- package/dist/helpers/deploymentConfig.js +50 -0
- package/package.json +1 -1
|
@@ -5614,6 +5614,366 @@
|
|
|
5614
5614
|
}
|
|
5615
5615
|
]
|
|
5616
5616
|
},
|
|
5617
|
+
"JumpRateModelV2_base0bps_slope900bps_jump20000bps_kink4500bps": {
|
|
5618
|
+
"address": "0xD9a049512ABaA7073D02a398ceD1B92371bff622",
|
|
5619
|
+
"abi": [
|
|
5620
|
+
{
|
|
5621
|
+
"inputs": [
|
|
5622
|
+
{
|
|
5623
|
+
"internalType": "uint256",
|
|
5624
|
+
"name": "baseRatePerYear_",
|
|
5625
|
+
"type": "uint256"
|
|
5626
|
+
},
|
|
5627
|
+
{
|
|
5628
|
+
"internalType": "uint256",
|
|
5629
|
+
"name": "multiplierPerYear_",
|
|
5630
|
+
"type": "uint256"
|
|
5631
|
+
},
|
|
5632
|
+
{
|
|
5633
|
+
"internalType": "uint256",
|
|
5634
|
+
"name": "jumpMultiplierPerYear_",
|
|
5635
|
+
"type": "uint256"
|
|
5636
|
+
},
|
|
5637
|
+
{
|
|
5638
|
+
"internalType": "uint256",
|
|
5639
|
+
"name": "kink_",
|
|
5640
|
+
"type": "uint256"
|
|
5641
|
+
},
|
|
5642
|
+
{
|
|
5643
|
+
"internalType": "contract IAccessControlManagerV8",
|
|
5644
|
+
"name": "accessControlManager_",
|
|
5645
|
+
"type": "address"
|
|
5646
|
+
},
|
|
5647
|
+
{
|
|
5648
|
+
"internalType": "bool",
|
|
5649
|
+
"name": "timeBased_",
|
|
5650
|
+
"type": "bool"
|
|
5651
|
+
},
|
|
5652
|
+
{
|
|
5653
|
+
"internalType": "uint256",
|
|
5654
|
+
"name": "blocksPerYear_",
|
|
5655
|
+
"type": "uint256"
|
|
5656
|
+
}
|
|
5657
|
+
],
|
|
5658
|
+
"stateMutability": "nonpayable",
|
|
5659
|
+
"type": "constructor"
|
|
5660
|
+
},
|
|
5661
|
+
{
|
|
5662
|
+
"inputs": [],
|
|
5663
|
+
"name": "InvalidBlocksPerYear",
|
|
5664
|
+
"type": "error"
|
|
5665
|
+
},
|
|
5666
|
+
{
|
|
5667
|
+
"inputs": [],
|
|
5668
|
+
"name": "InvalidTimeBasedConfiguration",
|
|
5669
|
+
"type": "error"
|
|
5670
|
+
},
|
|
5671
|
+
{
|
|
5672
|
+
"inputs": [
|
|
5673
|
+
{
|
|
5674
|
+
"internalType": "address",
|
|
5675
|
+
"name": "sender",
|
|
5676
|
+
"type": "address"
|
|
5677
|
+
},
|
|
5678
|
+
{
|
|
5679
|
+
"internalType": "address",
|
|
5680
|
+
"name": "calledContract",
|
|
5681
|
+
"type": "address"
|
|
5682
|
+
},
|
|
5683
|
+
{
|
|
5684
|
+
"internalType": "string",
|
|
5685
|
+
"name": "methodSignature",
|
|
5686
|
+
"type": "string"
|
|
5687
|
+
}
|
|
5688
|
+
],
|
|
5689
|
+
"name": "Unauthorized",
|
|
5690
|
+
"type": "error"
|
|
5691
|
+
},
|
|
5692
|
+
{
|
|
5693
|
+
"anonymous": false,
|
|
5694
|
+
"inputs": [
|
|
5695
|
+
{
|
|
5696
|
+
"indexed": false,
|
|
5697
|
+
"internalType": "uint256",
|
|
5698
|
+
"name": "baseRatePerBlockOrTimestamp",
|
|
5699
|
+
"type": "uint256"
|
|
5700
|
+
},
|
|
5701
|
+
{
|
|
5702
|
+
"indexed": false,
|
|
5703
|
+
"internalType": "uint256",
|
|
5704
|
+
"name": "multiplierPerBlockOrTimestamp",
|
|
5705
|
+
"type": "uint256"
|
|
5706
|
+
},
|
|
5707
|
+
{
|
|
5708
|
+
"indexed": false,
|
|
5709
|
+
"internalType": "uint256",
|
|
5710
|
+
"name": "jumpMultiplierPerBlockOrTimestamp",
|
|
5711
|
+
"type": "uint256"
|
|
5712
|
+
},
|
|
5713
|
+
{
|
|
5714
|
+
"indexed": false,
|
|
5715
|
+
"internalType": "uint256",
|
|
5716
|
+
"name": "kink",
|
|
5717
|
+
"type": "uint256"
|
|
5718
|
+
}
|
|
5719
|
+
],
|
|
5720
|
+
"name": "NewInterestParams",
|
|
5721
|
+
"type": "event"
|
|
5722
|
+
},
|
|
5723
|
+
{
|
|
5724
|
+
"inputs": [],
|
|
5725
|
+
"name": "accessControlManager",
|
|
5726
|
+
"outputs": [
|
|
5727
|
+
{
|
|
5728
|
+
"internalType": "contract IAccessControlManagerV8",
|
|
5729
|
+
"name": "",
|
|
5730
|
+
"type": "address"
|
|
5731
|
+
}
|
|
5732
|
+
],
|
|
5733
|
+
"stateMutability": "view",
|
|
5734
|
+
"type": "function"
|
|
5735
|
+
},
|
|
5736
|
+
{
|
|
5737
|
+
"inputs": [],
|
|
5738
|
+
"name": "baseRatePerBlock",
|
|
5739
|
+
"outputs": [
|
|
5740
|
+
{
|
|
5741
|
+
"internalType": "uint256",
|
|
5742
|
+
"name": "",
|
|
5743
|
+
"type": "uint256"
|
|
5744
|
+
}
|
|
5745
|
+
],
|
|
5746
|
+
"stateMutability": "view",
|
|
5747
|
+
"type": "function"
|
|
5748
|
+
},
|
|
5749
|
+
{
|
|
5750
|
+
"inputs": [],
|
|
5751
|
+
"name": "blocksOrSecondsPerYear",
|
|
5752
|
+
"outputs": [
|
|
5753
|
+
{
|
|
5754
|
+
"internalType": "uint256",
|
|
5755
|
+
"name": "",
|
|
5756
|
+
"type": "uint256"
|
|
5757
|
+
}
|
|
5758
|
+
],
|
|
5759
|
+
"stateMutability": "view",
|
|
5760
|
+
"type": "function"
|
|
5761
|
+
},
|
|
5762
|
+
{
|
|
5763
|
+
"inputs": [],
|
|
5764
|
+
"name": "getBlockNumberOrTimestamp",
|
|
5765
|
+
"outputs": [
|
|
5766
|
+
{
|
|
5767
|
+
"internalType": "uint256",
|
|
5768
|
+
"name": "",
|
|
5769
|
+
"type": "uint256"
|
|
5770
|
+
}
|
|
5771
|
+
],
|
|
5772
|
+
"stateMutability": "view",
|
|
5773
|
+
"type": "function"
|
|
5774
|
+
},
|
|
5775
|
+
{
|
|
5776
|
+
"inputs": [
|
|
5777
|
+
{
|
|
5778
|
+
"internalType": "uint256",
|
|
5779
|
+
"name": "cash",
|
|
5780
|
+
"type": "uint256"
|
|
5781
|
+
},
|
|
5782
|
+
{
|
|
5783
|
+
"internalType": "uint256",
|
|
5784
|
+
"name": "borrows",
|
|
5785
|
+
"type": "uint256"
|
|
5786
|
+
},
|
|
5787
|
+
{
|
|
5788
|
+
"internalType": "uint256",
|
|
5789
|
+
"name": "reserves",
|
|
5790
|
+
"type": "uint256"
|
|
5791
|
+
},
|
|
5792
|
+
{
|
|
5793
|
+
"internalType": "uint256",
|
|
5794
|
+
"name": "badDebt",
|
|
5795
|
+
"type": "uint256"
|
|
5796
|
+
}
|
|
5797
|
+
],
|
|
5798
|
+
"name": "getBorrowRate",
|
|
5799
|
+
"outputs": [
|
|
5800
|
+
{
|
|
5801
|
+
"internalType": "uint256",
|
|
5802
|
+
"name": "",
|
|
5803
|
+
"type": "uint256"
|
|
5804
|
+
}
|
|
5805
|
+
],
|
|
5806
|
+
"stateMutability": "view",
|
|
5807
|
+
"type": "function"
|
|
5808
|
+
},
|
|
5809
|
+
{
|
|
5810
|
+
"inputs": [
|
|
5811
|
+
{
|
|
5812
|
+
"internalType": "uint256",
|
|
5813
|
+
"name": "cash",
|
|
5814
|
+
"type": "uint256"
|
|
5815
|
+
},
|
|
5816
|
+
{
|
|
5817
|
+
"internalType": "uint256",
|
|
5818
|
+
"name": "borrows",
|
|
5819
|
+
"type": "uint256"
|
|
5820
|
+
},
|
|
5821
|
+
{
|
|
5822
|
+
"internalType": "uint256",
|
|
5823
|
+
"name": "reserves",
|
|
5824
|
+
"type": "uint256"
|
|
5825
|
+
},
|
|
5826
|
+
{
|
|
5827
|
+
"internalType": "uint256",
|
|
5828
|
+
"name": "reserveFactorMantissa",
|
|
5829
|
+
"type": "uint256"
|
|
5830
|
+
},
|
|
5831
|
+
{
|
|
5832
|
+
"internalType": "uint256",
|
|
5833
|
+
"name": "badDebt",
|
|
5834
|
+
"type": "uint256"
|
|
5835
|
+
}
|
|
5836
|
+
],
|
|
5837
|
+
"name": "getSupplyRate",
|
|
5838
|
+
"outputs": [
|
|
5839
|
+
{
|
|
5840
|
+
"internalType": "uint256",
|
|
5841
|
+
"name": "",
|
|
5842
|
+
"type": "uint256"
|
|
5843
|
+
}
|
|
5844
|
+
],
|
|
5845
|
+
"stateMutability": "view",
|
|
5846
|
+
"type": "function"
|
|
5847
|
+
},
|
|
5848
|
+
{
|
|
5849
|
+
"inputs": [],
|
|
5850
|
+
"name": "isInterestRateModel",
|
|
5851
|
+
"outputs": [
|
|
5852
|
+
{
|
|
5853
|
+
"internalType": "bool",
|
|
5854
|
+
"name": "",
|
|
5855
|
+
"type": "bool"
|
|
5856
|
+
}
|
|
5857
|
+
],
|
|
5858
|
+
"stateMutability": "pure",
|
|
5859
|
+
"type": "function"
|
|
5860
|
+
},
|
|
5861
|
+
{
|
|
5862
|
+
"inputs": [],
|
|
5863
|
+
"name": "isTimeBased",
|
|
5864
|
+
"outputs": [
|
|
5865
|
+
{
|
|
5866
|
+
"internalType": "bool",
|
|
5867
|
+
"name": "",
|
|
5868
|
+
"type": "bool"
|
|
5869
|
+
}
|
|
5870
|
+
],
|
|
5871
|
+
"stateMutability": "view",
|
|
5872
|
+
"type": "function"
|
|
5873
|
+
},
|
|
5874
|
+
{
|
|
5875
|
+
"inputs": [],
|
|
5876
|
+
"name": "jumpMultiplierPerBlock",
|
|
5877
|
+
"outputs": [
|
|
5878
|
+
{
|
|
5879
|
+
"internalType": "uint256",
|
|
5880
|
+
"name": "",
|
|
5881
|
+
"type": "uint256"
|
|
5882
|
+
}
|
|
5883
|
+
],
|
|
5884
|
+
"stateMutability": "view",
|
|
5885
|
+
"type": "function"
|
|
5886
|
+
},
|
|
5887
|
+
{
|
|
5888
|
+
"inputs": [],
|
|
5889
|
+
"name": "kink",
|
|
5890
|
+
"outputs": [
|
|
5891
|
+
{
|
|
5892
|
+
"internalType": "uint256",
|
|
5893
|
+
"name": "",
|
|
5894
|
+
"type": "uint256"
|
|
5895
|
+
}
|
|
5896
|
+
],
|
|
5897
|
+
"stateMutability": "view",
|
|
5898
|
+
"type": "function"
|
|
5899
|
+
},
|
|
5900
|
+
{
|
|
5901
|
+
"inputs": [],
|
|
5902
|
+
"name": "multiplierPerBlock",
|
|
5903
|
+
"outputs": [
|
|
5904
|
+
{
|
|
5905
|
+
"internalType": "uint256",
|
|
5906
|
+
"name": "",
|
|
5907
|
+
"type": "uint256"
|
|
5908
|
+
}
|
|
5909
|
+
],
|
|
5910
|
+
"stateMutability": "view",
|
|
5911
|
+
"type": "function"
|
|
5912
|
+
},
|
|
5913
|
+
{
|
|
5914
|
+
"inputs": [
|
|
5915
|
+
{
|
|
5916
|
+
"internalType": "uint256",
|
|
5917
|
+
"name": "baseRatePerYear",
|
|
5918
|
+
"type": "uint256"
|
|
5919
|
+
},
|
|
5920
|
+
{
|
|
5921
|
+
"internalType": "uint256",
|
|
5922
|
+
"name": "multiplierPerYear",
|
|
5923
|
+
"type": "uint256"
|
|
5924
|
+
},
|
|
5925
|
+
{
|
|
5926
|
+
"internalType": "uint256",
|
|
5927
|
+
"name": "jumpMultiplierPerYear",
|
|
5928
|
+
"type": "uint256"
|
|
5929
|
+
},
|
|
5930
|
+
{
|
|
5931
|
+
"internalType": "uint256",
|
|
5932
|
+
"name": "kink_",
|
|
5933
|
+
"type": "uint256"
|
|
5934
|
+
}
|
|
5935
|
+
],
|
|
5936
|
+
"name": "updateJumpRateModel",
|
|
5937
|
+
"outputs": [],
|
|
5938
|
+
"stateMutability": "nonpayable",
|
|
5939
|
+
"type": "function"
|
|
5940
|
+
},
|
|
5941
|
+
{
|
|
5942
|
+
"inputs": [
|
|
5943
|
+
{
|
|
5944
|
+
"internalType": "uint256",
|
|
5945
|
+
"name": "cash",
|
|
5946
|
+
"type": "uint256"
|
|
5947
|
+
},
|
|
5948
|
+
{
|
|
5949
|
+
"internalType": "uint256",
|
|
5950
|
+
"name": "borrows",
|
|
5951
|
+
"type": "uint256"
|
|
5952
|
+
},
|
|
5953
|
+
{
|
|
5954
|
+
"internalType": "uint256",
|
|
5955
|
+
"name": "reserves",
|
|
5956
|
+
"type": "uint256"
|
|
5957
|
+
},
|
|
5958
|
+
{
|
|
5959
|
+
"internalType": "uint256",
|
|
5960
|
+
"name": "badDebt",
|
|
5961
|
+
"type": "uint256"
|
|
5962
|
+
}
|
|
5963
|
+
],
|
|
5964
|
+
"name": "utilizationRate",
|
|
5965
|
+
"outputs": [
|
|
5966
|
+
{
|
|
5967
|
+
"internalType": "uint256",
|
|
5968
|
+
"name": "",
|
|
5969
|
+
"type": "uint256"
|
|
5970
|
+
}
|
|
5971
|
+
],
|
|
5972
|
+
"stateMutability": "pure",
|
|
5973
|
+
"type": "function"
|
|
5974
|
+
}
|
|
5975
|
+
]
|
|
5976
|
+
},
|
|
5617
5977
|
"JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4000bps": {
|
|
5618
5978
|
"address": "0x50196dfad5030ED54190F75e5F9d88600A4CA0B4",
|
|
5619
5979
|
"abi": [
|
|
@@ -29556,6 +29916,80 @@
|
|
|
29556
29916
|
}
|
|
29557
29917
|
]
|
|
29558
29918
|
},
|
|
29919
|
+
"VToken_veBTC": {
|
|
29920
|
+
"address": "0x325cEB02fe1C2fF816A83a5770eA0E88e2faEcF2",
|
|
29921
|
+
"abi": [
|
|
29922
|
+
{
|
|
29923
|
+
"inputs": [
|
|
29924
|
+
{
|
|
29925
|
+
"internalType": "address",
|
|
29926
|
+
"name": "beacon",
|
|
29927
|
+
"type": "address"
|
|
29928
|
+
},
|
|
29929
|
+
{
|
|
29930
|
+
"internalType": "bytes",
|
|
29931
|
+
"name": "data",
|
|
29932
|
+
"type": "bytes"
|
|
29933
|
+
}
|
|
29934
|
+
],
|
|
29935
|
+
"stateMutability": "payable",
|
|
29936
|
+
"type": "constructor"
|
|
29937
|
+
},
|
|
29938
|
+
{
|
|
29939
|
+
"anonymous": false,
|
|
29940
|
+
"inputs": [
|
|
29941
|
+
{
|
|
29942
|
+
"indexed": false,
|
|
29943
|
+
"internalType": "address",
|
|
29944
|
+
"name": "previousAdmin",
|
|
29945
|
+
"type": "address"
|
|
29946
|
+
},
|
|
29947
|
+
{
|
|
29948
|
+
"indexed": false,
|
|
29949
|
+
"internalType": "address",
|
|
29950
|
+
"name": "newAdmin",
|
|
29951
|
+
"type": "address"
|
|
29952
|
+
}
|
|
29953
|
+
],
|
|
29954
|
+
"name": "AdminChanged",
|
|
29955
|
+
"type": "event"
|
|
29956
|
+
},
|
|
29957
|
+
{
|
|
29958
|
+
"anonymous": false,
|
|
29959
|
+
"inputs": [
|
|
29960
|
+
{
|
|
29961
|
+
"indexed": true,
|
|
29962
|
+
"internalType": "address",
|
|
29963
|
+
"name": "beacon",
|
|
29964
|
+
"type": "address"
|
|
29965
|
+
}
|
|
29966
|
+
],
|
|
29967
|
+
"name": "BeaconUpgraded",
|
|
29968
|
+
"type": "event"
|
|
29969
|
+
},
|
|
29970
|
+
{
|
|
29971
|
+
"anonymous": false,
|
|
29972
|
+
"inputs": [
|
|
29973
|
+
{
|
|
29974
|
+
"indexed": true,
|
|
29975
|
+
"internalType": "address",
|
|
29976
|
+
"name": "implementation",
|
|
29977
|
+
"type": "address"
|
|
29978
|
+
}
|
|
29979
|
+
],
|
|
29980
|
+
"name": "Upgraded",
|
|
29981
|
+
"type": "event"
|
|
29982
|
+
},
|
|
29983
|
+
{
|
|
29984
|
+
"stateMutability": "payable",
|
|
29985
|
+
"type": "fallback"
|
|
29986
|
+
},
|
|
29987
|
+
{
|
|
29988
|
+
"stateMutability": "payable",
|
|
29989
|
+
"type": "receive"
|
|
29990
|
+
}
|
|
29991
|
+
]
|
|
29992
|
+
},
|
|
29559
29993
|
"VToken_vezETH_LiquidStakedETH": {
|
|
29560
29994
|
"address": "0xA854D35664c658280fFf27B6eDC6C4195c3229B3",
|
|
29561
29995
|
"abi": [
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"JumpRateModelV2_base0bps_slope500bps_jump8000bps_kink7500bps": "0x07a912CD58CbB5736d015608F424c43B2CAd0B5e",
|
|
18
18
|
"JumpRateModelV2_base0bps_slope700bps_jump8000bps_kink8000bps": "0x0F84aF9A902dbb5a0986e5D5003189cF2B80A760",
|
|
19
19
|
"JumpRateModelV2_base0bps_slope875bps_jump25000bps_kink8000bps": "0xD9D3E7adA04993Cf06dE1A5c9C7f101BD1DefBF4",
|
|
20
|
+
"JumpRateModelV2_base0bps_slope900bps_jump20000bps_kink4500bps": "0xD9a049512ABaA7073D02a398ceD1B92371bff622",
|
|
20
21
|
"JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4000bps": "0x50196dfad5030ED54190F75e5F9d88600A4CA0B4",
|
|
21
22
|
"JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps": "0x17F987e09896F19584799e3FFD10679b9C7C35f0",
|
|
22
23
|
"JumpRateModelV2_base0bps_slope900bps_jump7500bps_kink4500bps": "0xae838dEB13Ff67681704AA69e31Da304918Ee43D",
|
|
@@ -68,6 +69,7 @@
|
|
|
68
69
|
"VToken_vWETH_LiquidStakedETH": "0xc82780Db1257C788F262FBbDA960B3706Dfdcaf2",
|
|
69
70
|
"VToken_vcrvUSD_Core": "0x672208C10aaAA2F9A6719F449C4C8227bc0BC202",
|
|
70
71
|
"VToken_vcrvUSD_Curve": "0x2d499800239C4CD3012473Cb1EAE33562F0A6933",
|
|
72
|
+
"VToken_veBTC": "0x325cEB02fe1C2fF816A83a5770eA0E88e2faEcF2",
|
|
71
73
|
"VToken_vezETH_LiquidStakedETH": "0xA854D35664c658280fFf27B6eDC6C4195c3229B3",
|
|
72
74
|
"VToken_vrsETH_LiquidStakedETH": "0xDB6C345f864883a8F4cae87852Ac342589E76D1B",
|
|
73
75
|
"VToken_vsFRAX_Core": "0x17142a05fe678e9584FA1d88EfAC1bF181bF7ABe",
|