UNPKG

chaingate

Version:

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

13 lines 402 B
export class CurrencyFee { feeAmount; isApproximate; confirmationTimeSecs; enoughFunds; constructor(isApproximate, enoughFunds, confirmationTimeSecs, amount) { this.isApproximate = isApproximate; this.confirmationTimeSecs = confirmationTimeSecs; this.enoughFunds = enoughFunds; this.feeAmount = amount; } } //# sourceMappingURL=CurrencyFee.js.map