2021-04-16 13:57:11 +00:00
|
|
|
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 () => {
|
|
|
|
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 = {
|
2021-04-19 08:32:36 +00:00
|
|
|
solidity: "0.8.0",
|
2021-04-16 13:57:11 +00:00
|
|
|
networks: {
|
|
|
|
local: {
|
|
|
|
url: 'http://127.0.0.1:8545',
|
|
|
|
chainId: 4
|
2021-04-19 08:32:36 +00:00
|
|
|
},
|
|
|
|
docker: {
|
|
|
|
url: process.env.ETH_ADDR,
|
|
|
|
chainId: 4
|
2021-04-16 13:57:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|