accounts.ts 247 B

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