get_block
Retrieve identity and transaction details for a confirmed block on the Solana blockchain using a specified slot number.
Instructions
Returns identity and transaction information about a confirmed block in the ledger.
Args: slot (int): Slot number as u64 integer
Returns: str: Block information in the format "Block: {block}"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
slot | Yes |
Input Schema (JSON Schema)
{
"properties": {
"slot": {
"title": "Slot",
"type": "integer"
}
},
"required": [
"slot"
],
"title": "get_blockArguments",
"type": "object"
}