From 3da30553cba61b4445a992ae4bd0d90a2dd6098d Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 14 Aug 2023 19:16:49 -0500 Subject: [PATCH] firehose: accept kind 10002 events --- src/firehose.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/firehose.ts b/src/firehose.ts index 6c60532..4e5e3dc 100644 --- a/src/firehose.ts +++ b/src/firehose.ts @@ -14,7 +14,7 @@ const pool = new RelayPool(relays); // side-effects based on them, such as trending hashtag tracking // and storing events for notifications and the home feed. pool.subscribe( - [{ kinds: [0, 1, 3, 5, 6, 7], since: nostrNow() }], + [{ kinds: [0, 1, 3, 5, 6, 7, 10002], since: nostrNow() }], relays, handleEvent, undefined,