Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhubbardsf/hardhat-ts-plugin-boilerplate
https://github.com/jhubbardsf/hardhat-ts-plugin-boilerplate
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jhubbardsf/hardhat-ts-plugin-boilerplate
- Owner: jhubbardsf
- License: mit
- Created: 2023-04-23T02:23:36.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-04-23T02:23:38.000Z (over 1 year ago)
- Last Synced: 2024-05-01T13:06:35.380Z (6 months ago)
- Language: TypeScript
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-TEMPLATE.md
- License: LICENSE
Awesome Lists containing this project
README
# hardhat-example-plugin
_A one line description of the plugin_
[Hardhat](https://hardhat.org) plugin example.
## What
<_A longer, one paragraph, description of the plugin_>
This plugin will help you with world domination by implementing a simple tic-tac-toe in the terminal.
## Installation
<_A step-by-step guide on how to install the plugin_>
```bash
npm install [list of peer dependencies]
```Import the plugin in your `hardhat.config.js`:
```js
require("");
```Or if you are using TypeScript, in your `hardhat.config.ts`:
```ts
import "";
```## Required plugins
<_The list of all the required Hardhat plugins if there are any_>
- [@nomiclabs/hardhat-web3](https://github.com/nomiclabs/hardhat/tree/master/packages/hardhat-web3)
## Tasks
<_A description of each task added by this plugin. If it just overrides internal
tasks, this may not be needed_>This plugin creates no additional tasks.
<_or_>
This plugin adds the _example_ task to Hardhat:
```
output of `npx hardhat help example`
```## Environment extensions
<_A description of each extension to the Hardhat Runtime Environment_>
This plugin extends the Hardhat Runtime Environment by adding an `example` field
whose type is `ExampleHardhatRuntimeEnvironmentField`.## Configuration
<_A description of each extension to the HardhatConfig or to its fields_>
This plugin extends the `HardhatUserConfig`'s `ProjectPathsUserConfig` object with an optional
`newPath` field.This is an example of how to set it:
```js
module.exports = {
paths: {
newPath: "new-path"
}
};
```## Usage
<_A description of how to use this plugin. How to use the tasks if there are any, etc._>
There are no additional steps you need to take for this plugin to work.
Install it and access ethers through the Hardhat Runtime Environment anywhere
you need it (tasks, scripts, tests, etc).