chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
15 lines • 605 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EvmFee = void 0;
const CurrencyFee_1 = require("../../CurrencyFee");
class EvmFee extends CurrencyFee_1.CurrencyFee {
maxFeePerGas;
maxPriorityFeePerGas;
constructor(maxFeePerGas, maxPriorityFeePerGas, isApproximate, enoughFunds, confirmationTimeSecs, feeAmount) {
super(isApproximate, enoughFunds, confirmationTimeSecs, feeAmount);
this.maxFeePerGas = maxFeePerGas;
this.maxPriorityFeePerGas = maxPriorityFeePerGas;
}
}
exports.EvmFee = EvmFee;
//# sourceMappingURL=EvmFee.js.map