Skip to content

Commit

Permalink
changed as per requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
6str committed Jul 17, 2022
1 parent e768e55 commit f244a45
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Expand Up @@ -7,6 +7,8 @@ Export Ethereum smart contract ABIs on compilation via Hardhat.
## Installation

```bash
npm install --save-dev hardhat-abi-exporter
# or
yarn add --dev hardhat-abi-exporter
```

Expand Down Expand Up @@ -82,13 +84,18 @@ abiExporter: [
The included Hardhat tasks may be run manually:

```bash
npx hardhat export-abi
npx hardhat clear-abi
# or
yarn run hardhat export-abi
yarn run hardhat clear-abi
```

By default, the hardhat `compile` task is run before exporting ABIs. This behavior can be disabled with the `--no-compile` flag:

```bash
npx hardhat export-abi --no-compile
# or
yarn run hardhat export-abi --no-compile
```

Expand Down

0 comments on commit f244a45

Please sign in to comment.