get_available_trading_tokens
Retrieve available trading tokens and their details for a specific blockchain network to facilitate cross-chain trading operations on Paloma DEX.
Instructions
Get available tokens for trading on a specific chain.
Args:
chain_id: Chain ID (1, 10, 56, 100, 137, 8453, 42161)
Returns:
JSON string with available trading tokens and their information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chain_id": {
"title": "Chain Id",
"type": "string"
}
},
"required": [
"chain_id"
],
"type": "object"
}