getUserPositions
Retrieve all Uniswap V3 positions for a user by specifying the chain ID and user address, enabling comprehensive cryptocurrency research and Ethereum-based automation.
Instructions
Gets all Uniswap V3 positions for a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
user | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"user": {
"type": "string"
}
},
"required": [
"chainId"
],
"type": "object"
}