aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface TransactionsWithCursor

    A collection of transactions with a cursor for pagination.

    interface TransactionsWithCursor {
        nextCursor: string | null;
        transactions: SuiTransactionBlockResponse[];
    }
    Index
    nextCursor: string | null

    The next cursor for pagination. If null, no more transactions are available.

    transactions: SuiTransactionBlockResponse[]

    An array of Sui transactions.