This commit is contained in:
Alexey 2021-02-05 22:46:25 +03:00
parent ed48bee1f6
commit e09f53652a
2 changed files with 10 additions and 5 deletions

View File

@ -1,2 +1,3 @@
PRIVATE_KEY=0x
INFURA_TOKEN=
NETWORK=goerli

View File

@ -17,15 +17,19 @@ task('accounts', 'Prints the list of accounts', async () => {
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
const config = {
solidity: '0.6.12',
networks: {
hardhat: {
blockGasLimit: 950000000,
},
goerli: {
url: `https://goerli.infura.io/v3/${process.env.INFURA_TOKEN}`,
accounts: [process.env.PRIVATE_KEY],
},
},
}
if (process.env.NETWORK) {
config.networks[process.env.NETWORK] = {
url: `https://${process.env.NETWORK}.infura.io/v3/${process.env.INFURA_TOKEN}`,
accounts: [process.env.PRIVATE_KEY],
}
}
module.exports = config