@venusprotocol/venus-protocol 9.6.0-dev.3 → 9.6.0-dev.4
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.
- package/deploy/012-deploy-prime.ts +4 -0
- package/deploy/013-configure-prime.ts +1 -0
- package/deployments/unichainsepolia/Prime.json +2042 -0
- package/deployments/unichainsepolia/PrimeLiquidityProvider.json +1113 -0
- package/deployments/unichainsepolia/PrimeLiquidityProvider_Implementation.json +1432 -0
- package/deployments/unichainsepolia/PrimeLiquidityProvider_Proxy.json +272 -0
- package/deployments/unichainsepolia/Prime_Implementation.json +2966 -0
- package/deployments/unichainsepolia/Prime_Proxy.json +282 -0
- package/deployments/unichainsepolia/solcInputs/85188a92ce3f2d086d0749da13f3ceb1.json +79 -0
- package/deployments/unichainsepolia.json +5771 -0
- package/deployments/unichainsepolia_addresses.json +6 -0
- package/dist/deploy/012-deploy-prime.js +4 -0
- package/dist/deploy/013-configure-prime.js +1 -0
- package/package.json +1 -1
|
@@ -27,6 +27,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
|
|
|
27
27
|
arbitrumsepolia: TEN_MINUTES,
|
|
28
28
|
zksyncsepolia: TEN_MINUTES,
|
|
29
29
|
opsepolia: TEN_MINUTES,
|
|
30
|
+
unichainsepolia: TEN_MINUTES,
|
|
30
31
|
basesepolia: TEN_MINUTES,
|
|
31
32
|
basemainnet: NINETY_DAYS,
|
|
32
33
|
bscmainnet: NINETY_DAYS,
|
|
@@ -47,6 +48,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
|
|
|
47
48
|
zksyncmainnet: 0,
|
|
48
49
|
opsepolia: 0,
|
|
49
50
|
opmainnet: 0,
|
|
51
|
+
unichainsepolia: 0,
|
|
50
52
|
hardhat: 0,
|
|
51
53
|
basesepolia: 0,
|
|
52
54
|
basemainnet: 0,
|
|
@@ -61,6 +63,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
|
|
|
61
63
|
zksyncmainnet: 0, // time based contracts
|
|
62
64
|
opsepolia: 0, // time based contracts
|
|
63
65
|
opmainnet: 0, // time based contracts
|
|
66
|
+
unichainsepolia: 0, // time based contracts
|
|
64
67
|
basesepolia: 0, // time based contracts
|
|
65
68
|
basemainnet: 0, // time based contracts
|
|
66
69
|
bscmainnet: 10_512_000,
|
|
@@ -95,6 +98,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
|
|
|
95
98
|
zksyncmainnet: "0x751Aa759cfBB6CE71A43b48e40e1cCcFC66Ba4aa", // ZKSYNC MAINNET MULTISIG
|
|
96
99
|
opsepolia: "0xd57365EE4E850e881229e2F8Aa405822f289e78d", // OPSEPOLIA MULTISIG
|
|
97
100
|
opmainnet: "0x2e94dd14E81999CdBF5deDE31938beD7308354b3", // OPMAINNET MULTISIG
|
|
101
|
+
unichainsepolia: "0x9831D3A641E8c7F082EEA75b8249c99be9D09a34", // UNICHAIN SEPOLIA MULTISIG
|
|
98
102
|
basesepolia: "0xdf3b635d2b535f906BB02abb22AED71346E36a00", // BASE SEPOLIA MULTISIG
|
|
99
103
|
basemainnet: "0x1803Cf1D3495b43cC628aa1d8638A981F8CD341C", // BASE MAINNET MULTISIG
|
|
100
104
|
bscmainnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
|
|
@@ -22,6 +22,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
|
|
|
22
22
|
zksyncmainnet: "0x751Aa759cfBB6CE71A43b48e40e1cCcFC66Ba4aa", // ZKSYNC MAINNET MULTISIG
|
|
23
23
|
opsepolia: "0xd57365EE4E850e881229e2F8Aa405822f289e78d", // OPSEPOLIA MULTISIG
|
|
24
24
|
opmainnet: "0x2e94dd14E81999CdBF5deDE31938beD7308354b3", // OPMAINNET MULTISIG
|
|
25
|
+
unichainsepolia: "0x9831D3A641E8c7F082EEA75b8249c99be9D09a34", // UNICHAIN SEPOLIA MULTISIG
|
|
25
26
|
basesepolia: "0xdf3b635d2b535f906BB02abb22AED71346E36a00", // BASE SEPOLIA MULTISIG
|
|
26
27
|
basemainnet: "0x1803Cf1D3495b43cC628aa1d8638A981F8CD341C", // BASE MAINNET MULTISIG
|
|
27
28
|
bscmainnet: await getContractAddressOrNullAddress(deployments, "NormalTimelock"),
|