Skip to main content

TypeAlias.FeesEstimation

type FeesEstimation = {
details: {
gasCost: bigint;
maxFeePerGas: bigint;
maxPriorityFeePerGas: bigint;
};
maxFees: bigint;
};

Represents the estimation of fees for a transaction.

See

KeybanAccount#estimateTransfer

Properties

PropertyTypeDescription
details{ gasCost: bigint; maxFeePerGas: bigint; maxPriorityFeePerGas: bigint; }-
details.gasCostbigintThe estimated gas cost for the transaction.
details.maxFeePerGasbigintThe maximum fee per unit of gas.
details.maxPriorityFeePerGasbigintThe maximum priority fee per unit of gas.
maxFeesbigintThe total maximum fees for the transaction.