mirror of
https://github.com/nostr-protocol/nips.git
synced 2024-12-13 02:46:24 +00:00
365 B
365 B
NIP-C7
Chats
draft
optional
A chat message is a kind 9
event.
{
"kind": 9,
"content": "GM",
"tags": []
}
A reply to a kind 9
is an additional kind 9
which quotes the parent using a q
tag.
{
"kind": 9,
"content": "nostr:nevent1...\nyes",
"tags": [
["q", <event-id>, <relay-url>, <pubkey>]
]
}