From 2717494c92a12f96c5ae7c6999754dd13db59b1b Mon Sep 17 00:00:00 2001 From: Akash Gianchandani Date: Wed, 22 Nov 2023 19:59:09 +0530 Subject: [PATCH] chore(eth-multisig-v4): add arbeth and opeth config WIN-1097 --- hardhat.config.ts | 20 ++++++++++---------- scripts/deploy.ts | 6 +++++- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 5209c05..e45ed1a 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -78,7 +78,7 @@ const config: HardhatUserConfig = { topeth: { url: `${QUICKNODE_OPTIMISM_SEPOLIA_API_KEY}`, accounts: [`${TESTNET_PRIVATE_KEY_FOR_CONTRACT_DEPLOYMENT}`] - }, + } }, gasReporter: { enabled: process.env.REPORT_GAS !== undefined, @@ -104,27 +104,27 @@ const config: HardhatUserConfig = { }, customChains: [ { - network: "holesky", + network: 'holesky', chainId: 17000, urls: { - apiURL: "https://api-holesky.etherscan.io/api", - browserURL: "https://holesky.etherscan.io" + apiURL: 'https://api-holesky.etherscan.io/api', + browserURL: 'https://holesky.etherscan.io' } }, { - network: "arbitrumSepolia", + network: 'arbitrumSepolia', chainId: 421614, urls: { - apiURL: "https://api-sepolia.arbiscan.io/api", - browserURL: "https://sepolia.arbiscan.io" + apiURL: 'https://api-sepolia.arbiscan.io/api', + browserURL: 'https://sepolia.arbiscan.io' } }, { - network: "optimisticSepolia", + network: 'optimisticSepolia', chainId: 11155420, urls: { - apiURL: "https://api-sepolia-optimistic.etherscan.io/api", - browserURL: "https://sepolia-optimism.etherscan.io" + apiURL: 'https://api-sepolia-optimistic.etherscan.io/api', + browserURL: 'https://sepolia-optimism.etherscan.io' } } ] diff --git a/scripts/deploy.ts b/scripts/deploy.ts index 893f089..4f37420 100644 --- a/scripts/deploy.ts +++ b/scripts/deploy.ts @@ -95,7 +95,11 @@ async function main() { await forwarderFactory.deployTransaction.wait(10); console.log('Done waiting, verifying'); - await verifyContract(walletImplementationContractName, walletSimple.address, []); + await verifyContract( + walletImplementationContractName, + walletSimple.address, + [] + ); await verifyContract('WalletFactory', walletFactory.address, [ walletSimple.address ]);