UNPKG

hardhat-deployed

Version:

Hardhat plugin for saving deployed contract address.

13 lines (12 loc) 477 B
import { HardhatRuntimeEnvironment } from "hardhat/types"; export declare function parseArtifacts(hre: HardhatRuntimeEnvironment, ignoreContracts: string[], externalContracts: string[]): Promise<{ contracts: { name: string; path: string[]; }[]; }>; export declare function paths2json(existsJson: any, contracts: { name: string; path: string[]; }[], defaultValue: string): string; export declare function flatJson(json: any): [string, string][];