OperationsChange
public enum OperationsChange : Sendable
Defines operation stream filter options for real-time operation updates.
-
Streams all operations from the network
Declaration
Swift
case allOperations(cursor: String?) -
Streams operations where the specified account is the source
Declaration
Swift
case operationsForAccount(account: String, cursor: String?) -
Streams operations affecting the specified claimable balance
Declaration
Swift
case operationsForClaimableBalance(claimableBalanceId: String, cursor: String?) -
Streams operations that occurred in the specified ledger
Declaration
Swift
case operationsForLedger(ledger: String, cursor: String?) -
Streams operations that are part of the specified transaction
Declaration
Swift
case operationsForTransaction(transaction: String, cursor: String?) -
Streams operations affecting the specified liquidity pool
Declaration
Swift
case operationsForLiquidityPool(liquidityPoolId: String, cursor: String?)
View on GitHub
Install in Dash