mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 12:56:20 +00:00
13 lines
270 B
TypeScript
13 lines
270 B
TypeScript
|
//
|
||
|
// Copyright 2022 Vulcanize, Inc.
|
||
|
//
|
||
|
|
||
|
import { task } from 'hardhat/config';
|
||
|
import '@nomiclabs/hardhat-ethers';
|
||
|
|
||
|
task('account', 'Prints the account', async (taskArgs, hre) => {
|
||
|
const [account] = await hre.ethers.getSigners();
|
||
|
|
||
|
console.log(account.address);
|
||
|
});
|