solana_gettokenpairs
Retrieve supported token pairs for a specific token address on Solana networks, enabling efficient token interaction and analysis through the Moralis MCP Server.
Instructions
Get the supported pairs for a specific token address.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | The address to query | |
| cursor | No | The cursor to the next page | |
| limit | No | The limit per page | |
| network | Yes | The network to query |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address to query",
"type": "string"
},
"cursor": {
"description": "The cursor to the next page",
"type": "string"
},
"limit": {
"default": 50,
"description": "The limit per page",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"network": {
"description": "The network to query",
"enum": [
"mainnet",
"devnet"
],
"type": "string"
}
},
"required": [
"network",
"address"
],
"type": "object"
}