32 lines
810 B
JavaScript
32 lines
810 B
JavaScript
/* global task, ethers */
|
|
require('@nomiclabs/hardhat-waffle')
|
|
require('dotenv').config()
|
|
// 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 () => {
|
|
const accounts = await 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
|
|
*/
|
|
module.exports = {
|
|
solidity: '0.6.12',
|
|
networks: {
|
|
hardhat: {
|
|
blockGasLimit: 950000000,
|
|
},
|
|
goerli: {
|
|
url: `https://goerli.infura.io/v3/${process.env.INFURA_TOKEN}`,
|
|
accounts: [process.env.PRIVATE_KEY],
|
|
},
|
|
},
|
|
}
|