chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
17 lines • 537 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CurrencyFee = void 0;
class CurrencyFee {
feeAmount;
isApproximate;
confirmationTimeSecs;
enoughFunds;
constructor(isApproximate, enoughFunds, confirmationTimeSecs, amount) {
this.isApproximate = isApproximate;
this.confirmationTimeSecs = confirmationTimeSecs;
this.enoughFunds = enoughFunds;
this.feeAmount = amount;
}
}
exports.CurrencyFee = CurrencyFee;
//# sourceMappingURL=CurrencyFee.js.map