Skip to content

Commit

Permalink
fix: import acm address from npm package
Browse files Browse the repository at this point in the history
  • Loading branch information
Debugger022 committed Apr 17, 2024
1 parent a635868 commit 084e080
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions helpers/deploymentConfig.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import arbitrumsepoliaGovernanceDeployments from "@venusprotocol/governance-contracts/deployments/arbitrumsepolia.json";
import bscmainnetGovernanceDeployments from "@venusprotocol/governance-contracts/deployments/bscmainnet.json";
import bsctestnetGovernanceDeployments from "@venusprotocol/governance-contracts/deployments/bsctestnet.json";
import ethereumGovernanceDeployments from "@venusprotocol/governance-contracts/deployments/ethereum.json";
Expand Down Expand Up @@ -148,15 +149,15 @@ export const ADDRESSES: PreconfiguredAddresses = {
vBNBAddress: ethers.constants.AddressZero,
WBNBAddress: ethers.constants.AddressZero,
VAIAddress: ethers.constants.AddressZero,
acm: "0xa36AD96441cB931D8dFEAAaC97D3FaB4B39E590F",
timelock: "0x1426A5Ae009c4443188DA8793751024E358A61C2",
acm: arbitrumsepoliaGovernanceDeployments.contracts.AccessControlManager.address,
timelock: "0x1426A5Ae009c4443188DA8793751024E358A61C2", // Arbitrum Sepolia Multisig
},
arbitrumone: {
vBNBAddress: ethers.constants.AddressZero,
WBNBAddress: ethers.constants.AddressZero,
VAIAddress: ethers.constants.AddressZero,
acm: "",
timelock: "0x14e0E151b33f9802b3e75b621c1457afc44DcAA0",
timelock: "0x14e0E151b33f9802b3e75b621c1457afc44DcAA0", // Arbitrum One Multisig
},
};

Expand Down

0 comments on commit 084e080

Please sign in to comment.