From 485510314ae0a411f6a6f481ccb7419ba3e75092 Mon Sep 17 00:00:00 2001 From: OFF0 Date: Wed, 4 Jan 2023 17:36:05 +0100 Subject: [PATCH] relays: update list of relays adding damus again (was disabled when it was down and heavy spam happened last year), remove nostr.sandwich.farm as it currently errors with '502 Bad Gateway'. --- src/main.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.js b/src/main.js index e223e7c..9a5ea15 100644 --- a/src/main.js +++ b/src/main.js @@ -6,10 +6,9 @@ import {dateTime, formatTime} from './timeutil.js'; 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.damus.io', {read: true, write: true}); pool.addRelay('wss://nostr-relay.wlvs.space', {read: true, write: true}); pool.addRelay('wss://relay.nostr.ch', {read: true, write: true}); -pool.addRelay('wss://nostr.sandwich.farm', {read: true, write: true}); function onEvent(evt, relay) { switch (evt.kind) {