post https://api.infstones.com/sui/mainnet/
Read API
Return the sequence number of the latest checkpoint that has been executed
Parameters
None
Result
Sequence number : <BigInt_for_uint64>
- get the sequence number for the latest checkpoint.
Example
Request
curl <your-endpoint> \
-X POST \
-H "Content-Type: application/json" \
-d '
{
"jsonrpc": "2.0",
"id": 1,
"method": "sui_getLatestCheckpointSequenceNumber",
"params": []
}
'
Response
{
"id": 1,
"jsonrpc": "2.0",
"result": 2145999
}