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

    Interface EventsWithCursor<EventType>

    A generic shape for events with a Sui-based cursor structure.

    interface EventsWithCursor<EventType> {
        events: EventType[];
        nextCursor: EventId | null;
    }

    Type Parameters

    • EventType
    Index
    events: EventType[]

    An array of events of type EventType.

    nextCursor: EventId | null

    The next cursor position. If null, no more events are available.