getEpochSchedule
Returns the cluster's epoch schedule parameters.
Request
{ "jsonrpc": "2.0", "id": 1, "method": "getEpochSchedule"}Parameters
This method takes no parameters.
Response
{ "jsonrpc": "2.0", "result": { "firstNormalEpoch": 8, "firstNormalSlot": 8160, "leaderScheduleSlotOffset": 8192, "slotsPerEpoch": 8192, "warmup": true }, "id": 1}| Field | Type | Description |
|---|---|---|
| firstNormalEpoch | u64 | The first normal-length epoch after the warmup period. |
| firstNormalSlot | u64 | The first slot in the first normal-length epoch. |
| leaderScheduleSlotOffset | u64 | Number of slots before beginning of an epoch to calculate the leader schedule for that epoch. |
| slotsPerEpoch | u64 | The maximum number of slots in each epoch. |
| warmup | bool | Whether epochs start short and grow toward the full slot count. |