You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
572 B
22 lines
572 B
|
4 years ago
|
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
|
||
|
|
*/
|
||
|
|
module.exports = {
|
||
|
|
solidity: "0.8.4",
|
||
|
|
};
|