@venusprotocol/venus-protocol 9.0.0 → 9.1.0-dev.2

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
  opbnbmainnet: "0xC46796a21a3A9FAB6546aF3434F2eBfFd0604207", // OPBNBMAINNET MULTISIG
30
30
  arbitrumsepolia: "0x1426A5Ae009c4443188DA8793751024E358A61C2", // ARBITRUM_SEPOLIA MULTISIG
31
31
  arbitrumone: "0x14e0E151b33f9802b3e75b621c1457afc44DcAA0", // ARBITRUM_ONE MULTISIG
32
+ xlayertestnet: "0x5961449d63149035aCfC0714D5155f24C9819004", // XLAYER TESTNET MULTISIG
32
33
  bscmainnet: await getTimelock(),
33
34
  bsctestnet: await getTimelock(),
34
35
  hardhat: deployer,
@@ -27,6 +27,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
27
27
  arbitrumsepolia: TEN_MINUTES,
28
28
  bscmainnet: NINETY_DAYS,
29
29
  ethereum: NINETY_DAYS,
30
+ arbitrumone: NINETY_DAYS,
30
31
  };
31
32
 
32
33
  const xVSVaultPoolId: Config = {
@@ -35,6 +36,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
35
36
  arbitrumsepolia: 0,
36
37
  bscmainnet: 0,
37
38
  ethereum: 0,
39
+ arbitrumone: 0,
38
40
  hardhat: 0,
39
41
  };
40
42
 
@@ -42,6 +44,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
42
44
  bsctestnet: 10_512_000, // 3 sec per block
43
45
  sepolia: 2_628_000, // 12 sec per block
44
46
  arbitrumsepolia: 0, // time based contracts
47
+ arbitrumone: 0, // time based contracts
45
48
  bscmainnet: 10_512_000,
46
49
  ethereum: 2_628_000,
47
50
  hardhat: 100,
@@ -69,6 +72,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
69
72
  opbnbtestnet: "0xb15f6EfEbC276A3b9805df81b5FB3D50C2A62BDf", // OPBNBTESTNET MULTISIG
70
73
  opbnbmainnet: "0xC46796a21a3A9FAB6546aF3434F2eBfFd0604207", // OPBNBMAINNET MULTISIG
71
74
  arbitrumsepolia: "0x1426A5Ae009c4443188DA8793751024E358A61C2", // ARBITRUM SEPOLIA MULTISIG
75
+ arbitrumone: "0x14e0E151b33f9802b3e75b621c1457afc44DcAA0", // ARBITRUM ONE MULTISIG
72
76
  bscmainnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
73
77
  bsctestnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
74
78
  };
@@ -17,6 +17,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
17
17
  opbnbtestnet: "0xb15f6EfEbC276A3b9805df81b5FB3D50C2A62BDf", // OPBNBTESTNET MULTISIG
18
18
  opbnbmainnet: "0xC46796a21a3A9FAB6546aF3434F2eBfFd0604207", // OPBNBMAINNET MULTISIG
19
19
  arbitrumsepolia: "0x1426A5Ae009c4443188DA8793751024E358A61C2", // ARBITRUM SEPOLIA MULTISIG
20
+ arbitrumone: "0x14e0E151b33f9802b3e75b621c1457afc44DcAA0", // ARBITRUM ONE MULTISIG
20
21
  bscmainnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
21
22
  bsctestnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
22
23
  };