Documentation
    Preparing search index...

    Interface ListTransactionsResponse<Include>

    interface ListTransactionsResponse<out Include extends TransactionInclude = {}> {
        endCursor: string | null;
        hasNextPage: boolean;
        startCursor: string | null;
        transactions: SuiClientTypes.TransactionResult<Include>[];
    }

    Type Parameters

    Index

    Properties

    endCursor: string | null

    Cursor at the last returned item. Continue the query by passing it as after (ascending) or before (descending).

    hasNextPage: boolean
    startCursor: string | null

    Cursor at the first returned item. After a descending read of the most recent items, pass as after to poll for items added since.