get_token_orders
Retrieve orders paid for a specific token by providing the chain ID and token address, enabling detailed transaction insights on DEX platforms.
Instructions
Check orders paid for a specific token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | Chain ID (e.g., "solana") | |
tokenAddress | Yes | Token address |
Input Schema (JSON Schema)
{
"properties": {
"chainId": {
"description": "Chain ID (e.g., \"solana\")",
"type": "string"
},
"tokenAddress": {
"description": "Token address",
"type": "string"
}
},
"required": [
"chainId",
"tokenAddress"
],
"type": "object"
}