Skip to content

Instantly share code, notes, and snippets.

@dharniel45
Created July 18, 2022 14:21
Show Gist options
  • Save dharniel45/aeb1dd9bb2b67c26b956b08e505a9bcd to your computer and use it in GitHub Desktop.
Save dharniel45/aeb1dd9bb2b67c26b956b08e505a9bcd to your computer and use it in GitHub Desktop.
require('@nomiclabs/hardhat-waffle');
require("dotenv").config({ path: ".env" });
module.exports = {
 solidity: {
 version: "0.8.1"
 },
 networks: {
 rinkeby: {
 url: process.env.ALCHEMY_API_KEY_URL,
 accounts: [process.env.RINKEBY_PRIVATE_KEY],
 },
 },
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment