Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmihal/hardhat-interface-generator
https://github.com/dmihal/hardhat-interface-generator
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dmihal/hardhat-interface-generator
- Owner: dmihal
- License: mit
- Created: 2021-07-01T21:20:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-24T09:45:46.000Z (10 months ago)
- Last Synced: 2024-05-01T21:01:44.762Z (6 months ago)
- Language: TypeScript
- Size: 331 KB
- Stars: 31
- Watchers: 4
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-solidity - dmihal/hardhat-interface-generator - Hardhat plugin to automatically generate interfaces from code. (Libraries)
- awesome-solidity - dmihal/hardhat-interface-generator - Hardhat plugin to automatically generate interfaces from code. (Libraries)
- awesome-solidity - dmihal/hardhat-interface-generator - Hardhat plugin to automatically generate interfaces from code. (Libraries)
README
# hardhat-interface-generator
_Generate solidity interfaces_
[Hardhat](https://hardhat.org) plugin.
## Installation
```bash
npm install hardhat-interface-generator
```Import the plugin in your `hardhat.config.js`:
```js
require("hardhat-interface-generator");
```Or if you are using TypeScript, in your `hardhat.config.ts`:
```ts
import "hardhat-interface-generator";
```## Tasks
This plugin adds the _gen-interface_ task to Hardhat:
## Usage
```bash
yarn hardhat gen-interface
```