getHistory

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

Get account operations for the specified Stellar address.

Return

a list of formatted 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