@venusprotocol/venus-protocol 9.5.0-dev.3 → 9.6.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/bscmainnet/vSOL.json +2382 -0
- package/deployments/bscmainnet.json +1684 -0
- package/deployments/bscmainnet_addresses.json +1 -0
- package/deployments/bsctestnet/MockSOL.json +458 -0
- package/deployments/bsctestnet/solcInputs/7584667b44eb77970ba8d274006d81ae.json +331 -0
- package/deployments/bsctestnet/vSOL.json +2382 -0
- package/deployments/bsctestnet.json +6522 -4529
- package/deployments/bsctestnet_addresses.json +2 -0
- package/dist/deployments/bscmainnet.json +1684 -0
- package/dist/deployments/bsctestnet.json +6522 -4529
- package/dist/helpers/deploymentConfig.js +45 -0
- package/package.json +1 -1
|
@@ -125,6 +125,12 @@ const getGlobalConfig = async () => {
|
|
|
125
125
|
symbol: "THE",
|
|
126
126
|
decimals: 18,
|
|
127
127
|
},
|
|
128
|
+
{
|
|
129
|
+
isMock: true,
|
|
130
|
+
name: "Solana",
|
|
131
|
+
symbol: "SOL",
|
|
132
|
+
decimals: 18,
|
|
133
|
+
},
|
|
128
134
|
],
|
|
129
135
|
marketsConfig: [
|
|
130
136
|
{
|
|
@@ -191,6 +197,22 @@ const getGlobalConfig = async () => {
|
|
|
191
197
|
borrowCap: (0, utils_1.convertToUnit)("1200000", 18),
|
|
192
198
|
vTokenReceiver: vTreasuryAddress,
|
|
193
199
|
},
|
|
200
|
+
{
|
|
201
|
+
name: "Venus SOL",
|
|
202
|
+
asset: "Solana",
|
|
203
|
+
symbol: "vSOL",
|
|
204
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
205
|
+
baseRatePerYear: (0, utils_1.convertToUnit)("0.02", 18),
|
|
206
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.2", 18),
|
|
207
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("3", 18),
|
|
208
|
+
kink_: (0, utils_1.convertToUnit)("0.5", 18),
|
|
209
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.72", 18),
|
|
210
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
211
|
+
initialSupply: (0, utils_1.convertToUnit)("20", 18),
|
|
212
|
+
supplyCap: (0, utils_1.convertToUnit)("18000", 18),
|
|
213
|
+
borrowCap: (0, utils_1.convertToUnit)("9000", 18),
|
|
214
|
+
vTokenReceiver: vTreasuryAddress,
|
|
215
|
+
},
|
|
194
216
|
],
|
|
195
217
|
},
|
|
196
218
|
bscmainnet: {
|
|
@@ -219,6 +241,13 @@ const getGlobalConfig = async () => {
|
|
|
219
241
|
decimals: 18,
|
|
220
242
|
tokenAddress: "0xF4C8E32EaDEC4BFe97E0F595AdD0f4450a863a11",
|
|
221
243
|
},
|
|
244
|
+
{
|
|
245
|
+
isMock: false,
|
|
246
|
+
name: "Solana",
|
|
247
|
+
symbol: "SOL",
|
|
248
|
+
decimals: 18,
|
|
249
|
+
tokenAddress: "0x570A5D26f7765Ecb712C0924E4De545B89fD43dF",
|
|
250
|
+
},
|
|
222
251
|
],
|
|
223
252
|
marketsConfig: [
|
|
224
253
|
{
|
|
@@ -285,6 +314,22 @@ const getGlobalConfig = async () => {
|
|
|
285
314
|
borrowCap: (0, utils_1.convertToUnit)("1200000", 18),
|
|
286
315
|
vTokenReceiver: "0x1c6C2498854662FDeadbC4F14eA2f30ca305104b",
|
|
287
316
|
},
|
|
317
|
+
{
|
|
318
|
+
name: "Venus SOL",
|
|
319
|
+
asset: "SOL",
|
|
320
|
+
symbol: "vSOL",
|
|
321
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
322
|
+
baseRatePerYear: (0, utils_1.convertToUnit)("0.02", 18),
|
|
323
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.2", 18),
|
|
324
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("3", 18),
|
|
325
|
+
kink_: (0, utils_1.convertToUnit)("0.5", 18),
|
|
326
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.72", 18),
|
|
327
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
328
|
+
initialSupply: (0, utils_1.convertToUnit)("21.2829576", 18),
|
|
329
|
+
supplyCap: (0, utils_1.convertToUnit)("18000", 18),
|
|
330
|
+
borrowCap: (0, utils_1.convertToUnit)("9000", 18),
|
|
331
|
+
vTokenReceiver: vTreasuryAddress,
|
|
332
|
+
},
|
|
288
333
|
],
|
|
289
334
|
},
|
|
290
335
|
};
|