UNPKG

hardhat-abi-exporter

Version:

Export Ethereum smart contract ABIs on compilation

9 lines (8 loc) 241 B
import { clearAbiGroup } from '../logic.js'; const action = async (_, hre) => { const entries = hre.config.abiExporter; await Promise.all(entries.map((entry) => { clearAbiGroup(hre, entry); })); }; export default action;