Skip to content

Commit

Permalink
Merge pull request #513 from VenusProtocol/feat/VEN-2748
Browse files Browse the repository at this point in the history
[VEN-2748]: Prime deployment on zksync mainnet
  • Loading branch information
GitGuru7 authored Sep 10, 2024
2 parents 8e7a6a6 + f34105f commit 385a616
Show file tree
Hide file tree
Showing 11 changed files with 14,635 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deploy/012-deploy-prime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
bscmainnet: NINETY_DAYS,
ethereum: NINETY_DAYS,
arbitrumone: NINETY_DAYS,
zksyncmainnet: NINETY_DAYS,
};

const xVSVaultPoolId: Config = {
Expand All @@ -39,6 +40,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
ethereum: 0,
arbitrumone: 0,
zksyncsepolia: 0,
zksyncmainnet: 0,
hardhat: 0,
};

Expand All @@ -48,6 +50,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
arbitrumsepolia: 0, // time based contracts
arbitrumone: 0, // time based contracts
zksyncsepolia: 0, // time based contracts
zksyncmainnet: 0, // time based contracts
bscmainnet: 10_512_000,
ethereum: 2_628_000,
hardhat: 100,
Expand Down Expand Up @@ -77,6 +80,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
arbitrumsepolia: "0x1426A5Ae009c4443188DA8793751024E358A61C2", // ARBITRUM SEPOLIA MULTISIG
arbitrumone: "0x14e0E151b33f9802b3e75b621c1457afc44DcAA0", // ARBITRUM ONE MULTISIG
zksyncsepolia: "0xa2f83de95E9F28eD443132C331B6a9C9B7a9F866", // ZKSYNC SEPOLIA MULTISIG
zksyncmainnet: "0x751Aa759cfBB6CE71A43b48e40e1cCcFC66Ba4aa", // ZKSYNC MAINNET MULTISIG
bscmainnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
bsctestnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
};
Expand Down
1 change: 1 addition & 0 deletions deploy/013-configure-prime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
arbitrumsepolia: "0x1426A5Ae009c4443188DA8793751024E358A61C2", // ARBITRUM SEPOLIA MULTISIG
arbitrumone: "0x14e0E151b33f9802b3e75b621c1457afc44DcAA0", // ARBITRUM ONE MULTISIG
zksyncsepolia: "0xa2f83de95E9F28eD443132C331B6a9C9B7a9F866", // ZKSYNC SEPOLIA MULTISIG
zksyncmainnet: "0x751Aa759cfBB6CE71A43b48e40e1cCcFC66Ba4aa", // ZKSYNC MAINNET MULTISIG
bscmainnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
bsctestnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
};
Expand Down
Loading

0 comments on commit 385a616

Please sign in to comment.