Skip to content

Commit

Permalink
fix: git-action
Browse files Browse the repository at this point in the history
  • Loading branch information
OnahProsperity authored and chibie committed Nov 11, 2023
1 parent c98d2f7 commit 58ff4fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ module.exports = {
},
mumbai: {
url: "https://polygon-mumbai.infura.io/v3/4458cf4d1689497b9a38b1d6bbf05e78", //process.env.POLYGON_MUMBAI_RPC_URL, //"https://rpc-mumbai.maticvigil.com/",
accounts: [DEPLOYER_PRIVATE_KEY],
accounts: DEPLOYER_PRIVATE_KEY,
chainId: 80001,
saveDeployments: true,
},
bscTestnet: {
url: "https://data-seed-prebsc-1-s3.binance.org:8545/",
accounts: [DEPLOYER_PRIVATE_KEY],
accounts: DEPLOYER_PRIVATE_KEY,
chainId: 97,
saveDeployments: true,
},
baseGoerli: {
url: "https://goerli.base.org",
accounts: [DEPLOYER_PRIVATE_KEY],
accounts: DEPLOYER_PRIVATE_KEY,
chainId: 84531,
gasPrice: 1000000000,
saveDeployments: true,
Expand Down

0 comments on commit 58ff4fe

Please sign in to comment.