@venusprotocol/isolated-pools 3.3.0-dev.3 → 3.4.0-dev.1
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_jump30000bps_kink4500bps.json +608 -0
- package/deployments/ethereum/VToken_vrsETH_LiquidStakedETH.json +257 -0
- package/deployments/ethereum/solcInputs/2040335765422e1de87160c828624fdd.json +406 -0
- package/deployments/ethereum.json +434 -0
- package/deployments/ethereum_addresses.json +2 -0
- package/deployments/sepolia/JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps.json +608 -0
- package/deployments/sepolia/MockrsETH.json +458 -0
- package/deployments/sepolia/VToken_vrsETH_LiquidStakedETH.json +257 -0
- package/deployments/sepolia/solcInputs/2040335765422e1de87160c828624fdd.json +406 -0
- package/deployments/sepolia.json +871 -128
- package/deployments/sepolia_addresses.json +3 -0
- package/dist/deployments/ethereum.json +434 -0
- package/dist/deployments/sepolia.json +871 -128
- package/dist/helpers/deploymentConfig.js +50 -0
- package/package.json +1 -1
|
@@ -2491,6 +2491,13 @@ exports.globalConfig = {
|
|
|
2491
2491
|
decimals: 18,
|
|
2492
2492
|
tokenAddress: "0xd85FfECdB4287587BC53c1934D548bF7480F11C4",
|
|
2493
2493
|
},
|
|
2494
|
+
{
|
|
2495
|
+
isMock: true,
|
|
2496
|
+
name: "rsETH",
|
|
2497
|
+
symbol: "rsETH",
|
|
2498
|
+
decimals: 18,
|
|
2499
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2500
|
+
},
|
|
2494
2501
|
],
|
|
2495
2502
|
poolConfig: [
|
|
2496
2503
|
{
|
|
@@ -2934,6 +2941,24 @@ exports.globalConfig = {
|
|
|
2934
2941
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
2935
2942
|
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
2936
2943
|
},
|
|
2944
|
+
{
|
|
2945
|
+
name: "Venus rsETH (Liquid Staked ETH)",
|
|
2946
|
+
asset: "rsETH",
|
|
2947
|
+
symbol: "vrsETH_LiquidStakedETH",
|
|
2948
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
2949
|
+
baseRatePerYear: "0",
|
|
2950
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
2951
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("3", 18),
|
|
2952
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
2953
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.8", 18),
|
|
2954
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.85", 18),
|
|
2955
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
2956
|
+
initialSupply: (0, utils_1.convertToUnit)(2, 18),
|
|
2957
|
+
supplyCap: (0, utils_1.convertToUnit)(8000, 18),
|
|
2958
|
+
borrowCap: (0, utils_1.convertToUnit)(3600, 18),
|
|
2959
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
2960
|
+
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
2961
|
+
},
|
|
2937
2962
|
],
|
|
2938
2963
|
rewards: [
|
|
2939
2964
|
// XVS Rewards Over 90 days (648000 blocks)
|
|
@@ -3075,6 +3100,13 @@ exports.globalConfig = {
|
|
|
3075
3100
|
decimals: 18,
|
|
3076
3101
|
tokenAddress: "0x6ee2b5E19ECBa773a352E5B21415Dc419A700d1d",
|
|
3077
3102
|
},
|
|
3103
|
+
{
|
|
3104
|
+
isMock: false,
|
|
3105
|
+
name: "rsETH",
|
|
3106
|
+
symbol: "rsETH",
|
|
3107
|
+
decimals: 18,
|
|
3108
|
+
tokenAddress: "0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7",
|
|
3109
|
+
},
|
|
3078
3110
|
],
|
|
3079
3111
|
poolConfig: [
|
|
3080
3112
|
{
|
|
@@ -3436,6 +3468,24 @@ exports.globalConfig = {
|
|
|
3436
3468
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3437
3469
|
vTokenReceiver: exports.preconfiguredAddresses.ethereum.VTreasury,
|
|
3438
3470
|
},
|
|
3471
|
+
{
|
|
3472
|
+
name: "Venus rsETH (Liquid Staked ETH)",
|
|
3473
|
+
asset: "rsETH",
|
|
3474
|
+
symbol: "vrsETH_LiquidStakedETH",
|
|
3475
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3476
|
+
baseRatePerYear: "0",
|
|
3477
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
3478
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("3", 18),
|
|
3479
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
3480
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.8", 18),
|
|
3481
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.85", 18),
|
|
3482
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
3483
|
+
initialSupply: (0, utils_1.convertToUnit)("2", 18),
|
|
3484
|
+
supplyCap: (0, utils_1.convertToUnit)(8000, 18),
|
|
3485
|
+
borrowCap: (0, utils_1.convertToUnit)(3600, 18),
|
|
3486
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3487
|
+
vTokenReceiver: "0x7AAd74b7f0d60D5867B59dbD377a71783425af47",
|
|
3488
|
+
},
|
|
3439
3489
|
],
|
|
3440
3490
|
rewards: [
|
|
3441
3491
|
// XVS Rewards Over 90 days (648000 blocks)
|