Skip to content

Commit

Permalink
refactor: change vTreasury value to be referenced from preconfiguredA…
Browse files Browse the repository at this point in the history
…ddresses object
  • Loading branch information
0xlucian committed Oct 11, 2023
1 parent 0e58801 commit b8c02c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions helpers/deploymentConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const preconfiguredAddresses = {
SwapRouter_CorePool: "0x8938E6dA30b59c1E27d5f70a94688A89F7c815a4",
},
sepolia: {
VTreasury: "0xD51008eAe81475b542638433a617f5f4171b39ee",
VTreasury: "0xFc43c055B9be2Ec3BEe6f8C291Af862d764016a0",
NormalTimelock: SEPOLIA_MULTISIG,
FastTrackTimelock: SEPOLIA_MULTISIG,
CriticalTimelock: SEPOLIA_MULTISIG,
Expand Down Expand Up @@ -2031,7 +2031,7 @@ export const globalConfig: NetworkConfig = {
initialSupply: convertToUnit(1, 8), // 1 WBTC
supplyCap: convertToUnit(100, 8),
borrowCap: convertToUnit(50, 8),
vTokenReceiver: "0xFc43c055B9be2Ec3BEe6f8C291Af862d764016a0",
vTokenReceiver: preconfiguredAddresses.sepolia.VTreasury,
},
{
name: "Venus WETH (Core)",
Expand All @@ -2048,7 +2048,7 @@ export const globalConfig: NetworkConfig = {
initialSupply: convertToUnit(10, 18), // 10 WETH
supplyCap: convertToUnit(1000, 18),
borrowCap: convertToUnit(500, 18),
vTokenReceiver: "0xFc43c055B9be2Ec3BEe6f8C291Af862d764016a0",
vTokenReceiver: preconfiguredAddresses.sepolia.VTreasury,
},
{
name: "Venus USDT (Core)",
Expand All @@ -2065,7 +2065,7 @@ export const globalConfig: NetworkConfig = {
initialSupply: convertToUnit(10_000, 6), // 10,000 USDT
supplyCap: convertToUnit(1_000_000, 6),
borrowCap: convertToUnit(500_000, 6),
vTokenReceiver: "0xFc43c055B9be2Ec3BEe6f8C291Af862d764016a0"
vTokenReceiver: preconfiguredAddresses.sepolia.VTreasury
},
{
name: "Venus USDC (Core)",
Expand All @@ -2082,7 +2082,7 @@ export const globalConfig: NetworkConfig = {
initialSupply: convertToUnit(10_000, 6), // 10,000 USDC
supplyCap: convertToUnit(1_000_000, 6),
borrowCap: convertToUnit(500_000, 6),
vTokenReceiver: "0xFc43c055B9be2Ec3BEe6f8C291Af862d764016a0"
vTokenReceiver: preconfiguredAddresses.sepolia.VTreasury
},
],
rewards: [],
Expand Down

0 comments on commit b8c02c5

Please sign in to comment.