From a9c73d35efb78da64538e5a5218d3d74d14a1481 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 9 Oct 2025 13:10:20 +0100 Subject: [PATCH] feat: add localhost:4869 as second local relay - Add ws://localhost:4869 to RELAYS configuration - Update comment to reflect multiple local relays - Support additional local relay option for users --- src/config/relays.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/relays.ts b/src/config/relays.ts index 67f3d115..150c2e17 100644 --- a/src/config/relays.ts +++ b/src/config/relays.ts @@ -3,9 +3,10 @@ * Single set of relays used throughout the application */ -// All relays including local relay +// All relays including local relays export const RELAYS = [ 'ws://localhost:10547', + 'ws://localhost:4869', 'wss://relay.damus.io', 'wss://nos.lol', 'wss://relay.nostr.band',