Skip to content

Commit

Permalink
build: update hardhat config
Browse files Browse the repository at this point in the history
  • Loading branch information
lingcoder committed Aug 8, 2024
1 parent 04aafab commit 0f262eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ export default {
accounts: [process.env.PRIVATE_KEY],
timeout: 10 * 60 * 1000,
},
bnb: {
url: "https://bsc-dataseed.binance.org/",
bsc: {
url: `https://bsc-mainnet.infura.io/v3/${process.env.INFURA_API_KEY}`,
accounts: [process.env.PRIVATE_KEY],
chainId: 56,
live: true,
saveDeployments: true,
},
bnbTest: {
url: "https://data-seed-prebsc-2-s2.binance.org:8545/",
bscTestnet: {
url: `https://bsc-testnet.infura.io/v3/${process.env.INFURA_API_KEY}`,
accounts: [process.env.PRIVATE_KEY],
chainId: 97,
live: true,
Expand Down

0 comments on commit 0f262eb

Please sign in to comment.