Skip to content

Commit

Permalink
Add default case for etherscan api key in the hardhat config (#286)
Browse files Browse the repository at this point in the history
Add default case etherscan api
  • Loading branch information
vtleonardo committed Sep 21, 2022
1 parent 36a2de9 commit 0de4759
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bridge/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,9 @@ const config: HardhatUserConfig = {
},
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
apiKey: process.env.ETHERSCAN_API_KEY
? process.env.ETHERSCAN_API_KEY
: "0000000000000000000000000000000000",
},
solidity: {
compilers: [
Expand Down

0 comments on commit 0de4759

Please sign in to comment.