feat: add k tag to gift wraps and process only chat message rumors #30

Merged
reya merged 3 commits from only-nip17 into master 2026-04-10 02:41:21 +00:00
Showing only changes of commit 15ac8d6775 - Show all commits

View File

@@ -602,7 +602,8 @@ async fn send_gift_wrap<T>(
where where
T: NostrSigner + 'static, T: NostrSigner + 'static,
{ {
let mut extra_tags = vec![]; let k_tag = Tag::custom(TagKind::k(), vec!["14"]);
let mut extra_tags = vec![k_tag];
// Determine the receiver public key based on the config // Determine the receiver public key based on the config
let receiver = match config { let receiver = match config {