chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
13 lines (12 loc) • 447 B
TypeScript
import { CurrencyAmount } from '../CurrencyUtils';
import { CurrencyInfo } from '../CurrencyInfo';
export declare class NotEnoughFundsError<CI extends CurrencyInfo> extends Error {
readonly missingFunds?: CurrencyAmount<CI>;
constructor(missingFunds?: CurrencyAmount<CI>);
}
export declare class CannotDerive extends Error {
constructor();
}
export declare class CannotParseAmount extends Error {
constructor(amountStr: string);
}