get_latest_block
Retrieve the most recent block data from EVM-compatible blockchain networks to monitor chain activity and verify transactions. Specify the network or use the default Ethereum mainnet.
Instructions
Get the latest block from the EVM
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | No | Network name or chain ID. Defaults to Ethereum mainnet. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"network": {
"description": "Network name or chain ID. Defaults to Ethereum mainnet.",
"type": "string"
}
},
"type": "object"
}