Solana Tracker
Solana RPC/Methods

getSlotLeaders RPC Method

Description

Returns the slot leaders for a given slot range.

Parameters

  1. start_slot (string, required) - The start slot encoded as u64, 64-bit unsigned integer
  2. limit (string) - The limit encoded as u64, 64-bit unsigned integer

Returns

Returns the slot leaders for the specified slot range.

Code Examples

curl "https://rpc-mainnet.solanatracker.io/?api_key=YOUR_API_KEY_HERE" \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0","id":1, "method":"getSlotLeaders", "params":[140630426, 10]}'

On this page