From c88dfa03b99a9e156d3577c2caf9b2a664e6aae3 Mon Sep 17 00:00:00 2001 From: OFF0 Date: Sun, 18 Dec 2022 23:31:13 +0100 Subject: [PATCH] relay: add new relays and temp disable relay.damus.io relay.damus.io seems to be down, added a few alternatives. --- src/main.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index a405e0e..611c7f3 100644 --- a/src/main.js +++ b/src/main.js @@ -5,8 +5,11 @@ import {dateTime, formatTime} from './timeutil.js'; const pool = relayPool(); pool.addRelay('wss://relay.nostr.info', {read: true, write: true}); -pool.addRelay('wss://relay.damus.io', {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://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) {