Skip to content

Commit

Permalink
Add bsc apikey to hardhat etherscan config
Browse files Browse the repository at this point in the history
  • Loading branch information
diego-G committed Aug 27, 2024
1 parent d43fac2 commit 0b15a49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ETHERSCAN_API_KEY=""
POLYGONSCAN_API_KEY=""
ARBISCAN_API_KEY=""
BASESCAN_API_KEY=""
BSCSCAN_API_KEY=""

COINMARKETCAP_API_KEY=""

Expand Down
3 changes: 2 additions & 1 deletion hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ module.exports = {
arbitrumOne: process.env.ARBISCAN_API_KEY,
arbitrumTestnet: process.env.ARBISCAN_API_KEY,
base: process.env.BASESCAN_API_KEY,
baseTestnet: process.env.BASESCAN_API_KEY
baseTestnet: process.env.BASESCAN_API_KEY,
bsc: process.env.BSCSCAN_API_KEY
},
customChains: [
{
Expand Down
3 changes: 2 additions & 1 deletion scripts/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,6 @@ module.exports = {
verifyContract,
verifyImplementationContract,
verifyProxyAdminContract,
verifyProxyContract
verifyProxyContract,
verifyOnExplorer
}

0 comments on commit 0b15a49

Please sign in to comment.