UNPKG

chaingate

Version:

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

7 lines (6 loc) 344 B
import { CurrencyFee } from '../../CurrencyFee'; import { CurrencyAmount } from '../../CurrencyAmount'; export declare class UtxoFee extends CurrencyFee { readonly feePerKb: CurrencyAmount; constructor(feePerKb: CurrencyAmount, isApproximate: boolean, enoughFunds: boolean, confirmationTimeSecs?: number, feeAmount?: CurrencyAmount); }