From 3f654f2464b34325ac7fe5a459c557732b736d07 Mon Sep 17 00:00:00 2001 From: jiftechnify Date: Tue, 9 Jan 2024 01:55:36 +0900 Subject: [PATCH] renew bootstrap relays for querying user metadata --- src/nostr/EventFetcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostr/EventFetcher.ts b/src/nostr/EventFetcher.ts index 5da3a3f..eb40582 100644 --- a/src/nostr/EventFetcher.ts +++ b/src/nostr/EventFetcher.ts @@ -5,7 +5,7 @@ import { parseNostrProfile } from "./ProfileParser"; const fetcher = NostrFetcher.init({ minLogLevel: "info" }); -const bootstrapRelays = ["wss://relay-jp.nostr.wirednet.jp", "wss://relay.damus.io"]; +const bootstrapRelays = ["wss://relay.nostr.band", "wss://directory.yabu.me", "wss://purplepag.es"]; export class EventFetcher { private static withBootstraps(relayUrls: string[]) {