Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ryardley committed Sep 14, 2024
1 parent aaeb657 commit dacfb36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/evm/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ dotenv.config();

const { INFURA_KEY, MNEMONIC, ETHERSCAN_API_KEY } = process.env;

if (!process.env.TYPECHAIN) { // NOTE: enabling typechain compilation without ENV vars
if (!process.env.TYPECHAIN) {
// NOTE: enabling typechain compilation without ENV vars
if (!INFURA_KEY || !MNEMONIC || !ETHERSCAN_API_KEY) {
console.error(
"Please set the INFURA_KEY, MNEMONIC, and ETHERSCAN_API_KEY environment variables",
Expand Down

0 comments on commit dacfb36

Please sign in to comment.