UNPKG

chaingate

Version:

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

8 lines (7 loc) 441 B
import { CurrencyFee } from '../../CurrencyFee'; import { CurrencyAmount } from '../../../CurrencyUtils'; import { CurrencyInfo } from '../../../CurrencyInfo'; export declare class UtxoFee<CI extends CurrencyInfo> extends CurrencyFee<CI> { readonly feePerKb: CurrencyAmount<CI>; constructor(feePerKb: CurrencyAmount<CI>, isApproximate: boolean, enoughFunds: boolean, confirmationTimeSecs?: number, feeAmount?: CurrencyAmount<CI>); }