Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kendricktan/buidler-source-descriptor
A Buidler plugin to generate a descriptor of your solidity source code
https://github.com/kendricktan/buidler-source-descriptor
Last synced: 22 days ago
JSON representation
A Buidler plugin to generate a descriptor of your solidity source code
- Host: GitHub
- URL: https://github.com/kendricktan/buidler-source-descriptor
- Owner: kendricktan
- License: mit
- Created: 2020-05-07T23:21:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T22:07:22.000Z (almost 2 years ago)
- Last Synced: 2024-10-14T03:18:18.983Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 541 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README-TEMPLATE.md
- License: LICENSE
Awesome Lists containing this project
README
[![buidler](https://buidler.dev/buidler-plugin-badge.svg?1)](https://buidler.dev)
# buidler-example-plugin_A one line description of the plugin_
[Buidler](http://getbuidler.com) 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]
```And add the following statement to your `buidler.config.js`:
```js
usePlugin("");
```## Required plugins
<_The list of all the required Buidler plugins if there are any_>
- [@nomiclabs/buidler-web3](https://github.com/nomiclabs/buidler/tree/master/packages/buidler-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 Buidler:
```
output of npx buidler help example
```## Environment extensions
<_A description of each extension to the Buidler Runtime Environment_>
This plugin extends the Buidler Runtime Environment by adding an `example` field
whose type is `ExampleBuidlerRuntimeEnvironmentField`.## Configuration
<_A description of each extension to the BuidlerConfig or to its fields_>
This plugin extends the `BuidlerConfig`'s `ProjectPaths` 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 Buidler Runtime Environment anywhere
you need it (tasks, scripts, tests, etc).## TypeScript support
<_This section is needed if you are extending types in your plugin_>
You need to add this to your `tsconfig.json`'s `files` array:
`"node_modules//src/type-extensions.d.ts"`