From e84af81b971c54e502b163bde4a8cc4c64666d19 Mon Sep 17 00:00:00 2001 From: OFF0 Date: Fri, 27 Jan 2023 09:09:51 +0100 Subject: [PATCH] relay: add snort.social relay relay.snort.social seems to be a popular relay, adding a new one to the hardcoded list of relays, this should be configurable in the future. related damus relay is often not responding or slow, but keeping it for now. --- src/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.js b/src/main.js index ec85f3e..fcce2e9 100644 --- a/src/main.js +++ b/src/main.js @@ -9,6 +9,7 @@ const pool = relayPool(); pool.addRelay('wss://relay.nostr.info', {read: true, write: true}); pool.addRelay('wss://nostr.openchain.fr', {read: true, write: true}); pool.addRelay('wss://relay.damus.io', {read: true, write: true}); +pool.addRelay('wss://relay.snort.social', {read: true, write: true}); pool.addRelay('wss://eden.nostr.land', {read: true, write: true}); pool.addRelay('wss://relay.nostr.ch', {read: true, write: true});