InnerTransactionResponse

public struct InnerTransactionResponse : Decodable, Sendable

Represents the inner (original) transaction that has been wrapped by a fee bump transaction.

When a transaction is wrapped in a fee bump, this response contains details about the original transaction including its hash, signatures, and max fee. The fee bump transaction replaces the fee but preserves the operations and original signatures.

This response is included in TransactionResponse for fee bump transactions.

See also:

  • Stellar developer docs
  • FeeBumpTransactionResponse for the wrapper transaction details
  • TransactionResponse for complete transaction information
  • Hex-encoded SHA-256 hash of the inner (original) transaction.

    Declaration

    Swift

    public var transactionHash: String
  • Array of base64-encoded signatures from the original transaction.

    Declaration

    Swift

    public var signatures: [String]
  • Maximum fee (in stroops) specified in the original transaction before fee bump.

    Declaration

    Swift

    public var maxFee: String
  • Declaration

    Swift

    public init(from decoder: Decoder) throws