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

https://github.com/solidstate-network/hardhat-plugin-template

👷🏽 Template for new Hardhat plugins built with TypeScript 🔌
https://github.com/solidstate-network/hardhat-plugin-template

buidler eth ether ethereum hardhat hardhat-plugin hardhat-plugins plugin template ts typescript wow

Last synced: about 1 month ago
JSON representation

👷🏽 Template for new Hardhat plugins built with TypeScript 🔌

Awesome Lists containing this project

README

          

# Solidstate Hardhat Plugin Template

> Note: This repository was generated from a template or is the template itself. To set up a new project, update all values and address all comments marked "TODO" and remove this notice.

## Installation

```bash
npm install --save-dev todo
# or
pnpm add -D todo
```

## Usage

Load plugin in Hardhat config:

```typescript
import hardhatPlugin from 'todo';

const config: HardhatUserConfig = {
plugins: [
hardhatPlugin,
],
hardhatPlugin: {
... // see table for configuration options
},
};
```

Add configuration under the `hardhatPlugin` key:

| option | description | default |
| ------ | ----------- | ------- |
| | | |

## Development

Install dependencies via pnpm:

```bash
pnpm install
```

Setup Husky to format code on commit:

```bash
pnpm prepare
```