UNPKG

@matterlabs/hardhat-zksync-verify

Version:
21 lines 625 B
import { CompilationJob, CompilerInput, CompilerOutput } from 'hardhat/types'; export interface Build { compilationJob: CompilationJob; input: CompilerInput; output: CompilerOutput; solcBuild: any; } export interface VerificationArgs { address?: string; constructorArgsParams: string[]; constructorArgs?: string; contract?: string; libraries?: string; listNetworks?: boolean; noCompile?: boolean; } export interface Libraries { [libraryName: string]: string; } export type FormatedLibrariesForConfig = Record<string, Record<string, string>>; //# sourceMappingURL=types.d.ts.map