UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

9 lines (8 loc) 381 B
import { CurrencyAmount } from './CurrencyAmount'; export declare abstract class CurrencyFee { readonly feeAmount: CurrencyAmount; readonly isApproximate: boolean; readonly confirmationTimeSecs: number; readonly enoughFunds: boolean; protected constructor(isApproximate: boolean, enoughFunds: boolean, confirmationTimeSecs?: number, amount?: CurrencyAmount); }