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