Install
openclaw skills install @sshnii/tronscan-block-infoQuery TRON latest block, block reward, block time, producer, burned TRX, resource use, transaction count. Use when user asks "latest block", "block height", "block producer", "block reward", "burned TRX", or network load. Do NOT use for real-time TPS/network dashboard (use tronscan-realtime-network); tx by hash (use tronscan-transaction-info).
openclaw skills install @sshnii/tronscan-block-info| Tool | Function | Use Case |
|---|---|---|
| getLatestBlock | Latest block | Block number, hash, size, timestamp, witness, tx count |
| getBlocks | Block list | Pagination, sort, filter by producer/time |
| getBlockStatistic | Block statistics | 24h payment total, block count, burn total |
getLatestBlock for current block number, hash, size, timestamp, witness, tx count.getLatestBlock or getBlocks for timestamp and witness (producer).getBlockStatistic for 24h burn total; per-block burn may be in block payload.getBlockStatistic for aggregates.getLatestBlock for tx count in latest block; use getBlocks for multiple blocks.getLatestBlock, getBlocks, and getBlockStatistic for real-time load view.getLatestBlock — Calls /api/block/latest; returns latest solidified block (number, hash, size, timestamp, witness, tx count)/api/block/latest does not return witnessName, fee, energyUsage, blockReward, voteReward, confirmations, netUsage. These may appear as 0 or null in the response—ignore them. For witness name, block reward, fees, or resource usage, use getBlocks instead.getBlocks — Get block list with pagination, sort, filter by producer/time range-number), optional producer address, start/end time.getBlockStatistic — Get block statistics (24h payment total, block count, burn total)getChainParameters (Witness category) if reward rules are needed.getLatestBlock and/or getBlockStatistic for load and burn.getLatestBlock may return 0/null for witnessName, blockReward, voteReward, fee, energyUsage, netUsage, confirmations (underlying /api/block/latest does not provide them); use getBlocks when these fields are needed.