@venusprotocol/isolated-pools 3.7.0-dev.2 → 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/JumpRateModelV2_base0bps_slope900bps_jump20000bps_kink4500bps.json +608 -0
- package/deployments/ethereum/VToken_veBTC.json +257 -0
- package/deployments/ethereum/VToken_vpufETH_LiquidStakedETH.json +257 -0
- package/deployments/ethereum.json +945 -77
- package/deployments/ethereum_addresses.json +4 -0
- package/deployments/sepolia/JumpRateModelV2_base0bps_slope450bps_jump20000bps_kink4500bps.json +608 -0
- package/deployments/sepolia/JumpRateModelV2_base0bps_slope900bps_jump20000bps_kink4500bps.json +608 -0
- package/deployments/sepolia/MockeBTC.json +458 -0
- package/deployments/sepolia/MockpufETH.json +458 -0
- package/deployments/sepolia/VToken_veBTC.json +257 -0
- package/deployments/sepolia/VToken_vpufETH_LiquidStakedETH.json +257 -0
- package/deployments/sepolia.json +1655 -169
- package/deployments/sepolia_addresses.json +6 -0
- package/dist/deployments/ethereum.json +945 -77
- package/dist/deployments/sepolia.json +1655 -169
- package/dist/helpers/deploymentConfig.js +100 -0
- package/package.json +1 -1
|
@@ -2734,6 +2734,13 @@ exports.globalConfig = {
|
|
|
2734
2734
|
decimals: 18,
|
|
2735
2735
|
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2736
2736
|
},
|
|
2737
|
+
{
|
|
2738
|
+
isMock: true,
|
|
2739
|
+
name: "ether.fi BTC",
|
|
2740
|
+
symbol: "eBTC",
|
|
2741
|
+
decimals: 8,
|
|
2742
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2743
|
+
},
|
|
2737
2744
|
{
|
|
2738
2745
|
isMock: true,
|
|
2739
2746
|
name: "Eigen",
|
|
@@ -2741,6 +2748,13 @@ exports.globalConfig = {
|
|
|
2741
2748
|
decimals: 18,
|
|
2742
2749
|
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2743
2750
|
},
|
|
2751
|
+
{
|
|
2752
|
+
isMock: true,
|
|
2753
|
+
name: "pufETH",
|
|
2754
|
+
symbol: "pufETH",
|
|
2755
|
+
decimals: 18,
|
|
2756
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2757
|
+
},
|
|
2744
2758
|
],
|
|
2745
2759
|
poolConfig: [
|
|
2746
2760
|
{
|
|
@@ -2930,6 +2944,24 @@ exports.globalConfig = {
|
|
|
2930
2944
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
2931
2945
|
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury, // TBD
|
|
2932
2946
|
},
|
|
2947
|
+
{
|
|
2948
|
+
name: "Venus eBTC",
|
|
2949
|
+
asset: "eBTC",
|
|
2950
|
+
symbol: "veBTC",
|
|
2951
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
2952
|
+
baseRatePerYear: "0",
|
|
2953
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
2954
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2", 18),
|
|
2955
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
2956
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.68", 18),
|
|
2957
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.72", 18),
|
|
2958
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
2959
|
+
initialSupply: (0, utils_1.convertToUnit)("0.14471345", 8),
|
|
2960
|
+
supplyCap: (0, utils_1.convertToUnit)("25", 8),
|
|
2961
|
+
borrowCap: (0, utils_1.convertToUnit)("12.5", 8),
|
|
2962
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
2963
|
+
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
2964
|
+
},
|
|
2933
2965
|
{
|
|
2934
2966
|
name: "Venus EIGEN",
|
|
2935
2967
|
asset: "EIGEN",
|
|
@@ -3274,6 +3306,24 @@ exports.globalConfig = {
|
|
|
3274
3306
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3275
3307
|
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
3276
3308
|
},
|
|
3309
|
+
{
|
|
3310
|
+
name: "Venus pufETH (Liquid Staked ETH)",
|
|
3311
|
+
asset: "pufETH",
|
|
3312
|
+
symbol: "vpufETH_LiquidStakedETH",
|
|
3313
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3314
|
+
baseRatePerYear: "0",
|
|
3315
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.045", 18),
|
|
3316
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2", 18),
|
|
3317
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
3318
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.8", 18),
|
|
3319
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.85", 18),
|
|
3320
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
3321
|
+
initialSupply: (0, utils_1.convertToUnit)("5", 18),
|
|
3322
|
+
supplyCap: (0, utils_1.convertToUnit)("3000", 18),
|
|
3323
|
+
borrowCap: (0, utils_1.convertToUnit)("300", 18),
|
|
3324
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3325
|
+
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
3326
|
+
},
|
|
3277
3327
|
],
|
|
3278
3328
|
rewards: [
|
|
3279
3329
|
// XVS Rewards Over 90 days (648000 blocks)
|
|
@@ -3445,6 +3495,13 @@ exports.globalConfig = {
|
|
|
3445
3495
|
decimals: 18,
|
|
3446
3496
|
tokenAddress: "0x917ceE801a67f933F2e6b33fC0cD1ED2d5909D88",
|
|
3447
3497
|
},
|
|
3498
|
+
{
|
|
3499
|
+
isMock: false,
|
|
3500
|
+
name: "ether.fi BTC",
|
|
3501
|
+
symbol: "eBTC",
|
|
3502
|
+
decimals: 8,
|
|
3503
|
+
tokenAddress: "0x657e8C867D8B37dCC18fA4Caead9C45EB088C642",
|
|
3504
|
+
},
|
|
3448
3505
|
{
|
|
3449
3506
|
isMock: false,
|
|
3450
3507
|
name: "Eigen",
|
|
@@ -3452,6 +3509,13 @@ exports.globalConfig = {
|
|
|
3452
3509
|
decimals: 18,
|
|
3453
3510
|
tokenAddress: "0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83",
|
|
3454
3511
|
},
|
|
3512
|
+
{
|
|
3513
|
+
isMock: false,
|
|
3514
|
+
name: "pufETH",
|
|
3515
|
+
symbol: "pufETH",
|
|
3516
|
+
decimals: 18,
|
|
3517
|
+
tokenAddress: "0xD9A442856C234a39a81a089C06451EBAa4306a72",
|
|
3518
|
+
},
|
|
3455
3519
|
],
|
|
3456
3520
|
poolConfig: [
|
|
3457
3521
|
{
|
|
@@ -3623,6 +3687,24 @@ exports.globalConfig = {
|
|
|
3623
3687
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3624
3688
|
vTokenReceiver: "0x6e74053a3798e0fC9a9775F7995316b27f21c4D2",
|
|
3625
3689
|
},
|
|
3690
|
+
{
|
|
3691
|
+
name: "Venus eBTC",
|
|
3692
|
+
asset: "eBTC",
|
|
3693
|
+
symbol: "veBTC",
|
|
3694
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3695
|
+
baseRatePerYear: "0",
|
|
3696
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
3697
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2", 18),
|
|
3698
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
3699
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.68", 18),
|
|
3700
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.72", 18),
|
|
3701
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
3702
|
+
initialSupply: (0, utils_1.convertToUnit)("0.14471345", 8),
|
|
3703
|
+
supplyCap: (0, utils_1.convertToUnit)("25", 8),
|
|
3704
|
+
borrowCap: (0, utils_1.convertToUnit)("12.5", 8),
|
|
3705
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3706
|
+
vTokenReceiver: exports.preconfiguredAddresses.ethereum.VTreasury,
|
|
3707
|
+
},
|
|
3626
3708
|
{
|
|
3627
3709
|
name: "Venus EIGEN",
|
|
3628
3710
|
asset: "EIGEN",
|
|
@@ -3927,6 +4009,24 @@ exports.globalConfig = {
|
|
|
3927
4009
|
reduceReservesBlockDelta: REDUCE_RESERVES_BLOCK_DELTA_ETHEREUM,
|
|
3928
4010
|
vTokenReceiver: "0x86fBaEB3D6b5247F420590D303a6ffC9cd523790",
|
|
3929
4011
|
},
|
|
4012
|
+
{
|
|
4013
|
+
name: "Venus pufETH (Liquid Staked ETH)",
|
|
4014
|
+
asset: "pufETH",
|
|
4015
|
+
symbol: "vpufETH_LiquidStakedETH",
|
|
4016
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
4017
|
+
baseRatePerYear: "0",
|
|
4018
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.045", 18),
|
|
4019
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2", 18),
|
|
4020
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
4021
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.8", 18),
|
|
4022
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.85", 18),
|
|
4023
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
4024
|
+
initialSupply: (0, utils_1.convertToUnit)("5", 18),
|
|
4025
|
+
supplyCap: (0, utils_1.convertToUnit)("3000", 18),
|
|
4026
|
+
borrowCap: (0, utils_1.convertToUnit)("300", 18),
|
|
4027
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
4028
|
+
vTokenReceiver: exports.preconfiguredAddresses.ethereum.VTreasury,
|
|
4029
|
+
},
|
|
3930
4030
|
],
|
|
3931
4031
|
rewards: [
|
|
3932
4032
|
// XVS Rewards Over 90 days (648000 blocks)
|