get_lp_positions
Retrieve all liquidity pool positions for a Solana wallet address, including pool details, token balances, and LP token amounts.
Instructions
Get all liquidity pool positions for a wallet address. Returns pool details, token balances, and LP token amounts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wallet | Yes | Solana wallet address (base58 encoded) |
Input Schema (JSON Schema)
{
"properties": {
"wallet": {
"description": "Solana wallet address (base58 encoded)",
"type": "string"
}
},
"required": [
"wallet"
],
"type": "object"
}