From 2b0530253e52fcb1c756674d6e55aeb459627cc9 Mon Sep 17 00:00:00 2001 From: ReflectiveChimp <55021052+ReflectiveChimp@users.noreply.github.com> Date: Wed, 21 May 2025 16:04:43 +0100 Subject: [PATCH] fix: wnative !== fees token --- scripts/upgradeable/deployFeeBatch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/upgradeable/deployFeeBatch.js b/scripts/upgradeable/deployFeeBatch.js index 78d822739..90703c2df 100644 --- a/scripts/upgradeable/deployFeeBatch.js +++ b/scripts/upgradeable/deployFeeBatch.js @@ -8,7 +8,7 @@ const chain = "cronos"; const config = { bifi: addressBook[chain].tokens.BIFI.address, - wNative: addressBook[chain].tokens.WNATIVE.address, + fees: addressBook[chain].tokens.FEES.address, treasury: addressBook[chain].platforms.beefyfinance.treasury, rewardPool: addressBook[chain].platforms.beefyfinance.rewardPool, unirouter: ethers.constants.AddressZero, @@ -23,7 +23,7 @@ async function main() { const BeefyFeeBatch = await ethers.getContractFactory("BeefyFeeBatchV2"); const batcher = await upgrades.deployProxy(BeefyFeeBatch, [ config.bifi, - config.wNative, + config.fees, config.treasury, config.rewardPool, config.unirouter,