Query TRON latest block, block reward, block time, producer, burned TRX, resource use, transaction count. Use when user asks "最新区块", "区块高度", "出块人", "区块奖励", "...
| 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 — Get latest confirmed block (number, hash, size, timestamp, witness, tx count)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)For MCP connection and rate limit issues, see README.
getChainParameters (Witness category) if reward rules are needed.getLatestBlock and/or getBlockStatistic for load and burn.ZIP package — ready to use