Skip to content

Commit 5b354cc

Browse files
feat(espresso): add deployments for upcoming demo
Signed-off-by: james-a-morris <[email protected]>
1 parent 28dcc0f commit 5b354cc

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

deployments/deployments.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@
8383
"PolygonTokenBridger": { "address": "0x97f102f2f73717e203f964Ad9940e4C2e79b8597", "blockNumber": 26276246 },
8484
"SpokePool": { "address": "0x4589fbf26c6a456f075b5628178af68abe03c5ff", "blockNumber": 40549484 }
8585
},
86+
"10001": { "SpokePool": { "address": "0x09aea4b2242abC8bb4BB78D537A67a245A7bEC64", "blockNumber": 372750 } },
87+
"10002": { "SpokePool": { "address": "0x09aea4b2242abC8bb4BB78D537A67a245A7bEC64", "blockNumber": 372750 } },
8688
"421611": { "SpokePool": { "address": "0x3BED21dAe767e4Df894B31b14aD32369cE4bad8b", "blockNumber": 10523275 } },
8789
"421613": { "SpokePool": { "address": "0xd08baaE74D6d2eAb1F3320B2E1a53eeb391ce8e5", "blockNumber": 30397192 } },
8890
"421614": { "SpokePool": { "address": "0x7E63A5f1a8F0B4d0934B2f2327DAED3F6bb2ee75", "blockNumber": 12411026 } },

hardhat.config.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const config: HardhatUserConfig = {
125125
verifyURL: "https://zksync2-mainnet-explorer.zksync.io/contract_verification",
126126
},
127127
optimism: {
128-
url: getNodeUrl("optimism", true, 10),
128+
url: getNodeUrl("optimism-mainnet", true, 10),
129129
accounts: { mnemonic },
130130
saveDeployments: true,
131131
chainId: 10,
@@ -280,6 +280,20 @@ const config: HardhatUserConfig = {
280280
accounts: { mnemonic },
281281
companionNetworks: { l1: "goerli" },
282282
},
283+
"espresso-1": {
284+
chainId: 10001,
285+
url: "https://arb-1.across.aws.espresso.network",
286+
saveDeployments: true,
287+
accounts: { mnemonic },
288+
companionNetworks: { l1: "sepolia" },
289+
},
290+
"espresso-2": {
291+
chainId: 10002,
292+
url: "https://arb-2.across.aws.espresso.network",
293+
saveDeployments: true,
294+
accounts: { mnemonic },
295+
companionNetworks: { l1: "sepolia" },
296+
},
283297
},
284298
gasReporter: { enabled: process.env.REPORT_GAS !== undefined, currency: "USD" },
285299
etherscan: {

0 commit comments

Comments
 (0)