UNPKG

hardhat-scilla-plugin

Version:
13 lines 544 B
import { ContractName, ParsedContract } from "./ScillaParser"; export interface ContractInfo { hash: string; path: string; parsedContract: ParsedContract; } type ContractMapByName = Record<ContractName, ContractInfo>; export type ScillaContracts = ContractMapByName; export declare const updateContractsInfo: () => Promise<void>; export declare const loadScillaContractsInfo: () => ContractMapByName; export declare const getFileHash: (fileName: string) => string; export {}; //# sourceMappingURL=ScillaContractsInfoUpdater.d.ts.map