Documentation
    Preparing search index...

    Interface OutboxResult

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

    interface OutboxResult {
        error?: string;
        events: RelayEventResult[];
        incomplete?: boolean;
    }
    Index

    Properties

    error?: string

    Error reason when the query could not complete.

    events: RelayEventResult[]

    Deduplicated, signature-validated event results.

    incomplete?: boolean

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