accountOperations

suspend fun Server.accountOperations(accountAddress: String, limit: Int? = null, order: Order? = Order.DESC, cursor: String? = null, includeFailed: Boolean? = null): List<OperationResponse>

Fetch account operations from Stellar network.

Return

a list of account operations

Parameters

accountAddress

Stellar address of the account

limit

optional how many operations to fetch, maximum is 200, default is 10

order

optional data order, ascending or descending, defaults to descending

cursor

optional cursor to specify a starting point

includeFailed

optional flag to include failed operations, defaults to false

Throws