UNPKG

node-red-contrib-nostr

Version:

Node-RED nodes for seamless Nostr protocol integration. Features robust WebSocket handling, event filtering, and NPUB-based routing. Built with TypeScript for type safety and extensive testing. Perfect for Nostr automation flows.

9 lines (8 loc) 297 B
export declare class InternetIdentifier { static verify(identifier: string, pubkey: string): Promise<boolean>; static parseIdentifier(identifier: string): { name: string; domain: string; }; static getRelays(identifier: string, pubkey: string): Promise<string[]>; }