UNPKG

@xlink-network/xlink-sdk

Version:
17 lines (14 loc) 586 B
import { XLinkSDKErrorBase } from '../utils/errors.mjs'; import '../xlinkSdkUtils/types.mjs'; import '../utils/BigNumber.mjs'; import 'big.js'; import '../utils/typeHelpers.mjs'; declare class InsufficientBitcoinBalanceError extends XLinkSDKErrorBase { constructor(...args: ConstructorParameters<typeof Error>); } declare class UnsupportedBitcoinInput extends XLinkSDKErrorBase { txid: string; index: number; constructor(txid: string, index: number, ...args: ConstructorParameters<typeof Error>); } export { InsufficientBitcoinBalanceError, UnsupportedBitcoinInput };