$FeeDetails: $.Shape<{
    inclusionFee: undefined | {
        adjustedWeightFee: bigint;
        baseFee: bigint;
        lenFee: bigint;
    };
    tip: bigint;
}, {
    inclusionFee: undefined | {
        adjustedWeightFee: bigint;
        baseFee: bigint;
        lenFee: bigint;
    };
    tip: bigint;
}> = ...

The FeeDetails is composed of:

  • (Optional) inclusion_fee: Only the Pays::Yes transaction can have the inclusion fee.
  • tip: If included in the transaction, the tip will be added on top. Only signed transactions can have a tip.