UNPKG

hashscan-verify

Version:

Hardhat plugin for verifying smart contracts on HashScan (Hedera's contract verification service)

12 lines 463 B
export interface ParsedContract { contractPath: string; contractName: string; } export declare class ValidationService { private static readonly ADDRESS_REGEX; private static readonly CONTRACT_FORMAT_REGEX; validateInput(address: string, contract: string): string | null; parseContract(contract: string): ParsedContract; isValidChainId(chainId: number | undefined): chainId is number; } //# sourceMappingURL=validation-service.d.ts.map