Type Alias QueryTransactionBlocksParams

QueryTransactionBlocksParams: {
    cursor?: string | null;
    limit?: number | null;
    order?: "ascending" | "descending" | null;
} & SuiTransactionBlockResponseQuery

Return list of transactions for a specified query criteria.

Type declaration

  • Optionalcursor?: string | null

    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.

  • Optionallimit?: number | null

    Maximum item returned per page, default to QUERY_MAX_RESULT_LIMIT if not specified.

  • Optionalorder?: "ascending" | "descending" | null

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