From 01722cff381057b9072f98065362e8d7956869a2 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 6 Nov 2025 19:12:59 +0100 Subject: [PATCH] feat: change default nostr gateway to njump.to --- src/config/nostrGateways.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/nostrGateways.ts b/src/config/nostrGateways.ts index e3357362..906e4fc3 100644 --- a/src/config/nostrGateways.ts +++ b/src/config/nostrGateways.ts @@ -2,7 +2,7 @@ * Nostr gateway URLs for viewing events and profiles on the web */ -export const NOSTR_GATEWAY = 'https://nostr.at' as const +export const NOSTR_GATEWAY = 'https://njump.to' as const export const SEARCH_PORTAL = 'https://ants.sh' as const /** @@ -24,7 +24,7 @@ export function getEventUrl(nevent: string): string { * Automatically detects if it's a profile (npub/nprofile) or event (note/nevent/naddr) */ export function getNostrUrl(identifier: string): string { - // nostr.at uses simple /{identifier} format for all types + // njump.to uses simple /{identifier} format for all types return `${NOSTR_GATEWAY}/${identifier}` }