@symblox/hardhat-abi-gen
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

Hardhat ABI Generator

Export Solidity smart contract ABIs and generate javascript objects on compilation via Hardhat.

Installation

yarn add --dev @symblox/hardhat-abi-gen

Usage

Load plugin in Hardhat config:

require('@symblox/hardhat-abi-gen');

Add configuration under the abiExporter key:

option description default
path path to ABI export directory (relative to Hardhat root) './abi'
clear whether to delete old files in path on compilation false
flat whether to flatten output directory (may cause name collisions) false
only Array of String matchers used to select included contracts, defaults to all contracts if length is 0 []
except Array of String matchers used to exclude contracts []
spacing number of spaces per indentation level of formatted output 2
abiExporter: {
  path: './data/abi',
  clear: true,
  flat: true,
  only: [':ERC20$'],
  spacing: 2
}

The path directory will be created if it does not exist.

The clear option is set to false by default because it represents a destructive action, but should be set to true in most cases.

ABIs files are saved in the format [CONTRACT_NAME].json.

Package Sidebar

Install

npm i @symblox/hardhat-abi-gen

Weekly Downloads

55

Version

0.2.0

License

MIT

Unpacked Size

7.05 kB

Total Files

7

Last publish

Collaborators

  • symblox