UNPKG

nostr-websocket-utils

Version:

Robust WebSocket utilities for Nostr applications with automatic reconnection, supporting both ESM and CommonJS. Features channel-based messaging, heartbeat monitoring, message queueing, and comprehensive error handling with type-safe handlers.

39 lines 1.06 kB
/** * @file NIPs implementation index * @module nips */ // Basic protocol flow export * from './nip-01.js'; // Contact List and Petnames export * from './nip-02.js'; // Encrypted Direct Messages (NIP-04) export * from './nip-04.js'; // Versioned Encrypted Payloads (NIP-44) export * from './nip-44.js'; // DNS Identity Verification export * from './nip-05.js'; // Event Deletion export * from './nip-09.js'; // bech32-encoded entities export * from './nip-19.js'; // Delegated Event Signing export * from './nip-26.js'; // Relay Information Document export * from './nip-11.js'; // Command Results export * from './nip-20.js'; // Proof of Work export * from './nip-13.js'; // Event Treatment export * from './nip-16.js'; // End of Stored Events Notice export * from './nip-15.js'; // Event Created At Limits export * from './nip-22.js'; // Public Chat export * from './nip-28.js'; // Parameterized Replaceable Events export * from './nip-33.js'; // Nostr Connect / Remote Signing Transport (NIP-46) export * from './nip-46.js'; //# sourceMappingURL=index.js.map