hardhat-deployed-records
Version:
Hardhat plugin for deploying records
13 lines (12 loc) • 448 B
TypeScript
import { HardhatRuntimeEnvironment } from "hardhat/types";
export declare function parseArtifacts(hre: HardhatRuntimeEnvironment, ignoreContracts: 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][];