UNPKG

@mstable/protocol

Version:
13 lines (12 loc) 417 B
import { HardhatRuntimeEnvironment } from "hardhat/types"; export declare const sleep: (ms: number) => Promise<void>; interface VerifyEtherscan { address: string; contract?: string; constructorArguments?: any[]; libraries?: { [libraryName: string]: string; }; } export declare const verifyEtherscan: (hre: HardhatRuntimeEnvironment, contract: VerifyEtherscan) => Promise<void>; export {};