FeeBumpTransactionResponse

public struct FeeBumpTransactionResponse : Decodable, Sendable

Represents the outer fee bump transaction that wraps an inner transaction with a higher fee.

Fee bump transactions allow one account to pay a higher fee for another account’s transaction to prioritize it for inclusion when the network is congested. The fee bump transaction replaces the original transaction’s fee but preserves all operations and signatures.

This response is included in TransactionResponse when the transaction is a fee bump.

See also:

  • Stellar developer docs
  • InnerTransactionResponse for the wrapped transaction details
  • TransactionResponse for complete transaction information
  • Hex-encoded SHA-256 hash of the fee bump transaction (the outer transaction hash).

    Declaration

    Swift

    public var transactionHash: String
  • Array of base64-encoded signatures for the fee bump transaction from the fee source account.

    Declaration

    Swift

    public var signatures: [String]
  • Declaration

    Swift

    public init(from decoder: Decoder) throws