Skip to content

Commit

Permalink
chore(eth-multisig-v4): add arbeth and opeth config
Browse files Browse the repository at this point in the history
  • Loading branch information
gianchandania committed Nov 22, 2023
1 parent 1645144 commit 2717494
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
20 changes: 10 additions & 10 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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'
}
}
]
Expand Down
6 changes: 5 additions & 1 deletion scripts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
]);
Expand Down

0 comments on commit 2717494

Please sign in to comment.