NFT Development Speedrun
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { HardhatUserConfig } from "hardhat/config"; | |
import "@nomicfoundation/hardhat-toolbox"; | |
import dotenv from "dotenv"; | |
dotenv.config(); | |
const { API_URL, PRIVATE_KEY } = process.env; | |
const config: HardhatUserConfig = { | |
solidity: "0.8.17", | |
defaultNetwork: "goerli", | |
networks: { | |
hardhat: {}, | |
goerli: { | |
url: API_URL, | |
accounts: [`0x${PRIVATE_KEY}`] | |
} | |
}, | |
} | |
export default config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment