chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
9 lines • 348 B
JavaScript
import { CurrencyFee } from '../../CurrencyFee';
export class UtxoFee extends CurrencyFee {
feePerKb;
constructor(feePerKb, isApproximate, enoughFunds, confirmationTimeSecs, feeAmount) {
super(isApproximate, enoughFunds, confirmationTimeSecs, feeAmount);
this.feePerKb = feePerKb;
}
}
//# sourceMappingURL=UtxoFee.js.map