@venusprotocol/isolated-pools 2.8.0-dev.2 → 2.8.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/RewardsDistributor_Liquid Staked ETH_2.json +1270 -0
- package/deployments/ethereum/RewardsDistributor_Liquid Staked ETH_2_Proxy.json +277 -0
- package/deployments/ethereum/VToken_vweETH_LiquidStakedETH.json +257 -0
- package/deployments/ethereum/solcInputs/556e7926402a9f7d641047851d56b7a7.json +181 -0
- package/deployments/ethereum.json +1355 -0
- package/deployments/ethereum_addresses.json +3 -0
- package/deployments/sepolia/JumpRateModelV2_base0bps_slope9000bps_jump7500bps_kink4500bps.json +519 -0
- package/deployments/sepolia/MockeETH.json +458 -0
- package/deployments/sepolia/MockweETH.json +458 -0
- package/deployments/sepolia/RewardsDistributor_Liquid Staked ETH_2.json +1270 -0
- package/deployments/sepolia/RewardsDistributor_Liquid Staked ETH_2_Proxy.json +277 -0
- package/deployments/sepolia/VToken_vweETH_LiquidStakedETH.json +257 -0
- package/deployments/sepolia/solcInputs/4ec1992e5565110adfbc26c502822e5b.json +184 -0
- package/deployments/sepolia/solcInputs/556e7926402a9f7d641047851d56b7a7.json +181 -0
- package/deployments/sepolia/solcInputs/aff45dfa415c2a71912dfa176e1c386c.json +342 -0
- package/deployments/sepolia.json +4015 -1723
- package/deployments/sepolia_addresses.json +6 -0
- package/dist/deploy/009-deploy-vtokens.js +24 -2
- package/dist/deploy/010-deploy-reward-distributors.js +4 -0
- package/dist/deployments/ethereum.json +1355 -0
- package/dist/deployments/sepolia.json +4015 -1723
- package/dist/helpers/deploymentConfig.js +76 -0
- package/package.json +1 -1
|
@@ -2295,6 +2295,20 @@ exports.globalConfig = {
|
|
|
2295
2295
|
decimals: 18,
|
|
2296
2296
|
tokenAddress: "0x9b87ea90fdb55e1a0f17fbeddcf7eb0ac4d50493",
|
|
2297
2297
|
},
|
|
2298
|
+
{
|
|
2299
|
+
isMock: true,
|
|
2300
|
+
name: "Wrapped eETH",
|
|
2301
|
+
symbol: "weETH",
|
|
2302
|
+
decimals: 18,
|
|
2303
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
isMock: true,
|
|
2307
|
+
name: "ether.fi ETH",
|
|
2308
|
+
symbol: "eETH",
|
|
2309
|
+
decimals: 18,
|
|
2310
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2311
|
+
},
|
|
2298
2312
|
],
|
|
2299
2313
|
poolConfig: [
|
|
2300
2314
|
{
|
|
@@ -2610,6 +2624,24 @@ exports.globalConfig = {
|
|
|
2610
2624
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
2611
2625
|
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
2612
2626
|
},
|
|
2627
|
+
{
|
|
2628
|
+
name: "Venus weETH (Liquid Staked ETH)",
|
|
2629
|
+
asset: "weETH",
|
|
2630
|
+
symbol: "vweETH_LiquidStakedETH",
|
|
2631
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
2632
|
+
baseRatePerYear: "0",
|
|
2633
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
2634
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("0.75", 18),
|
|
2635
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
2636
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.9", 18),
|
|
2637
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.93", 18),
|
|
2638
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.20", 18),
|
|
2639
|
+
initialSupply: (0, utils_1.convertToUnit)(5, 18),
|
|
2640
|
+
supplyCap: (0, utils_1.convertToUnit)(7500, 18),
|
|
2641
|
+
borrowCap: (0, utils_1.convertToUnit)(750, 18),
|
|
2642
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
2643
|
+
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
2644
|
+
},
|
|
2613
2645
|
],
|
|
2614
2646
|
rewards: [
|
|
2615
2647
|
// XVS Rewards Over 90 days (648000 blocks)
|
|
@@ -2629,6 +2661,12 @@ exports.globalConfig = {
|
|
|
2629
2661
|
supplySpeeds: ["712962962962"],
|
|
2630
2662
|
borrowSpeeds: ["0"],
|
|
2631
2663
|
},
|
|
2664
|
+
{
|
|
2665
|
+
asset: "USDC",
|
|
2666
|
+
markets: ["weETH"],
|
|
2667
|
+
supplySpeeds: ["23148"],
|
|
2668
|
+
borrowSpeeds: ["0"],
|
|
2669
|
+
},
|
|
2632
2670
|
],
|
|
2633
2671
|
},
|
|
2634
2672
|
],
|
|
@@ -2696,6 +2734,20 @@ exports.globalConfig = {
|
|
|
2696
2734
|
decimals: 18,
|
|
2697
2735
|
tokenAddress: "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
|
|
2698
2736
|
},
|
|
2737
|
+
{
|
|
2738
|
+
isMock: false,
|
|
2739
|
+
name: "Wrapped eETH",
|
|
2740
|
+
symbol: "weETH",
|
|
2741
|
+
decimals: 18,
|
|
2742
|
+
tokenAddress: "0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee",
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
isMock: false,
|
|
2746
|
+
name: "ether.fi ETH",
|
|
2747
|
+
symbol: "eETH",
|
|
2748
|
+
decimals: 18,
|
|
2749
|
+
tokenAddress: "0x35fA164735182de50811E8e2E824cFb9B6118ac2",
|
|
2750
|
+
},
|
|
2699
2751
|
],
|
|
2700
2752
|
poolConfig: [
|
|
2701
2753
|
{
|
|
@@ -2941,6 +2993,24 @@ exports.globalConfig = {
|
|
|
2941
2993
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
2942
2994
|
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
2943
2995
|
},
|
|
2996
|
+
{
|
|
2997
|
+
name: "Venus weETH (Liquid Staked ETH)",
|
|
2998
|
+
asset: "weETH",
|
|
2999
|
+
symbol: "vweETH_LiquidStakedETH",
|
|
3000
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3001
|
+
baseRatePerYear: "0",
|
|
3002
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
3003
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("0.75", 18),
|
|
3004
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
3005
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.9", 18),
|
|
3006
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.93", 18),
|
|
3007
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.20", 18),
|
|
3008
|
+
initialSupply: (0, utils_1.convertToUnit)("2.761910220333160209", 18),
|
|
3009
|
+
supplyCap: (0, utils_1.convertToUnit)(7500, 18),
|
|
3010
|
+
borrowCap: (0, utils_1.convertToUnit)(750, 18),
|
|
3011
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3012
|
+
vTokenReceiver: `0xF6C612c745Ba4546075DB62902c1Eb3255CdAe28`,
|
|
3013
|
+
},
|
|
2944
3014
|
],
|
|
2945
3015
|
rewards: [
|
|
2946
3016
|
// XVS Rewards Over 90 days (648000 blocks)
|
|
@@ -2960,6 +3030,12 @@ exports.globalConfig = {
|
|
|
2960
3030
|
supplySpeeds: ["71296296296296"],
|
|
2961
3031
|
borrowSpeeds: ["0"],
|
|
2962
3032
|
},
|
|
3033
|
+
{
|
|
3034
|
+
asset: "USDC",
|
|
3035
|
+
markets: ["weETH"],
|
|
3036
|
+
supplySpeeds: ["23148"],
|
|
3037
|
+
borrowSpeeds: ["0"],
|
|
3038
|
+
},
|
|
2963
3039
|
],
|
|
2964
3040
|
},
|
|
2965
3041
|
],
|