| get_supported_networksA | Query all supported networks on GeckoTerminal and return a formatted table.
Args:
page: Page number for pagination (default: 1)
Returns:
Formatted table as a string with columns: id, name
|
| get_supported_dexes_by_networkA | Query all supported DEXes for a specific network on GeckoTerminal and return a formatted table.
Args:
network: The network identifier (default: "eth" for Ethereum)
page: Page number for pagination (default: 1)
Returns:
Formatted table as a string with columns: id, name
|
| get_new_poolsA | Query all the latest pools across all networks on GeckoTerminal and return a formatted table.
Args:
page: Page number for pagination (default: 1)
include: Comma-separated attributes to include (e.g., "base_token,quote_token,dex,network")
Returns:
Formatted table as a string with columns: dex, network, name, base_price, reserve_usd, volume_usd_24h, address
|
| get_new_pools_by_networkA | Query all the latest pools for a specific network on GeckoTerminal and return a formatted table.
Args:
network: The network identifier (default: "eth" for Ethereum)
page: Page number for pagination (default: 1)
include: Comma-separated attributes to include (e.g., "base_token,quote_token,dex,network")
Returns:
Formatted table as a string with columns: dex, name, base_price_in_quote, reserve_usd, volume_usd_24h, address
|
| get_pool_detailsA | Query details for a specific pool on a network.
Args:
network: The network identifier (e.g., "eth")
pool_address: The pool contract address
include: Comma-separated attributes to include
Returns:
JSON string of the pool data
|
| get_trending_poolsA | Query all trending pools across all networks on GeckoTerminal and return a formatted table.
Args:
page: Page number for pagination (default: 1)
duration: Duration to sort trending list by (options: "5m", "1h", "6h", "24h"; default: "24h")
include: Comma-separated attributes to include (e.g., "base_token,quote_token,dex,network")
Returns:
Formatted table as a string with columns: dex, network, name, base_price_in_quote, reserve_usd, volume_usd_24h, address
|
| get_trending_pools_by_networkB | Query trending pools for a specific network on GeckoTerminal and return a formatted table.
Args:
network: The network identifier (default: "eth" for Ethereum)
page: Page number for pagination (default: 1)
duration: Duration to sort trending list by (options: "5m", "1h", "6h", "24h"; default: "24h")
include: Comma-separated attributes to include (e.g., "base_token,quote_token,dex"; default: "base_token,quote_token,dex")
Returns:
Formatted table as a string with columns: dex, name, base_price_in_quote, reserve_usd, volume_usd_24h, address
|
| get_top_pools_by_networkA | Query top pools for a specific network on GeckoTerminal and return a formatted table.
Args:
network: The network identifier (default: "eth" for Ethereum)
page: Page number for pagination (default: 1)
sort: Sort pools by field (options: "h24_tx_count_desc", "h24_volume_usd_desc"; default: "h24_tx_count_desc")
include: Comma-separated attributes to include (e.g., "base_token,quote_token,dex"; default: "base_token,quote_token,dex")
Returns:
Formatted table as a string with columns: dex, name, base_price_in_quote, reserve_usd, volume_usd_24h, address
|
| get_top_pools_by_dexA | Query top pools for a specific network and DEX on GeckoTerminal and return a formatted table.
Args:
network: The network identifier (default: "eth" for Ethereum)
dex: The DEX identifier (default: "sushiswap")
page: Page number for pagination (default: 1)
sort: Sort pools by field (options: "h24_tx_count_desc", "h24_volume_usd_desc"; default: "h24_tx_count_desc")
include: Comma-separated attributes to include (e.g., "base_token,quote_token,dex"; default: "base_token,quote_token,dex")
Returns:
Formatted table as a string with columns: dex, name, base_price_in_quote, reserve_usd, volume_usd_24h, address
|
| search_poolsA | Search for pools on a specific network on GeckoTerminal and return a formatted table.
Args:
query: Search query (default: "weth")
network: The network identifier (default: "eth" for Ethereum)
page: Page number for pagination (default: 1)
include: Comma-separated attributes to include (e.g., "base_token,quote_token,dex"; default: "base_token,quote_token,dex")
Returns:
Formatted table as a string with columns: dex, name, base_price_in_quote, reserve_usd, volume_usd_24h, address
|