Skip to Content
SKILLSSearch

Search

Skill ID: tronscan-search
ClawHub: clawhub.ai/sshnii/tronscan-search 

Global TRON blockchain search: resolve token or contract names (e.g. “USDT”, “BTT”) to on-chain addresses, look up accounts by address, and find transactions or blocks by hash or number. Typically used as a prerequisite step before other skills.


Use Cases

Resolve a Token or Contract Name to an Address

This is the most common use case. Whenever a user provides only a name or symbol, always call Search first.

search(term="USDT", type="token") → token_id: "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t" search(term="JustLend", type="contract") → Contract address of the JustLend protocol

The token_id field in the search result is the TRC20 contract address. It can be passed directly into tools like getTrc20TokenDetail, getTrc20TokenHolders, and getContractDetail.

Example prompts:

"What is the contract address for USDT on TRON?" "Find the BTT token contract." "What is the contract address of SunSwap?"

Search Across Multiple Entity Types

Omit the type parameter to search all entity types at once:

search(term="USDT") → Returns matching tokens, contracts, and accounts

Use the type value to narrow results:

type valueScope
tokenTRC20, TRC721, TRC1155, TRC10 tokens
contractSmart contracts by name
addressWallet addresses
transactionTransactions by hash
blockBlocks by number or hash

Example prompts:

"Search for everything related to USDT on TRON." "Find all contracts named 'Swap'."

Find a Transaction or Block by Hash or Number

search(term="<tx-hash>", type="transaction") search(term="65000000", type="block")

To get full transaction details, pass the hash to Transaction Info. To get block details, pass the block number to Block Info.

Example prompts:

"Look up transaction abc123..." "Query block number 65000000."

Using Search as a Prerequisite Step

Search is typically called before other skills to resolve a name into an address:

User: "Who are the top holders of USDT?" Step 1 → Search skill search(term="USDT", type="token") → token_id: "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t" Step 2 → Token Scanner skill getTrc20TokenHolders(contractAddress="TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t") → Top holder list

Installation

Confirm TronScan MCP is connected

See the Quick Start guide.

Install from ClawHub

Open on ClawHub 

Copy the current page link and send it to your AI Agent:

Please install this skill: https://clawhub.ai/sshnii/tronscan-search
Last updated on: