TriportRPC

getMaxRetransmitSlot

Last updated:

`getMaxRetransmitSlot` returns the **highest slot seen from the retransmit stage** — the point in the validator's turbine pipeline where shreds received from peers are forwarded on. It is a single slot number reflecting how far the node has progressed in propagating blocks across the cluster.

This is a low-level **diagnostic** metric, primarily useful for observing a node's ingest/forwarding progress rather than for application data. To track the slot a node will actually serve confirmed reads from, prefer [`getSlot`](./getSlot.md); to see how far shred insertion has advanced, compare with [`getMaxShredInsertSlot`](./getMaxShredInsertSlot.md).

> **Gotchas** > - The value is node-local and reflects pipeline state, not network finality — > it is not a confirmed or finalized slot and should not be used as a read > floor for fetching block data. > - It advances continuously as the node receives shreds; do not cache it.

Parameters

This method takes no parameters.

Returns

getMaxRetransmitSlot return value
FieldType
resultobject

Examples

curl https://<your-endpoint>/ \
  -X POST -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"getMaxRetransmitSlot","params":[]}'
const res = await fetch("https://<your-endpoint>/", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "id": 1,
  "method": "getMaxRetransmitSlot",
  "params": [],
  "jsonrpc": "2.0"
}),
});
const data = await res.json();
import requests
resp = requests.post("https://<your-endpoint>/", json={"id":1,"method":"getMaxRetransmitSlot","params":[],"jsonrpc":"2.0"})
print(resp.json())

Usage

  1. Transport: HTTP (JSON-RPC).
  2. Networks: mainnet, devnet, testnet.
  3. Credit cost: 1 per call.

FAQ

What does getMaxRetransmitSlot do?
Returns the highest slot the node has observed coming out of its retransmit stage.
How many credits does getMaxRetransmitSlot cost?
getMaxRetransmitSlot costs 1 credit(s) per call on Triport by default.
Is getMaxRetransmitSlot available over WebSocket?
getMaxRetransmitSlot is an HTTP JSON-RPC method.