get_block_info
Retrieve detailed information about specific Ethereum blocks including transaction data, timestamps, and block metadata for blockchain analysis and verification.
Instructions
Get detailed information about a specific block
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| block | Yes | The block number to get info for |
Input Schema (JSON Schema)
{
"properties": {
"block": {
"description": "The block number to get info for",
"type": "string"
}
},
"required": [
"block"
],
"type": "object"
}