Marmot-TS
    Preparing search index...

    Interface NostrPoolRead

    Generic interface for a readable nostr pool

    interface NostrPoolRead {
        request(
            relays: string[],
            filters: Filter | Filter[],
        ): Promise<NostrEvent[]>;
        subscription(
            relays: string[],
            filters: Filter | Filter[],
        ): Subscribable<NostrEvent[]>;
    }

    Hierarchy (View Summary)

    Index

    Client - Nostr

    Client - Nostr