Documentation
    Preparing search index...

    Interface OutboxResult

    Outcome of an outbox query, as returned by the OutboxRouter.

    interface OutboxResult {
        error?: string;
        events: NostrEvent[];
        incomplete?: boolean;
        relays: Record<string, string[]>;
    }
    Index

    Properties

    error?: string

    Error reason when the query could not complete.

    events: NostrEvent[]

    Deduplicated, signature-validated events.

    incomplete?: boolean

    True when some relay lists or connections failed and results are partial.

    relays: Record<string, string[]>

    Map of event id -> relay URLs where the shell observed the event.