@venusprotocol/venus-protocol 9.2.0-dev.14 → 9.2.0-dev.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,6 +29,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
29
29
  bscmainnet: NINETY_DAYS,
30
30
  ethereum: NINETY_DAYS,
31
31
  arbitrumone: NINETY_DAYS,
32
+ zksyncmainnet: NINETY_DAYS,
32
33
  };
33
34
 
34
35
  const xVSVaultPoolId: Config = {
@@ -39,6 +40,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
39
40
  ethereum: 0,
40
41
  arbitrumone: 0,
41
42
  zksyncsepolia: 0,
43
+ zksyncmainnet: 0,
42
44
  hardhat: 0,
43
45
  };
44
46
 
@@ -48,6 +50,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
48
50
  arbitrumsepolia: 0, // time based contracts
49
51
  arbitrumone: 0, // time based contracts
50
52
  zksyncsepolia: 0, // time based contracts
53
+ zksyncmainnet: 0, // time based contracts
51
54
  bscmainnet: 10_512_000,
52
55
  ethereum: 2_628_000,
53
56
  hardhat: 100,
@@ -77,6 +80,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
77
80
  arbitrumsepolia: "0x1426A5Ae009c4443188DA8793751024E358A61C2", // ARBITRUM SEPOLIA MULTISIG
78
81
  arbitrumone: "0x14e0E151b33f9802b3e75b621c1457afc44DcAA0", // ARBITRUM ONE MULTISIG
79
82
  zksyncsepolia: "0xa2f83de95E9F28eD443132C331B6a9C9B7a9F866", // ZKSYNC SEPOLIA MULTISIG
83
+ zksyncmainnet: "0x751Aa759cfBB6CE71A43b48e40e1cCcFC66Ba4aa", // ZKSYNC MAINNET MULTISIG
80
84
  bscmainnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
81
85
  bsctestnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
82
86
  };
@@ -19,6 +19,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
19
19
  arbitrumsepolia: "0x1426A5Ae009c4443188DA8793751024E358A61C2", // ARBITRUM SEPOLIA MULTISIG
20
20
  arbitrumone: "0x14e0E151b33f9802b3e75b621c1457afc44DcAA0", // ARBITRUM ONE MULTISIG
21
21
  zksyncsepolia: "0xa2f83de95E9F28eD443132C331B6a9C9B7a9F866", // ZKSYNC SEPOLIA MULTISIG
22
+ zksyncmainnet: "0x751Aa759cfBB6CE71A43b48e40e1cCcFC66Ba4aa", // ZKSYNC MAINNET MULTISIG
22
23
  bscmainnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
23
24
  bsctestnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
24
25
  };