Skip to main content

GetCheckpointsParams

@iota/iota-sdk


@iota/iota-sdk / client / GetCheckpointsParams

Interface: GetCheckpointsParams

Defined in: sdk/typescript/src/client/types/params.ts:76

Return paginated list of checkpoints

Properties

cursor?

optional cursor?: string | null

Defined in: sdk/typescript/src/client/types/params.ts:81

An optional paging cursor. If provided, the query will start from the next item after the specified cursor. Default to start from the first item if not specified.


descendingOrder

descendingOrder: boolean

Defined in: sdk/typescript/src/client/types/params.ts:85

query result ordering, default to false (ascending order), oldest record first.


limit?

optional limit?: number | null

Defined in: sdk/typescript/src/client/types/params.ts:83

Maximum item returned per page, default to [QUERY_MAX_RESULT_LIMIT_CHECKPOINTS] if not specified.


signal?

optional signal?: AbortSignal

Defined in: sdk/typescript/src/client/types/params.ts:86