get-block
Retrieve detailed block information from a blockchain by specifying the chain ID and block number, enabling secure and precise data extraction for blockchain interactions.
Instructions
Get the block information of a chain
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockNumber | No | ||
chainId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blockNumber": {
"type": "number"
},
"chainId": {
"type": "number"
}
},
"type": "object"
}