Type Alias: EventPage
type EventPage = object;
Defined in: packages/overcast-core/src/indexer/client.ts:71
One page of a backwards getEvents search.
Properties
cursor
cursor: Checkpoint | null;
Defined in: packages/overcast-core/src/indexer/client.ts:81
The oldest checkpoint scanned in this page — the cursor to continue
paging down from on the next call. Independent of events: a page can scan
many transactions yet map none to a tracked event (e.g. deposits), and the
cursor still advances past them. null only when nothing was scanned, i.e.
the search reached start / genesis and there is no more to page.
events
events: IndexedEvents[];
Defined in: packages/overcast-core/src/indexer/client.ts:73
Mapped, tracked events in this page, ordered newest-first, oldest-last.