@matterlabs/hardhat-zksync-verify
Version:
Hardhat plugin to verify smart contracts for the ZKsync network
20 lines • 544 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;
}
//# sourceMappingURL=types.d.ts.map