AnchorTransactionKind

public enum AnchorTransactionKind : String, Sendable

The type of transaction.

Indicates whether the transaction is a deposit, withdrawal, or an exchange variant.

See SEP-6 Transaction

  • Standard deposit operation without asset conversion.

    Declaration

    Swift

    case deposit = "deposit"
  • Deposit operation with cross-asset conversion using SEP-38.

    Declaration

    Swift

    case depositExchange = "deposit-exchange"
  • Standard withdrawal operation without asset conversion.

    Declaration

    Swift

    case withdrawal = "withdrawal"
  • Withdrawal operation with cross-asset conversion using SEP-38.

    Declaration

    Swift

    case withdrawalExchange = "withdrawal-exchange"