@venusprotocol/isolated-pools 3.9.0-dev.2 → 3.9.0
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_slope1562bps_jump25000bps_kink8000bps.json +608 -0
- package/deployments/ethereum/VToken_vUSDS_Core.json +257 -0
- package/deployments/ethereum/VToken_vsUSDS_Core.json +257 -0
- package/deployments/ethereum/solcInputs/bf6504e8406cd8d7763a8de7cdacad9c.json +454 -0
- package/deployments/ethereum.json +508 -0
- package/deployments/ethereum_addresses.json +3 -0
- package/deployments/sepolia/JumpRateModelV2_base0bps_slope1562bps_jump25000bps_kink8000bps.json +608 -0
- package/deployments/sepolia/MockUSDS.json +458 -0
- package/deployments/sepolia/MocksUSDS.json +477 -0
- package/deployments/sepolia/VToken_vUSDS_Core.json +257 -0
- package/deployments/sepolia/VToken_vsUSDS_Core.json +257 -0
- package/deployments/sepolia/solcInputs/bf6504e8406cd8d7763a8de7cdacad9c.json +454 -0
- package/deployments/sepolia.json +1442 -297
- package/deployments/sepolia_addresses.json +5 -0
- package/dist/deployments/ethereum.json +508 -0
- package/dist/deployments/sepolia.json +1442 -297
- package/dist/helpers/deploymentConfig.d.ts +0 -2
- package/dist/helpers/deploymentConfig.js +107 -8
- package/package.json +1 -1
|
@@ -150,7 +150,6 @@ export declare const preconfiguredAddresses: {
|
|
|
150
150
|
NormalTimelock: string;
|
|
151
151
|
FastTrackTimelock: string;
|
|
152
152
|
CriticalTimelock: string;
|
|
153
|
-
GovernorBravo: string;
|
|
154
153
|
AccessControlManager: string;
|
|
155
154
|
};
|
|
156
155
|
ethereum: {
|
|
@@ -158,7 +157,6 @@ export declare const preconfiguredAddresses: {
|
|
|
158
157
|
NormalTimelock: string;
|
|
159
158
|
FastTrackTimelock: string;
|
|
160
159
|
CriticalTimelock: string;
|
|
161
|
-
GovernorBravo: string;
|
|
162
160
|
AccessControlManager: string;
|
|
163
161
|
};
|
|
164
162
|
opbnbtestnet: {
|
|
@@ -113,18 +113,16 @@ exports.preconfiguredAddresses = {
|
|
|
113
113
|
},
|
|
114
114
|
sepolia: {
|
|
115
115
|
VTreasury: sepolia_json_2.contracts.VTreasuryV8.address,
|
|
116
|
-
NormalTimelock:
|
|
117
|
-
FastTrackTimelock:
|
|
118
|
-
CriticalTimelock:
|
|
119
|
-
GovernorBravo: exports.SEPOLIA_MULTISIG,
|
|
116
|
+
NormalTimelock: sepolia_json_1.contracts.NormalTimelock.address,
|
|
117
|
+
FastTrackTimelock: sepolia_json_1.contracts.FastTrackTimelock.address,
|
|
118
|
+
CriticalTimelock: sepolia_json_1.contracts.CriticalTimelock.address,
|
|
120
119
|
AccessControlManager: sepolia_json_1.contracts.AccessControlManager.address,
|
|
121
120
|
},
|
|
122
121
|
ethereum: {
|
|
123
122
|
VTreasury: ethereum_json_2.contracts.VTreasuryV8.address,
|
|
124
|
-
NormalTimelock:
|
|
125
|
-
FastTrackTimelock:
|
|
126
|
-
CriticalTimelock:
|
|
127
|
-
GovernorBravo: exports.ETHEREUM_MULTISIG,
|
|
123
|
+
NormalTimelock: ethereum_json_1.contracts.NormalTimelock.address,
|
|
124
|
+
FastTrackTimelock: ethereum_json_1.contracts.FastTrackTimelock.address,
|
|
125
|
+
CriticalTimelock: ethereum_json_1.contracts.CriticalTimelock.address,
|
|
128
126
|
AccessControlManager: ethereum_json_1.contracts.AccessControlManager.address,
|
|
129
127
|
},
|
|
130
128
|
opbnbtestnet: {
|
|
@@ -2947,6 +2945,21 @@ exports.globalConfig = {
|
|
|
2947
2945
|
decimals: 6,
|
|
2948
2946
|
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2949
2947
|
},
|
|
2948
|
+
{
|
|
2949
|
+
isMock: true,
|
|
2950
|
+
name: "USDS Stablecoin",
|
|
2951
|
+
symbol: "USDS",
|
|
2952
|
+
decimals: 18,
|
|
2953
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2954
|
+
},
|
|
2955
|
+
{
|
|
2956
|
+
isMock: true,
|
|
2957
|
+
standard: "ERC-4626",
|
|
2958
|
+
name: "Savings USDS",
|
|
2959
|
+
symbol: "sUSDS",
|
|
2960
|
+
decimals: 18,
|
|
2961
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2962
|
+
},
|
|
2950
2963
|
],
|
|
2951
2964
|
poolConfig: [
|
|
2952
2965
|
{
|
|
@@ -3190,6 +3203,42 @@ exports.globalConfig = {
|
|
|
3190
3203
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3191
3204
|
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
3192
3205
|
},
|
|
3206
|
+
{
|
|
3207
|
+
name: "Venus USDS (Core)",
|
|
3208
|
+
asset: "USDS",
|
|
3209
|
+
symbol: "vUSDS_Core",
|
|
3210
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3211
|
+
baseRatePerYear: "0",
|
|
3212
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.15625", 18),
|
|
3213
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.5", 18),
|
|
3214
|
+
kink_: (0, utils_1.convertToUnit)("0.8", 18),
|
|
3215
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.73", 18),
|
|
3216
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
3217
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.1", 18),
|
|
3218
|
+
initialSupply: (0, utils_1.convertToUnit)("10_000", 18),
|
|
3219
|
+
supplyCap: (0, utils_1.convertToUnit)("65_000_000", 18),
|
|
3220
|
+
borrowCap: (0, utils_1.convertToUnit)("7_680_000", 18),
|
|
3221
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3222
|
+
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
3223
|
+
},
|
|
3224
|
+
{
|
|
3225
|
+
name: "Venus sUSDS (Core)",
|
|
3226
|
+
asset: "sUSDS",
|
|
3227
|
+
symbol: "vsUSDS_Core",
|
|
3228
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3229
|
+
baseRatePerYear: "0",
|
|
3230
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.15625", 18),
|
|
3231
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.5", 18),
|
|
3232
|
+
kink_: (0, utils_1.convertToUnit)("0.8", 18),
|
|
3233
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.73", 18),
|
|
3234
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
3235
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.1", 18),
|
|
3236
|
+
initialSupply: (0, utils_1.convertToUnit)("10_000", 18),
|
|
3237
|
+
supplyCap: (0, utils_1.convertToUnit)("30_000_000", 18),
|
|
3238
|
+
borrowCap: (0, utils_1.convertToUnit)("0", 18),
|
|
3239
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3240
|
+
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
3241
|
+
},
|
|
3193
3242
|
],
|
|
3194
3243
|
rewards: [
|
|
3195
3244
|
// XVS Rewards Over 90 days (648000 blocks)
|
|
@@ -3843,6 +3892,20 @@ exports.globalConfig = {
|
|
|
3843
3892
|
decimals: 6,
|
|
3844
3893
|
tokenAddress: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
|
|
3845
3894
|
},
|
|
3895
|
+
{
|
|
3896
|
+
isMock: false,
|
|
3897
|
+
name: "USDS Stablecoin",
|
|
3898
|
+
symbol: "USDS",
|
|
3899
|
+
decimals: 18,
|
|
3900
|
+
tokenAddress: "0xdC035D45d973E3EC169d2276DDab16f1e407384F",
|
|
3901
|
+
},
|
|
3902
|
+
{
|
|
3903
|
+
isMock: false,
|
|
3904
|
+
name: "Savings USDS",
|
|
3905
|
+
symbol: "sUSDS",
|
|
3906
|
+
decimals: 18,
|
|
3907
|
+
tokenAddress: "0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD",
|
|
3908
|
+
},
|
|
3846
3909
|
],
|
|
3847
3910
|
poolConfig: [
|
|
3848
3911
|
{
|
|
@@ -4074,6 +4137,42 @@ exports.globalConfig = {
|
|
|
4074
4137
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
4075
4138
|
vTokenReceiver: "0xCb09Ab3F6254437d225Ed3CABEBe0949782E2372",
|
|
4076
4139
|
},
|
|
4140
|
+
{
|
|
4141
|
+
name: "Venus USDS (Core)",
|
|
4142
|
+
asset: "USDS",
|
|
4143
|
+
symbol: "vUSDS_Core",
|
|
4144
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
4145
|
+
baseRatePerYear: "0",
|
|
4146
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.15625", 18),
|
|
4147
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.5", 18),
|
|
4148
|
+
kink_: (0, utils_1.convertToUnit)("0.8", 18),
|
|
4149
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.73", 18),
|
|
4150
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
4151
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.1", 18),
|
|
4152
|
+
initialSupply: (0, utils_1.convertToUnit)("10_000", 18),
|
|
4153
|
+
supplyCap: (0, utils_1.convertToUnit)("65_000_000", 18),
|
|
4154
|
+
borrowCap: (0, utils_1.convertToUnit)("7_680_000", 18),
|
|
4155
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
4156
|
+
vTokenReceiver: "0x9c489E4efba90A67299C1097a8628e233C33BB7B",
|
|
4157
|
+
},
|
|
4158
|
+
{
|
|
4159
|
+
name: "Venus sUSDS (Core)",
|
|
4160
|
+
asset: "sUSDS",
|
|
4161
|
+
symbol: "vsUSDS_Core",
|
|
4162
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
4163
|
+
baseRatePerYear: "0",
|
|
4164
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.15625", 18),
|
|
4165
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.5", 18),
|
|
4166
|
+
kink_: (0, utils_1.convertToUnit)("0.8", 18),
|
|
4167
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.73", 18),
|
|
4168
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
4169
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.1", 18),
|
|
4170
|
+
initialSupply: (0, utils_1.convertToUnit)("10_000", 18),
|
|
4171
|
+
supplyCap: (0, utils_1.convertToUnit)("30_000_000", 18),
|
|
4172
|
+
borrowCap: (0, utils_1.convertToUnit)("0", 18),
|
|
4173
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
4174
|
+
vTokenReceiver: "0x9c489E4efba90A67299C1097a8628e233C33BB7B",
|
|
4175
|
+
},
|
|
4077
4176
|
],
|
|
4078
4177
|
rewards: [
|
|
4079
4178
|
// XVS Rewards Over 90 days (648000 blocks)
|