Learn getMaxRetransmitSlot use cases, code examples, request parameters, response structure, and tips.
getMaxRetransmitSlot
RPC method returns the highest slot number that the queried RPC node has processed or is aware of from its retransmit stage. The retransmit stage is a crucial part of Solana’s block propagation protocol, known as Turbine, where validators request and receive missing shreds (parts of blocks) from their peers to reconstruct full blocks.
This value can give an indication of how up-to-date a node is with the tip of the network from the perspective of block data propagation and repair.
maxRetransmitSlot
compared to the cluster’s actual highest slot might indicate synchronization issues for that node.maxRetransmitSlot
, it might point to problems with its peer connections or its ability to participate in the retransmit protocol.result
field of the JSON-RPC response will be a u64
(unsigned 64-bit integer) representing the maximum slot number seen by the node from the retransmit stage.
getSlot
with finalized
commitment or getBlockHeight
). It is more of an indicator of the progress of data propagation to this specific node.getMaxRetransmitSlot
RPC method, which can be a useful tool for monitoring the synchronization status and health of a Solana node in relation to block data propagation.