Applesauce
    Preparing search index...

    A request to load a set of events from a set of relays

    type SyncLoadRequest = {
        concurrency?: number;
        filter: Filter;
        limit?: number;
        relays: string[];
        timeout?: number | false;
    }
    Index

    Properties

    concurrency?: number

    The max number of relays to load from concurrently (default 10)

    filter: Filter

    The filter describing the set of events to load (NIP-77 reconciles a single filter)

    limit?: number

    The page size for paginated REQ loading on relays without NIP-77 (default 500)

    relays: string[]

    The relays to load from

    timeout?: number | false

    The max time in ms a single relay may take to make progress before it is errored: the time to the first event, and the time between events. This bounds offline or unresponsive relays so the loader always completes. A negentropy sync that times out falls back to a paginated request. Pass false to disable.

    30000