Skip to content

Commit

Permalink
fixed CI/CD config error
Browse files Browse the repository at this point in the history
  • Loading branch information
broken-byte committed Jun 22, 2024
1 parent 7ef1604 commit 1578248
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@ import "@nomicfoundation/hardhat-toolbox";
import "@nomicfoundation/hardhat-verify";

const isPreppedForTestnetAndMainnetDeployments: Boolean = true;
const fakePrivateKey = "0x4c0883a69102937d6231471b5dbb6204fe512961708279f6dcad7e2a6e24c4b1";

const ALCHEMY_BASE_MAINNET_API_KEY: string = process.env.ALCHEMY_API_KEY!!;

// I dont trust Github's servers THAT much so I will not be adding my private key/base api key to the repo
// I dont trust Github's servers THAT much so I will not be adding my private key/base testnet api key to the repo
// secrets mappings after testnet/mainnet deployment.
const BASE_ENGINEERING_DEPLOYER_PRIVATE_KEY: string =
isPreppedForTestnetAndMainnetDeployments ?
"" : process.env.BASE_ENGINEERING_DEPLOYER_PRIVATE_KEY!!;
fakePrivateKey : process.env.BASE_ENGINEERING_DEPLOYER_PRIVATE_KEY!!;
const ALCHEMY_BASE_SEPLOYIA_API_KEY: string =
isPreppedForTestnetAndMainnetDeployments ?
"" : process.env.ALCHEMY_BASE_SEPOLIA_API_KEY!!;

const BASESCAN_BASED_WHALE_API_KEY: string = process.env.BASESCAN_BASED_WHALE_API_KEY!!;

const config: HardhatUserConfig = {
Expand Down

0 comments on commit 1578248

Please sign in to comment.