Solana Tracker
Solana RPC/Methods

getMaxShredInsertSlot RPC Method

Description

Get the max slot seen from after shred insert.

Parameters

This method takes no parameters.

Returns

  • result - The slot number encoded as a u64 (64-bit unsigned integer).

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":"getMaxShredInsertSlot"}'

Full Example Response

{
  "jsonrpc": "2.0",
  "result": 123456789,
  "id": 1
}

On this page