UNPKG

@enjinstarter/hardhat-oklink-verify

Version:
30 lines 729 B
export declare type ChainConfig = Record<string, OklinkChainConfig>; export interface CustomChain { network: string; chainId: number; urls: OklinkURLs; } export interface OklinkUserConfig { apiKey?: string | Record<string, string>; customChains?: CustomChain[]; licenseType?: string; } export interface OklinkConfig { apiKey?: string | Record<string, string>; customChains: CustomChain[]; licenseType?: string; } export interface OklinkURLs { apiURL: string; browserURL: string; } interface OklinkChainConfig { chainId: number; urls: OklinkURLs; } export interface OklinkNetworkEntry { network: string; urls: OklinkURLs; } export {}; //# sourceMappingURL=types.d.ts.map