nostr-websocket-utils / PaginationHandler
Pagination handler interface
getNextPage(
subscriptionId
,pageSize
):Promise
<NostrWSMessage
[]>
Gets next page of events
string
Subscription ID
number
Number of events per page
Promise
<NostrWSMessage
[]>
Next page of events
hasMoreEvents(
subscriptionId
):boolean
Checks if more events are available
string
Subscription ID
boolean
True if more events exist
updateState(
subscriptionId
,events
):void
Updates pagination state with new events
string
Subscription ID
New events
void