Skip to content

Commit

Permalink
Fix hardhat config error
Browse files Browse the repository at this point in the history
  • Loading branch information
makoto committed Oct 20, 2023
1 parent a8d3dc8 commit 005f988
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions op-verifier/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import 'hardhat-deploy';
import 'hardhat-deploy-ethers';
import { HardhatUserConfig } from 'hardhat/config';
import 'ethers'
const DEPLOYER_PRIVATE_KEY = process.env.DEPLOYER_PRIVATE_KEY ?? "ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80";
const L1_PROVIDER_URL = process.env.L1_PROVIDER_URL
const DEPLOYER_PRIVATE_KEY = process.env.DEPLOYER_PRIVATE_KEY || "ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80";
const L1_PROVIDER_URL = process.env.L1_PROVIDER_URL || '';
const L1_ETHERSCAN_API_KEY = process.env.L1_ETHERSCAN_API_KEY;
const L2_ETHERSCAN_API_KEY = process.env.L2_ETHERSCAN_API_KEY;

Expand Down

0 comments on commit 005f988

Please sign in to comment.