getMaxShredInsertSlot

The getMaxShredInsertSlot method returns the maximum slot number for which the node has received shreds. Shreds are the fundamental data packets in Solana's block propagation system, representing fragments of blocks that are transmitted across the network for efficient parallelization.

Solana breaks blocks into smaller pieces called shreds (short for "shredded data") which are distributed across the network using a sophisticated propagation protocol called Turbine. This shredding allows for efficient parallel transmission and reconstruction of blocks. The max shred insert slot indicates the highest slot for which the node has received any shred data, which represents the cutting edge of the node's awareness of network activity.

This metric is valuable for validator operators monitoring their node's network connectivity and block reception performance. It helps diagnose issues with block propagation, network connectivity, or validator performance. The max shred insert slot is typically ahead of or equal to the max retransmit slot and processed slot, as receiving shreds is the first step in the block processing pipeline.


Parameters

parameter
type
description
config
object
Optional configuration object (currently no config options are available)
Return Object
field
type
description
result
number
The maximum slot number (u64) for which shreds have been inserted
Request Example
Request
Response Example
Response

Tip: This value represents the frontier of data reception and is typically the highest slot-related value you can query. It's ahead of processed/confirmed slots since shred reception happens before block processing. Primarily useful for validator operators monitoring network performance.


Share on
Share on FacebookShare on XShare on LinkedIn
Did you find this page useful?