get_leader_schedule
Retrieve the leader schedule for a specific epoch on the Solana blockchain, providing insights into validator rotations and block production timing.
Instructions
Returns the leader schedule for an epoch.
Args: epoch (Optional[int]): Epoch to get schedule for
Returns: str: Leader schedule information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
epoch | No |
Input Schema (JSON Schema)
{
"properties": {
"epoch": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Epoch"
}
},
"title": "get_leader_scheduleArguments",
"type": "object"
}