Skip to content

Commit

Permalink
Move infura project id to env
Browse files Browse the repository at this point in the history
danhper committed Apr 5, 2021
1 parent 5f092bb commit e693c66
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -5,8 +5,7 @@ import { HardhatUserConfig } from "hardhat/config";

require("dotenv").config();

export const INFURA_PROJECT_ID =
process.env.INFURA_PROJECT_ID || "1b672091002241c994a21e8d4083fbd5";
export const INFURA_PROJECT_ID = process.env.INFURA_PROJECT_ID;
export const INFURA_PROJECT_SECRET = process.env.INFURA_PROJECT_SECRET;
const KOVAN_PRIVATE_KEY = process.env.KOVAN_PRIVATE_KEY;

0 comments on commit e693c66

Please sign in to comment.