Parameters
Unique identifier for a blockchain network.
Request identifier used to match responses.
JSON-RPC version.
JSON-RPC method name.
Returns
The minimum ledger slot number. Example:
1234.curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=solana-devnet \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "minimumLedgerSlot",
"params": []
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": 1234
}
Returns the lowest slot that the node has information about in its ledger.
1234.curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=solana-devnet \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "minimumLedgerSlot",
"params": []
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": 1234
}
Was this page helpful?