get_block_commitment
Retrieve commitment details for a specific block slot on the Solana blockchain using the Model Context Protocol Server, facilitating accurate block-level data access and verification.
Instructions
Fetch the commitment for particular block.
Args: slot (int): Block slot number to query
Returns: str: Block commitment information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
slot | Yes |
Input Schema (JSON Schema)
{
"properties": {
"slot": {
"title": "Slot",
"type": "integer"
}
},
"required": [
"slot"
],
"title": "get_block_commitmentArguments",
"type": "object"
}