From c955bf8eb0a2f37ca478315e510fde4c07fc6976 Mon Sep 17 00:00:00 2001 From: Alejandro Date: Wed, 21 Jan 2026 16:59:53 +0100 Subject: [PATCH] feat: add readable names for wiki list kinds (10101, 10102) (#186) Add EVENT_KINDS entries for kind 10101 (Wiki Authors) and kind 10102 (Wiki Relays) so getKindName() returns human-readable names instead of fallback "Kind 10101" / "Kind 10102". Co-authored-by: Claude --- src/constants/kinds.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/constants/kinds.ts b/src/constants/kinds.ts index 1d7480f..791ef06 100644 --- a/src/constants/kinds.ts +++ b/src/constants/kinds.ts @@ -843,6 +843,20 @@ export const EVENT_KINDS: Record = { nip: "96", icon: Cloud, }, + 10101: { + kind: 10101, + name: "Wiki Authors", + description: "Good wiki authors", + nip: "54", + icon: Users, + }, + 10102: { + kind: 10102, + name: "Wiki Relays", + description: "Good wiki relays", + nip: "54", + icon: Radio, + }, 10166: { kind: 10166, name: "Relay Monitor",