Install
openclaw skills install trongrid-token-listBrowse and rank TRC-20 and TRC-10 tokens on TRON with price, volume, market cap, holder count, and category filters. Use when a user wants to discover tokens...
openclaw skills install trongrid-token-listList and profile TRC-20 and TRC-10 tokens on TRON using TronGrid MCP tools.
Scope note: TronGrid has no "list all TRC-20" endpoint. TRC-20 queries require known contract addresses — either provided by the user or drawn from the built-in reference list below. TRC-10 assets can be listed in full via
listAllAssets.
Use these when the user asks for general token rankings without specifying addresses:
| Token | Symbol | Contract Address | Category |
|---|---|---|---|
| Tether | USDT | TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t | Stablecoin |
| USDD | USDD | TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz | Stablecoin |
| SUN | SUN | TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S | DeFi |
| JUST | JST | TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9 | DeFi |
| WINkLink | WIN | TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7 | Oracle |
| USDJ | USDJ | TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT | Stablecoin |
| BitTorrent | BTT | TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4 | Utility |
For each contract address, call in parallel:
getTrc20Info — Name, symbol, decimals, total supplygetTrc20TokenHolders (limit=5) — Top holders and total holder count estimategetContractInfo — Contract settings, energy limit, origin addressgetContractTransactions (limit=20) — Recent transaction activityFor TRC-10 tokens (when requested):
getPaginatedAssetIssueList (limit=20-50) — Paginated TRC-10 list with supply, issuer, precisiongetAssetIssueByName or getAssetIssueById — For specific TRC-10 lookupsSince TronGrid returns no market price data, rank by available on-chain signals:
getTrc20TokenHolders)getContractTransactions)getTrc20Info)By Category:
## TRON Token Overview
### TRC-20 Tokens
| Token | Symbol | Total Supply | Holders (est.) | Recent Txs | Category |
|-------|--------|-------------|----------------|-----------|----------|
### TRC-10 Tokens (Top by Supply)
| Token | ID | Total Supply | Precision | Issuer |
|-------|----|-------------|-----------|--------|
> Note: Price and market cap data are not available via TronGrid. For market data, consult an external source.
When evaluating tokens, flag these patterns:
| Error | Cause | Resolution |
|---|---|---|
getTrc20Info returns empty | Invalid or non-TRC-20 contract address | Skip token, note "Not a valid TRC-20 contract" |
getTrc20TokenHolders returns empty | Contract has no holders or very new token | Note "No holder data available" |
| User asks for token not in reference list | Unknown token | Ask user for the contract address |
| TRC-10 list very large | Thousands of TRC-10 assets exist | Use getPaginatedAssetIssueList with limit=20-50 |