Skip to content

Commit

Permalink
support PRIVATE_KEY environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
lukema95 committed Sep 27, 2024
1 parent 06824d5 commit a2467c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tasks/src/balances.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const main = async (args: any, hre: HardhatRuntimeEnvironment) => {
spinner.start();
}

const evmKey = process.env.EVM_PRIVATE_KEY;
const evmKey = process.env.EVM_PRIVATE_KEY || process.env.PRIVATE_KEY;
const solanaKey = process.env.SOLANA_PRIVATE_KEY;
const btcKey = process.env.BTC_PRIVATE_KEY;

Expand Down

0 comments on commit a2467c4

Please sign in to comment.