Skip to content

Commit

Permalink
🚨 fix error on config
Browse files Browse the repository at this point in the history
  • Loading branch information
Aboudjem committed Jan 24, 2024
1 parent cbfc93d commit 95e5759
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,17 +318,17 @@ const config: HardhatUserConfig = {
},
baseSepoliaTestnet: {
url: "https://sepolia.base.org/",
accounts: [process.env.PRIVATE_KEY ?? ""], // you should have this in env
accounts: hardhatAccounts,
chainId: 84532,
},
scrollMainnet: {
url: "https://rpc.scroll.io/",
accounts: hardhatAccounts, // you should have this in env
accounts: hardhatAccounts,
chainId: 534352,
},
zetaTestnet: {
url: "https://rpc.ankr.com/zetachain_evm_athens_testnet",
accounts: hardhatAccounts, // You should have this in your environment variables or hardhat config
accounts: hardhatAccounts,
chainId: 7001,
},
},
Expand Down

0 comments on commit 95e5759

Please sign in to comment.