From 6a4519b79cd36d1edbb492a3c98e2a3a0b42e0e9 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Thu, 15 Feb 2024 08:46:39 +0000 Subject: fix: curate default relays wss://eden.nostr.land is a paid relay wss://nostr.wine is paid relay --- src/client.rs | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/client.rs b/src/client.rs index 2b0c960..539d45a 100644 --- a/src/client.rs +++ b/src/client.rs @@ -57,10 +57,11 @@ impl Connect for Client { ] } else { vec![ - "wss://relay.damus.io".to_string(), - "wss://nostr-pub.wellorder.net".to_string(), + "wss://relay.damus.io".to_string(), /* free, good reliability, have been known + * to delete all messages */ "wss://nos.lol".to_string(), - // "ws://localhost:8080".to_string() + "wss://relay.nostr.band".to_string(), + "wss://relay.f7z.io".to_string(), ] }; @@ -71,11 +72,9 @@ impl Connect for Client { ] } else { vec![ - "wss://purplepages.es".to_string(), - "wss://nostr.wine/".to_string(), - "wss://eden.nostr.land/".to_string(), - "wss://relay.nostr.band/".to_string(), - // "ws://localhost:8080".to_string() + "wss://purplerelay.com".to_string(), // free but reliability not tested + "wss://purplepages.es".to_string(), // for profile events but unreliable + "wss://relayable.org".to_string(), // free but not always reliable ] }; -- cgit v1.2.3