Metoda RPC minimumLedgerSlot

Zwraca najniższy slot, o którym węzeł posiada informacje w swoim rejestrze.

Ta wartość może wzrastać z czasem, jeśli węzeł jest skonfigurowany do usuwania starszych danych rejestru

$ curl https://api.devnet.solana.com -s -X \
> POST -H "Content-Type: application/json" -d '
> {
> "jsonrpc": "2.0",
> "id": 1,
> "method": "minimumLedgerSlot"
> }
> '

params

None

result

Response
{
"jsonrpc": "2.0",
"result": 1234,
"id": 1
}
u64

Minimalny numer slotu w rejestrze

Is this page helpful?