Documentation
    Preparing search index...

    Interface OutboxPublishResult

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

    interface OutboxPublishResult {
        error?: string;
        event?: NostrEvent;
        eventId?: string;
        ok: boolean;
        relays?: Record<string, boolean>;
    }
    Index

    Properties

    error?: string

    Error reason when the publish failed.

    event?: NostrEvent

    The signed event returned by the shell.

    eventId?: string

    The published event id.

    ok: boolean

    Whether the publish succeeded on at least the required relays.

    relays?: Record<string, boolean>

    Map of relay URL -> per-relay publish success.