https://github.com/limechain/hardhat-local-hedera
Hardhat Local Hedera Repository
https://github.com/limechain/hardhat-local-hedera
Last synced: over 1 year ago
JSON representation
Hardhat Local Hedera Repository
- Host: GitHub
- URL: https://github.com/limechain/hardhat-local-hedera
- Owner: LimeChain
- License: mit
- Created: 2022-03-30T07:27:18.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-04T13:36:10.000Z (about 4 years ago)
- Last Synced: 2025-01-23T08:18:06.523Z (over 1 year ago)
- Language: TypeScript
- Size: 128 KB
- Stars: 1
- Watchers: 7
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/hardhat-hethers) [](https://hardhat.org)
# hardhat-local-hedera
[Hardhat](https://hardhat.org) plugin for integration with [local-hedera](https://github.com/LimeChain/local-hedera).
## What
This plugin brings to Hardhat the hedera package `local-hedera`, which allows you to interact with the local hedera nodes (consensus and mirror).
## Installation
```bash
npm install --save-dev 'hardhat-local-hedera'
```
And add the following statement to your `hardhat.config.js`:
```js
require('hardhat-local-hedera');
```
also be sure you've added it before `hardhat-hethers`
```js
require('hardhat-local-hedera');
require('hardhat-hethers');
```
## Tasks
This plugin creates no additional tasks.
## Environment extensions
This plugin resets the local network everytime on runtime.
## Usage
There are no additional steps you need to take for this plugin to work.
Under the hood, the plugin uses local-hedera as peer dependency, so you should be able to interact with the plugin on the fly via `npx local-hedera`.