@matterlabs/hardhat-zksync-verify
Version:
Hardhat plugin to verify smart contracts for the ZKsync network
21 lines • 625 B
TypeScript
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