Created
July 21, 2024 16:51
-
-
Save KBPsystem777/e02561d73d0299836dc9463782e86fd9 to your computer and use it in GitHub Desktop.
DevUp!: Setting up your hardhat config
This file contains hidden or 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
require("@nomicfoundation/hardhat-toolbox"); | |
require("dotenv").config(); | |
const { TESTNET_PRIVATE_KEY } = process.env; | |
/** @type import('hardhat/config').HardhatUserConfig */ | |
module.exports = { | |
solidity: "0.8.24", | |
networks: { | |
sepolia: { | |
url: "https://ethereum-sepolia-rpc.publicnode.com", | |
accounts: [TESTNET_PRIVATE_KEY], | |
}, | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment