From 16c1e795bdbfda06b539c2932ca09b752e761822 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Tue, 2 Jan 2024 11:05:43 -0300 Subject: [PATCH] fetch: more places to fetch relay lists from. --- fetch.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fetch.go b/fetch.go index 96e267e..86936a7 100644 --- a/fetch.go +++ b/fetch.go @@ -70,7 +70,8 @@ var fetch = &cli.Command{ pool := nostr.NewSimplePool(c.Context) if authorHint != "" { relayList := sdk.FetchRelaysForPubkey(c.Context, pool, authorHint, - "wss://purplepag.es", "wss://offchain.pub", "wss://public.relaying.io") + "wss://purplepag.es", "wss://relay.damus.io", "wss://relay.noswhere.com", + "wss://nos.lol", "wss://public.relaying.io", "wss://relay.nostr.band") for _, relayListItem := range relayList { if relayListItem.Outbox { relays = append(relays, relayListItem.URL)