Documentation
    Preparing search index...

    Interface OutboxEventResult

    Outcome of a single-event outbox lookup.

    interface OutboxEventResult {
        error?: string;
        incomplete?: boolean;
        result?: RelayEventResult;
    }
    Index

    Properties

    error?: string

    Error reason when the lookup could not complete or did not find the event.

    incomplete?: boolean

    True when some relay lists or connections failed and the lookup was partial.

    result?: RelayEventResult

    The signature-validated event result matching the requested event id, when found.