sui_stream_checkpoints
Subscribe to new checkpoints on the Sui blockchain and receive batches of checkpoint summaries with cursors. Resume streaming by passing the cursor from a prior call.
Instructions
Subscribe to new checkpoints and return a window of up to 10 frames (or until 30s elapse, whichever comes first). Each frame carries the cursor + checkpoint summary. Call repeatedly to tail the chain — pass the last cursor back as 'after_cursor' for resumable reads.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_frames | No | Max frames to collect this call. Cap is SUI_MCP_STREAM_MAX_FRAMES (current: 10). | |
| max_seconds | No | Max wall-clock seconds. Cap is SUI_MCP_STREAM_MAX_SECONDS (current: 30). | |
| after_cursor | No | Resume cursor returned by a prior call. Omit to subscribe from the live tip. | |
| read_mask_paths | No | Checkpoint fields to populate. Defaults to ['sequence_number','digest','summary']. | |
| network | No | Sui network. Defaults to the server's configured default. |