TransactionSubmitted

data class TransactionSubmitted(val hash: String, val success: Boolean) : SmartAccountEvent

Emitted when a transaction is submitted to the network.

This event is fired after sending the signed transaction to Soroban RPC or the relayer service. The success flag indicates whether the transaction was successfully sent to the network node, not whether it was included in a ledger.

Constructors

Link copied to clipboard
constructor(hash: String, success: Boolean)

Properties

Link copied to clipboard

The transaction hash

Link copied to clipboard

True if submitted successfully, false if submission failed