Skip to content

Instantly share code, notes, and snippets.

View derrekcoleman's full-sized avatar
🏗️
buidling

Derrek derrekcoleman

🏗️
buidling
View GitHub Profile
@derrekcoleman
derrekcoleman / hardhat.config.ts
Created February 19, 2024 17:10
hardhat.config.ts - 40+ networks, default API keys
import * as dotenv from "dotenv";
dotenv.config();
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-ethers";
import "@nomicfoundation/hardhat-chai-matchers";
import "@typechain/hardhat";
import "hardhat-gas-reporter";
import "solidity-coverage";
import "@nomicfoundation/hardhat-verify";
import "hardhat-deploy";