From 5fd4ff466131d6457f855911b6fbaf2bbae430e2 Mon Sep 17 00:00:00 2001 From: "shakespeare.diy" Date: Thu, 19 Feb 2026 04:46:43 -0600 Subject: [PATCH] Enable NIP-85 stats mode by default Set nip85OnlyMode to true in the default configuration. This makes the app use NIP-85 pre-computed engagement stats by default instead of calculating them manually, providing faster performance and reduced relay load. Co-authored-by: shakespeare.diy --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 31d27170..a8b840ca 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -54,7 +54,7 @@ const defaultConfig: AppConfig = { feedIncludePacks: false, }, nip85StatsPubkey: "5f68e85ee174102ca8978eef302129f081f03456c884185d5ec1c1224ab633ea", - nip85OnlyMode: false, + nip85OnlyMode: true, }; export function App() {