nostr-fetch
Version:
A utility library that allows JS/TS apps to effortlessly fetch past events from Nostr relays
17 lines (15 loc) • 369 B
text/typescript
export * from "./fetcher";
export {
NostrFetchError,
type FetchFilter,
type FetchStats,
type FetchStatsListener,
type FetchTimeRangeFilter,
} from "./types";
export {
eventKind,
noopVerifier,
type EventVerifier,
type NostrEvent,
} from "@nostr-fetch/kernel/nostr";
export { normalizeRelayUrl, normalizeRelayUrlSet } from "@nostr-fetch/kernel/utils";