From 0e588012816b17673bd358a6587ccef354733d75 Mon Sep 17 00:00:00 2001 From: 0xLucian <0xluciandev@gmail.com> Date: Wed, 11 Oct 2023 11:16:38 +0300 Subject: [PATCH] refactor: replace multisig with vTreasury for vTokenReceiver address --- helpers/deploymentConfig.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helpers/deploymentConfig.ts b/helpers/deploymentConfig.ts index 3f7b75bea..3f23f229a 100644 --- a/helpers/deploymentConfig.ts +++ b/helpers/deploymentConfig.ts @@ -2031,7 +2031,7 @@ export const globalConfig: NetworkConfig = { initialSupply: convertToUnit(1, 8), // 1 WBTC supplyCap: convertToUnit(100, 8), borrowCap: convertToUnit(50, 8), - vTokenReceiver: SEPOLIA_MULTISIG, // TODO: replace with VTreasury when deployed + vTokenReceiver: "0xFc43c055B9be2Ec3BEe6f8C291Af862d764016a0", }, { name: "Venus WETH (Core)", @@ -2048,7 +2048,7 @@ export const globalConfig: NetworkConfig = { initialSupply: convertToUnit(10, 18), // 10 WETH supplyCap: convertToUnit(1000, 18), borrowCap: convertToUnit(500, 18), - vTokenReceiver: SEPOLIA_MULTISIG, // TODO: replace with VTreasury when deployed + vTokenReceiver: "0xFc43c055B9be2Ec3BEe6f8C291Af862d764016a0", }, { name: "Venus USDT (Core)", @@ -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: SEPOLIA_MULTISIG, // TODO: replace with VTreasury when deployed + vTokenReceiver: "0xFc43c055B9be2Ec3BEe6f8C291Af862d764016a0" }, { name: "Venus USDC (Core)", @@ -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: SEPOLIA_MULTISIG, // TODO: replace with VTreasury when deployed + vTokenReceiver: "0xFc43c055B9be2Ec3BEe6f8C291Af862d764016a0" }, ], rewards: [],