Skip to content

Commit fe07103

Browse files
committed
chore(cli-template-hardhat): add supported networks to hardhat
Former-commit-id: 0780751
1 parent aa23034 commit fe07103

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

packages/cli-template-hardhat/hardhat.config.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,21 @@ function getNetworks(): NetworksUserConfig {
1717
chainId: 5,
1818
accounts
1919
},
20+
sepolia: {
21+
url: process.env.ETHEREUM_URL,
22+
chainId: 11155111,
23+
accounts
24+
},
25+
mumbai: {
26+
url: process.env.ETHEREUM_URL,
27+
chainId: 80001,
28+
accounts
29+
},
30+
"optimism-goerli": {
31+
url: process.env.ETHEREUM_URL,
32+
chainId: 420,
33+
accounts
34+
},
2035
arbitrum: {
2136
url: process.env.ETHEREUM_URL,
2237
chainId: 42161,

0 commit comments

Comments
 (0)