@matterlabs/hardhat-zksync-verify
Version:
Hardhat plugin to verify smart contracts for the ZKsync network
14 lines • 533 B
TypeScript
import { VerificationStatusResponse } from '../verification-status-response';
export declare class ZksyncBlockExplorerResponse implements VerificationStatusResponse {
readonly status: string;
readonly error: string | undefined;
readonly compilationErrors: string[] | undefined;
constructor(response: any);
errorExists(): boolean;
getError(): string;
isPending(): boolean;
isFailure(): boolean;
isOk(): boolean;
isSuccess(): boolean;
}
//# sourceMappingURL=verification-status-response.d.ts.map