diff options
| -rw-r--r-- | src/client.rs | 15 |
1 files 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 { | |||
| 57 | ] | 57 | ] |
| 58 | } else { | 58 | } else { |
| 59 | vec![ | 59 | vec![ |
| 60 | "wss://relay.damus.io".to_string(), | 60 | "wss://relay.damus.io".to_string(), /* free, good reliability, have been known |
| 61 | "wss://nostr-pub.wellorder.net".to_string(), | 61 | * to delete all messages */ |
| 62 | "wss://nos.lol".to_string(), | 62 | "wss://nos.lol".to_string(), |
| 63 | // "ws://localhost:8080".to_string() | 63 | "wss://relay.nostr.band".to_string(), |
| 64 | "wss://relay.f7z.io".to_string(), | ||
| 64 | ] | 65 | ] |
| 65 | }; | 66 | }; |
| 66 | 67 | ||
| @@ -71,11 +72,9 @@ impl Connect for Client { | |||
| 71 | ] | 72 | ] |
| 72 | } else { | 73 | } else { |
| 73 | vec![ | 74 | vec![ |
| 74 | "wss://purplepages.es".to_string(), | 75 | "wss://purplerelay.com".to_string(), // free but reliability not tested |
| 75 | "wss://nostr.wine/".to_string(), | 76 | "wss://purplepages.es".to_string(), // for profile events but unreliable |
| 76 | "wss://eden.nostr.land/".to_string(), | 77 | "wss://relayable.org".to_string(), // free but not always reliable |
| 77 | "wss://relay.nostr.band/".to_string(), | ||
| 78 | // "ws://localhost:8080".to_string() | ||
| 79 | ] | 78 | ] |
| 80 | }; | 79 | }; |
| 81 | 80 | ||