sui_get_checkpoint
Fetch a Sui checkpoint by sequence number, digest, or the latest to obtain its header, summary, and digest with automatic routing between live and archive nodes.
Instructions
Fetch a checkpoint by sequence number, digest, or 'latest'. Returns the checkpoint header, summary (timestamp, networkTotalTransactions), and digest. Defaults to 'auto' routing — live first, archive fallback. For latest=true the live node is always authoritative; auto still works (archive returns its latest as a fallback if live is unreachable).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sequence_number | No | Checkpoint sequence number as a string. Mutually exclusive with `digest` and `latest`. | |
| digest | No | Base58 checkpoint digest. Mutually exclusive with the others. | |
| latest | No | Set true to fetch the latest checkpoint. | |
| source | No | Routing policy. 'auto' (default) tries live then archive. 'live' / 'archive' force a single endpoint. | |
| network | No | Sui network. Defaults to the server's configured default (usually mainnet). |