Skip to content

Commit a81ebc7

Browse files
authored
feat: goerli deployment MerkleDistributor (#189)
* feat: goerli deployment MerkleDistributor * revert applied auto changes * Revert "revert applied auto changes" This reverts commit 24bff4e.
1 parent 9465c1c commit a81ebc7

File tree

4 files changed

+950
-7
lines changed

4 files changed

+950
-7
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import "hardhat-deploy";
2+
import { HardhatRuntimeEnvironment } from "hardhat/types/runtime";
3+
4+
const func = async function (hre: HardhatRuntimeEnvironment) {
5+
const { deployments, getNamedAccounts } = hre;
6+
const { deploy } = deployments;
7+
8+
const { deployer } = await getNamedAccounts();
9+
10+
await deploy("MerkleDistributor", {
11+
from: deployer,
12+
log: true,
13+
skipIfAlreadyDeployed: true,
14+
args: [],
15+
});
16+
};
17+
18+
module.exports = func;
19+
func.tags = ["MerkleDistributor", "mainnet"];

deployments/deployments.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@
2323
"RateModelStore": { "address": "0x18a200A2427e243154EC8217890Bc08062afc5A2", "blockNumber": 10468968 }
2424
},
2525
"5": {
26-
"AcrossConfigStore": { "address": "0x3215e3C91f87081757d0c41EF0CB77738123Be83", "blockNumber": 6860550 },
27-
"SpokePool": { "address": "0x1Ae1d80e1725A478f5e653bF79f8Ee4aB5B34719", "blockNumber": 6860543 },
28-
"HubPool": { "address": "0xA44A832B994f796452e4FaF191a041F791AD8A0A", "blockNumber": 6860535 },
29-
"LpTokenFactory": { "address": "0xe2a742453614Cb3597bc92242487436A54D1B385", "blockNumber": 6860534 },
30-
"PolygonTokenBridger": { "address": "0x97f102f2f73717e203f964Ad9940e4C2e79b8597", "blockNumber": 6860545 },
31-
"Polygon_Adapter": { "address": "0x5ed9C283F44f961deB73048a807629672b1f1F15", "blockNumber": 6860547 }
26+
"Arbitrum_Adapter": { "address": "0xc169D58df5fdF52fC47d7b67d570449feE47BfE9", "blockNumber": 7306652 },
27+
"Ethereum_Adapter": { "address": "0x7b1D5aEA5b1b8C325711AA4b4AaAacD5E1ea1994", "blockNumber": 7371150 },
28+
"SpokePool": { "address": "0xEc88d3C08E2939562Ff8188B4e30A52236C3FF09", "blockNumber": 7371157 },
29+
"HubPool": { "address": "0x0e2817C49698cc0874204AeDf7c72Be2Bb7fCD5d", "blockNumber": 7370152 },
30+
"LpTokenFactory": { "address": "0xD4B978681B55A94CF44a21ac9B1352e641D0838C", "blockNumber": 7370151 },
31+
"MerkleDistributor": { "address": "0xc64226599444cA9b6d930603B507a04d8FA61AdD", "blockNumber": 7756429 },
32+
"ZkSync_Adapter": { "address": "0xAEED2E2FB1EFDc5aD10A7FB4d6bA6D71ce8aFA1F", "blockNumber": 7375174 }
3233
},
3334
"10": { "SpokePool": { "address": "0xa420b2d1c0841415A695b81E5B867BCD07Dff8C9", "blockNumber": 8747136 } },
3435
"42": {
@@ -44,11 +45,13 @@
4445
"PolygonTokenBridger": { "address": "0x0330E9b4D0325cCfF515E81DFbc7754F2a02ac57", "blockNumber": 28604258 },
4546
"SpokePool": { "address": "0x69B5c72837769eF1e7C164Abc6515DcFf217F920", "blockNumber": 28604263 }
4647
},
48+
"280": { "SpokePool": { "address": "0x467A26E2eAcf5f81b63016Dbb4F0828809e79fF5", "blockNumber": 1114933 } },
4749
"288": { "SpokePool": { "address": "0xBbc6009fEfFc27ce705322832Cb2068F8C1e0A58", "blockNumber": 619993 } },
4850
"42161": { "SpokePool": { "address": "0xB88690461dDbaB6f04Dfad7df66B7725942FEb9C", "blockNumber": 12741972 } },
4951
"80001": {
5052
"PolygonTokenBridger": { "address": "0x97f102f2f73717e203f964Ad9940e4C2e79b8597", "blockNumber": 26276246 },
5153
"SpokePool": { "address": "0x45fF03629D024b7763275e732a2d80202c18b31C", "blockNumber": 26276253 }
5254
},
53-
"421611": { "SpokePool": { "address": "0x3BED21dAe767e4Df894B31b14aD32369cE4bad8b", "blockNumber": 10523275 } }
55+
"421611": { "SpokePool": { "address": "0x3BED21dAe767e4Df894B31b14aD32369cE4bad8b", "blockNumber": 10523275 } },
56+
"421613": { "SpokePool": { "address": "0x3baD7AD0728f9917d1Bf08af5782dCbD516cDd96", "blockNumber": 10698 } }
5457
}

0 commit comments

Comments
 (0)