Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 💰
- Host: GitHub
- URL: https://github.com/solidstate-network/hardhat-accounts
- Owner: solidstate-network
- License: mit
- Created: 2022-10-10T03:25:20.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T16:01:17.000Z (5 months ago)
- Last Synced: 2024-11-03T01:22:58.154Z (3 months ago)
- Topics: accounts, balances, blockchain, buidler, eth, ether, ethereum, hardhat, wow
- Language: TypeScript
- Homepage:
- Size: 254 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```