Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/solidstate-network/hardhat-accounts

📒 Query Hardhat accounts and balances 💰
https://github.com/solidstate-network/hardhat-accounts

accounts balances blockchain buidler eth ether ethereum hardhat wow

Last synced: 2 months ago
JSON representation

📒 Query Hardhat accounts and balances 💰

Awesome Lists containing this project

README

        

# Hardhat Accounts

Output list of available accounts and balances.

## Installation

```bash
npm install --save-dev @solidstate/hardhat-accounts
# or
yarn add --dev @solidstate/hardhat-accounts
```

## Usage

Load plugin in Hardhat config:

```javascript
require('@solidstate/hardhat-accounts');
```

Run the included Hardhat task to output available accounts:

```bash
npx hardhat accounts
# or
yarn run hardhat accounts
```

## Development

Install dependencies via Yarn:

```bash
yarn install
```

Setup Husky to format code on commit:

```bash
yarn prepare
```