getMaxRetransmitSlot
Get the highest slot that the node has processed and retransmitted. This method uses 160 credits from your daily balance.
Parameters
None
Returns
result - The slot number as a 64-bit unsigned integer.
Request
- curl
 
curl https://solana-mainnet.infura.io/v3/<YOUR-API-KEY> \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1, "method":"getMaxRetransmitSlot"}'
Response
- JSON
 
{
  "jsonrpc": "2.0",
  "result": 372797611,
  "id": 1
}