Install
openclaw skills install trongrid-data-insightsProvide TRON network analytics including transaction volume, type distribution, hot contracts, trending tokens, active accounts, staking metrics, and resource economics. Use when a user asks about TRON network health, daily stats, trending activity, top contracts, most active accounts, ecosystem overview, or on-chain analytics.
openclaw skills install trongrid-data-insightsComprehensive TRON network analytics — activity metrics, transaction patterns, trending tokens/contracts, top accounts, governance status, and resource economics.
Fetch current state (run in parallel):
getBlock (no params) — Current block height and timestampgetChainParameters — Network configurationgetNodeInfo — Node count and sync statusgetBurnTrx — Total TRX burned to dategetBlock (no params), then loop getBlock 20 times with decrementing id_or_numgetTransactionInfoByBlockNum for transaction detailsCalculate:
Categorize all transactions from the sample blocks:
getContractInfo for namesgetTrc20Info if the contract is a tokengetEventsByLatestBlock, identify Transfer eventsgetTrc20Info for metadataFrom recent transactions:
getAccount to classify (exchange/bot/whale)getPaginatedNowWitnessList — All Super Representatives, votes, block production statsgetEnergyPrices and getBandwidthPrices — Resource price trends## TRON Network Insights
### Overview
- Block Height: #[number]
- Est. Daily Transactions: ~[count]
- Avg Block Time: [X.X]s
- Success Rate: [X.X%]
- Total Burned (All Time): [amount] TRX
### Transaction Distribution
| Type | % | Est. Daily |
|------|---|-----------|
| Contract Calls | XX% | ~XXX,XXX |
| TRX Transfers | XX% | ~XXX,XXX |
| Staking | XX% | ~XX,XXX |
### Hot Contracts
| Contract | Name | Calls | Category |
|----------|------|-------|----------|
| TXxx... | USDT | X,XXX | Stablecoin |
### Trending Tokens
| Token | Symbol | Transfers | Volume |
|-------|--------|----------|--------|
### Most Active Accounts
| Address | Tx Count | Type |
|---------|----------|------|
### Governance
- Top SR: [name] ([votes] votes)
- Total Votes: [amount]
### Resource Economics
- Energy Price: [X] sun | Trend: [Up/Down/Stable]
- Bandwidth Price: [X] sun | Trend: [Up/Down/Stable]
### Key Takeaways
- [Activity trend]
- [Dominant activity driver]
- [Notable patterns]
| Error | Cause | Resolution |
|---|---|---|
| Block fetch timeout | Network congestion or large blocks | Reduce block count (try 10 instead of 20) |
| Incomplete tx info | Some getTransactionInfoByBlockNum calls fail | Use available data, note sample size in report |
| No events in latest block | Low activity period | Expand to more blocks or note "Low activity detected" |
| Energy/bandwidth price API returns long string | Historical data is comma-separated | Parse only the last entry for current price |