Skip to content

Commit

Permalink
Update file
Browse files Browse the repository at this point in the history
  • Loading branch information
shahthepro committed Jan 6, 2025
1 parent 9a5cb56 commit 2225b61
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions contracts/deploy/base/021_multichain_strategist.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const EXECUTOR_ROLE =
module.exports = deployOnBaseWithGuardian(
{
deployName: "021_multichain_strategist",
// useTimelock: false,
},
async ({ ethers }) => {
const cOETHbVaultProxy = await ethers.getContract("OETHBaseVaultProxy");
Expand All @@ -15,22 +16,6 @@ module.exports = deployOnBaseWithGuardian(
cOETHbVaultProxy.address
);

const cAMOStrategyProxy = await ethers.getContract(
"AerodromeAMOStrategyProxy"
);
const cAMOStrategy = await ethers.getContractAt(
"AerodromeAMOStrategy",
cAMOStrategyProxy.address
);

const cBridgedWOETHStrategyProxy = await ethers.getContract(
"BridgedWOETHStrategyProxy"
);
const cBridgedWOETHStrategy = await ethers.getContractAt(
"BridgedWOETHStrategy",
cBridgedWOETHStrategyProxy.address
);

const cTimelock = await ethers.getContractAt(
"ITimelockController",
addresses.base.timelock
Expand All @@ -49,16 +34,6 @@ module.exports = deployOnBaseWithGuardian(
signature: "setTrusteeAddress(address)",
args: [addresses.base.multichainStrategist],
},
{
contract: cAMOStrategy,
signature: "setHarvesterAddress(address)",
args: [addresses.base.multichainStrategist],
},
{
contract: cBridgedWOETHStrategy,
signature: "setHarvesterAddress(address)",
args: [addresses.base.multichainStrategist],
},
{
contract: cTimelock,
signature: "grantRole(bytes32,address)",
Expand Down

0 comments on commit 2225b61

Please sign in to comment.