solana_getpairstats
Retrieve detailed statistics for a specific token pair address on the Solana network using the Moralis MCP Server. Query data for mainnet or devnet to analyze pair performance effectively.
Instructions
Gets the stats for a specific pair address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | Yes | The network to query | |
pairAddress | Yes | The address of the pair to query |
Input Schema (JSON Schema)
{
"properties": {
"network": {
"description": "The network to query",
"enum": [
"mainnet",
"devnet"
],
"type": "string"
},
"pairAddress": {
"description": "The address of the pair to query",
"type": "string"
}
},
"required": [
"network",
"pairAddress"
],
"type": "object"
}