From cdbc9fcb1289d419811cf4fb13e7c0c6343489dd Mon Sep 17 00:00:00 2001 From: Sebastix Date: Tue, 7 May 2024 16:20:40 +0200 Subject: [PATCH] update relays (removed three that are offline + added two public relays) --- src/extension/background-script/actions/nostr/getRelays.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/extension/background-script/actions/nostr/getRelays.ts b/src/extension/background-script/actions/nostr/getRelays.ts index 99e15f6a4d..5efa39eb82 100644 --- a/src/extension/background-script/actions/nostr/getRelays.ts +++ b/src/extension/background-script/actions/nostr/getRelays.ts @@ -15,13 +15,12 @@ const getRelays = async (message: MessageDefaultPublic, sender: Sender) => { return { data: { "wss://relay.damus.io": { read: true, write: true }, - "wss://nostr1.tunnelsats.com": { read: true, write: true }, "wss://nostr-pub.wellorder.net": { read: true, write: true }, - "wss://relay.nostr.info": { read: true, write: true }, "wss://nostr-relay.wlvs.space": { read: true, write: true }, "wss://nostr.bitcoiner.social": { read: true, write: true }, "wss://nostr-01.bolt.observer": { read: true, write: true }, - "wss://relayer.fiatjaf.com": { read: true, write: true }, + "wss://relay.current.io": { read: true, write: true }, + "wss://nos.lol": { read: true, write: true } }, }; };