Skip to content

Commit

Permalink
add network config for verifying arbitrum and optimism contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
moodysalem committed Nov 29, 2021
1 parent c05a0e2 commit 7e47211
Show file tree
Hide file tree
Showing 3 changed files with 174 additions and 113 deletions.
12 changes: 12 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ export default {
kovan: {
url: `https://kovan.infura.io/v3/${process.env.INFURA_API_KEY}`,
},
arbitrumRinkeby: {
url: `https://arbitrum-rinkeby.infura.io/v3/${process.env.INFURA_API_KEY}`
},
arbitrum: {
url: `https://arbitrum-mainnet.infura.io/v3/${process.env.INFURA_API_KEY}`
},
optimismKovan: {
url: `https://optimism-kovan.infura.io/v3/${process.env.INFURA_API_KEY}`
},
optimism: {
url: `https://optimism-mainnet.infura.io/v3/${process.env.INFURA_API_KEY}`
}
},
etherscan: {
// Your API key for Etherscan
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"dependencies": {},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.6",
Expand Down
Loading

0 comments on commit 7e47211

Please sign in to comment.