Skip to content

Commit

Permalink
add empty default values to config in order to compile
Browse files Browse the repository at this point in the history
  • Loading branch information
kovalgek committed Dec 19, 2024
1 parent 9a204ef commit 3517a57
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,18 @@ const config: HardhatUserConfig = {
customChains: [
{
network: 'l1',
chainId: env.number("L1_CHAIN_ID"),
chainId: env.number("L1_CHAIN_ID", ""),
urls: {
apiURL: env.string("L1_BLOCK_EXPLORER_API_URL"),
browserURL: env.string("L1_BLOCK_EXPLORER_BROWSER_URL"),
apiURL: env.string("L1_BLOCK_EXPLORER_API_URL", ""),
browserURL: env.string("L1_BLOCK_EXPLORER_BROWSER_URL", ""),
},
},
{
network: 'l2',
chainId: env.number("L2_CHAIN_ID"),
chainId: env.number("L2_CHAIN_ID", ""),
urls: {
apiURL: env.string("L2_BLOCK_EXPLORER_API_URL"),
browserURL: env.string("L2_BLOCK_EXPLORER_BROWSER_URL"),
apiURL: env.string("L2_BLOCK_EXPLORER_API_URL", ""),
browserURL: env.string("L2_BLOCK_EXPLORER_BROWSER_URL", ""),
},
},
],
Expand Down

0 comments on commit 3517a57

Please sign in to comment.