Skip to content

Instantly share code, notes, and snippets.

@ximxim
Created October 24, 2021 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ximxim/c1b969a3205ac3facad029bed3b39e58 to your computer and use it in GitHub Desktop.
Save ximxim/c1b969a3205ac3facad029bed3b39e58 to your computer and use it in GitHub Desktop.
Hardhat deploy setup to rinkeby
/**
* importing secrets file that contains secret keys
*/
const secret = require('./secrets.json');
require("@nomiclabs/hardhat-waffle");
/**
* This is a sample Hardhat task. To learn how to create your own go to
* https://hardhat.org/guides/create-task.html
*/
task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
const accounts = await hre.ethers.getSigners();
for (const account of accounts) {
console.log(account.address);
}
});
/**
* You need to export an object to set up your config
* Go to https://hardhat.org/config/ to learn more
* @type import('hardhat/config').HardhatUserConfig
*
* using rinkeyby network secrets.
* Check: https://hardhat.org/tutorial/deploying-to-a-live-network.html#deploying-to-remote-networks
*/
module.exports = {
solidity: "0.8.4",
networks: {
rinkeby: {
url: secret.ALCHEMY_KEY,
accounts: [secret.PRIVATE_KEY],
},
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment