tapp_get_positions
Retrieve a paginated list of liquidity positions for a specific user address on Tapp Exchange, enabling efficient tracking of decentralized exchange activities on the Aptos blockchain.
Instructions
Get a paginated list of liquidity positions for a user address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | The page number for pagination (defaults to 1) | |
size | No | The number of results per page (defaults to 10) | |
userAddr | No | The user's wallet address to fetch positions for (defaults to current agent address) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "The page number for pagination (defaults to 1)",
"type": "number"
},
"size": {
"description": "The number of results per page (defaults to 10)",
"type": "number"
},
"userAddr": {
"description": "The user's wallet address to fetch positions for (defaults to current agent address)",
"type": "string"
}
},
"type": "object"
}