Documentation
    Preparing search index...

    Interface ResolvePajaPointerOptions

    Options for resolving a Paja runtime pointer.

    interface ResolvePajaPointerOptions {
        blossomServers?: readonly string[];
        fetcher?: (url: string) => Promise<Response>;
        maxWaitMs?: number;
        pool?: PajaPointerRelayPool;
        relays?: readonly string[];
    }
    Index

    Properties

    blossomServers?: readonly string[]

    Extra Blossom server hints appended during artifact fetch.

    fetcher?: (url: string) => Promise<Response>

    Fetch override used for Blossom blob URLs.

    maxWaitMs?: number

    One overall deadline for relay connection, fanout, and EOSE in milliseconds.

    Relay pool override; defaults to a nostr-tools SimplePool.

    relays?: readonly string[]

    Extra relay candidates appended after embedded pointer hints.