accounts.ts 245 B

123456789
  1. import { task } from "hardhat/config";
  2. task("accounts", "Prints the list of accounts", async (_taskArgs, hre) => {
  3. const accounts = await hre.ethers.getSigners();
  4. for (const account of accounts) {
  5. console.log(account.address);
  6. }
  7. });