get-latest-blocks
Retrieve details on recent blockchain blocks on Osmosis, specifying the number to fetch. Supports queries with a limit parameter, aiding in efficient data access and monitoring.
Instructions
Returns information about the most recent blocks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of blocks to return (default: 10, max: 100) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of blocks to return (default: 10, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [],
"type": "object"
}