Transaction Info
Skill ID: tronscan-transaction-info
ClawHub: clawhub.ai/sshnii/tronscan-transaction-info
Query any TRON transaction by hash: success/failure result, confirmation status, sender and receiver, energy and bandwidth consumed, token transfer details (TRC20/TRC721/TRC1155/TRX/TRC10), and internal contract calls.
Use Cases
Query Transaction Result and Failure Reason
When you have a transaction hash, always call getTransactionDetail first:
contract_retfield:SUCCESSor an error code (e.g.REVERT,OUT_OF_ENERGY)confirmed: whether the transaction has been confirmed on-chainfee: actual TRX fee deductednet_usage,energy_usage: resources consumed
Common failure codes:
| Error code | Cause |
|---|---|
OUT_OF_ENERGY | Sender had insufficient energy; TRX was burned to cover the shortfall or the transaction was rejected |
REVERT | Contract logic rejected the call (e.g. slippage exceeded, condition not met) |
OUT_OF_TIME | Transaction expired before it was confirmed |
Example prompts:
"Why did transaction 0xabc... fail?"
"Has this transaction been confirmed on TRON?"
"How much energy did this transaction consume?"Get Token Transfer Details Within a Transaction
getTrc20Transfers— TRC20 and TRC721 transfers (filterable by transaction hash or address)getTrc1155Transfers— TRC1155 multi-token transfersgetTransferList— Native TRX and TRC10 asset transfers
A single transaction can contain multiple token transfers (e.g. a DEX swap). Use the transfer tools to get the complete breakdown.
Example prompts:
"Which tokens were transferred in this transaction?"
"Show me all USDT transfers for address TXxx..."
"How much TRX was sent in this transaction?"Trace Internal Contract Calls
getInternalTransactions— Shows TRX transfers and token flows triggered internally by smart contracts
Example prompts:
"Show me the internal calls triggered by this transaction."
"Which contracts were called internally in this transaction?"Query Recent Transactions for an Address
getTransactionList— Paginated transaction list with the following filter options:- Filter by
address(sender or receiver) - Filter by
contract_type(TRX transfer, TRC20 trigger, etc.) - Sort by
timestampdescending to get the most recent transactions first
- Filter by
Example prompts:
"Show me the last 20 transactions for address TXxx..."
"List all outgoing transactions from this address this week."Installation
Confirm TronScan MCP is connected
See the Quick Start guide.
Install from ClawHub
Copy the current page link and send it to your AI Agent:
Please install this skill: https://clawhub.ai/sshnii/tronscan-transaction-infoLast updated on: