Get TXOs

Get TXOs for a given account with offset and limit parameters

Optional ParamPurposeRequirements

account_id

The account on which to perform this action.

Account must exist in the wallet.

address

The address b58 on which to perform this action.

Address must exist in the wallet.

status

Txo status filer. Available status: "unverified", "unspent", "spent", "orphaned", "pending", "secreted",

min_received_block_index

The minimum block index to query for received txos, inclusive

max_received_block_index

The maximum block index to query for received txos, inclusive

offset

The pagination offset. Results start at the offset index.

limit

Limit for the number of results.

Example

{
  "method": "get_txos",
  "params": {
    "account_id": "60ef9401f98fc278cd8a1ef51f466111244c9d4b97e8f8886a86bd840238dcaa",
    "min_received_block_index": "1769500",
    "max_received_block_index": "1769600",
    "offset": 2,
    "limit": 8
  },
  "jsonrpc": "2.0",
  "id": 1
}

Last updated