Skip to content

Commit

Permalink
refactor(hardhat.config.js): changes string concatenation when infura…
Browse files Browse the repository at this point in the history
… is used
  • Loading branch information
allemanfredi committed Oct 13, 2023
1 parent 4b534e8 commit a5d4a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/evm/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function getChainConfig(chain: keyof typeof chainIds): NetworkUserConfig {
jsonRpcUrl = "https://rpc.chiadochain.net/"
break
default:
jsonRpcUrl = "https://" + chain + ".infura.io/v3/" + infuraApiKey
jsonRpcUrl = `https://${chain}.infura.io/v3/${infuraApiKey}`
}
}

Expand Down

0 comments on commit a5d4a4a

Please sign in to comment.