UNPKG

@atomiqlabs/sdk

Version:

atomiq labs SDK for cross-chain swaps between smart chains and bitcoin

14 lines (13 loc) 442 B
/** * An error or inconsistency in the intermediary's returned data, this will blacklist the intermediary * * @category Errors */ export declare class IntermediaryError extends Error { /** * Whether the error is recoverable and intermediary (LP) shouldn't be blacklisted for it */ recoverable: boolean; originalStack?: string; constructor(msg: string, originalError?: any, recoverable?: boolean); }