Skip to content

Commit

Permalink
add bscscan key
Browse files Browse the repository at this point in the history
  • Loading branch information
jfschwarz committed Nov 22, 2024
1 parent 4aac8b8 commit b180dc1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/evm/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const {
SNOWTRACE_API_KEY,
ZKEVM_POLYGONSCAN_API_KEY,
BASESCAN_API_KEY,
BSCSCAN_API_KEY,
} = process.env;

const sharedNetworkConfig: HttpNetworkUserConfig = {};
Expand Down Expand Up @@ -136,6 +137,7 @@ const config: HardhatUserConfig = {
zkevm: ZKEVM_POLYGONSCAN_API_KEY,
base: BASESCAN_API_KEY,
baseSepolia: BASESCAN_API_KEY,
bsc: BSCSCAN_API_KEY,
} as Record<string, string>,
customChains: [
{
Expand Down Expand Up @@ -186,6 +188,14 @@ const config: HardhatUserConfig = {
browserURL: "https://zkevm.polygonscan.com",
},
},
{
network: "bsc",
chainId: 56,
urls: {
apiURL: "https://api.bscscan.com/api",
browserURL: "https://bscscan.com",
},
},
],
},
gasReporter: {
Expand Down

0 comments on commit b180dc1

Please sign in to comment.