Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hardhat-abi-exporter #353

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import "./tasks/dev_redemption_nft_metadata";
import "./tasks/test_deploy";
import { ETH_RPC, ETH_CHAIN_ID, DEPLOYER_PK, DEPLOYER_HD_PATH, ETHERSCAN_API_KEY } from "./config";
import "hardhat-gas-reporter";
import "hardhat-abi-exporter";

const networks: NetworksUserConfig = {
hardhat: {
Expand Down Expand Up @@ -81,5 +82,10 @@ const config: HardhatUserConfig = {
enabled: process.env.REPORT_GAS ? true : false,
excludeContracts: ["test/", "utils/", "misc/"],
},
abiExporter: {
path: "./artifacts/abi",
runOnCompile: true,
clear: true,
},
};
export default config;
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"hardhat": "^2.17.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
Expand Down
43 changes: 42 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2343,6 +2343,13 @@ __metadata:
languageName: node
linkType: hard

"ansi-colors@npm:^4.1.0":
version: 4.1.3
resolution: "ansi-colors@npm:4.1.3"
checksum: a9c2ec842038a1fabc7db9ece7d3177e2fe1c5dc6f0c51ecfbf5f39911427b89c00b5dc6b8bd95f82a26e9b16aaae2e83d45f060e98070ce4d1333038edceb0e
languageName: node
linkType: hard

"ansi-escapes@npm:^4.3.0":
version: 4.3.2
resolution: "ansi-escapes@npm:4.3.2"
Expand Down Expand Up @@ -4954,6 +4961,20 @@ __metadata:
languageName: node
linkType: hard

"delete-empty@npm:^3.0.0":
version: 3.0.0
resolution: "delete-empty@npm:3.0.0"
dependencies:
ansi-colors: ^4.1.0
minimist: ^1.2.0
path-starts-with: ^2.0.0
rimraf: ^2.6.2
bin:
delete-empty: bin/cli.js
checksum: 1e2b030346683f49b12460b91d7e1793fc61e9aa0be152a1b31317363632e92426be270f8d635b89d3915ae7da753dcfa6e3bd200f62edf21eaa876ef4443fd2
languageName: node
linkType: hard

"depd@npm:2.0.0":
version: 2.0.0
resolution: "depd@npm:2.0.0"
Expand Down Expand Up @@ -7381,6 +7402,18 @@ fsevents@~2.1.1:
languageName: node
linkType: hard

"hardhat-abi-exporter@npm:^2.10.1":
version: 2.10.1
resolution: "hardhat-abi-exporter@npm:2.10.1"
dependencies:
"@ethersproject/abi": ^5.5.0
delete-empty: ^3.0.0
peerDependencies:
hardhat: ^2.0.0
checksum: 5dba9ebb7bd1002311b504a87cc0f9197ffe5066a61d27073f49bde2adcd080e94ef9e2e696e4fb26c9731df1bed76967e1e0428742af36b37d9c70f9944c98b
languageName: node
linkType: hard

"hardhat-gas-reporter@npm:^1.0.9":
version: 1.0.9
resolution: "hardhat-gas-reporter@npm:1.0.9"
Expand Down Expand Up @@ -10854,6 +10887,13 @@ fsevents@~2.1.1:
languageName: node
linkType: hard

"path-starts-with@npm:^2.0.0":
version: 2.0.1
resolution: "path-starts-with@npm:2.0.1"
checksum: c82322343958b092fca962791f98ee338d489ab4c2343a5c8ae10aa26dd5fceb24d86867127cff330a592c6450215f05258441390c1bccc8e318e82ff9912c09
languageName: node
linkType: hard

"path-to-regexp@npm:0.1.7":
version: 0.1.7
resolution: "path-to-regexp@npm:0.1.7"
Expand Down Expand Up @@ -11923,7 +11963,7 @@ resolve@1.17.0:
languageName: node
linkType: hard

"rimraf@npm:^2.2.8, rimraf@npm:^2.6.3":
"rimraf@npm:^2.2.8, rimraf@npm:^2.6.2, rimraf@npm:^2.6.3":
version: 2.7.1
resolution: "rimraf@npm:2.7.1"
dependencies:
Expand Down Expand Up @@ -13444,6 +13484,7 @@ resolve@1.17.0:
ethereum-waffle: ^3.4.0
ethers: ^5.7.2
hardhat: ^2.17.0
hardhat-abi-exporter: ^2.10.1
hardhat-gas-reporter: ^1.0.9
prettier: ^2.8.8
prettier-plugin-solidity: ^1.1.3
Expand Down
Loading