block_info
Retrieve detailed information about a specific Nano blockchain block by providing its hash, enabling precise data analysis and transaction verification.
Instructions
Retrieve detailed information about a specific Nano block.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes | Hash for the Nano block to get information about |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hash": {
"description": "Hash for the Nano block to get information about",
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}