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.
npm install --save-dev todo
# or
pnpm add -D todo
Load plugin in Hardhat config:
import HardhatPlugin from 'todo';
const config: HardhatUserConfig = {
plugins: [
HardhatPlugin,
],
hardhatPlugin: {
... // see table for configuration options
},
};
Add configuration under the hardhatPlugin
key:
option | description | default |
---|---|---|
Install dependencies via pnpm:
pnpm install
Setup Husky to format code on commit:
pnpm prepare