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.
35 lines • 903 B
JavaScript
/**
* @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
export * from './nip-04.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';
//# sourceMappingURL=index.js.map