Skip to content

Commit

Permalink
Solution theredguild#1 - Unstoppable
Browse files Browse the repository at this point in the history
Signed-off-by: André Augusto <andre.augusto@tecnico.ulisboa.pt>
  • Loading branch information
AndreAugusto11 committed Jan 13, 2023
1 parent 3e2a367 commit 2688c28
Show file tree
Hide file tree
Showing 4 changed files with 39,736 additions and 7,276 deletions.
8 changes: 8 additions & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,11 @@ module.exports = {
],
}
}

task("accounts", "Prints the list of accounts", async () => {
const accounts = await ethers.getSigners();

for (const account of accounts) {
console.log(account.address);
}
});
Loading

0 comments on commit 2688c28

Please sign in to comment.