-
Notifications
You must be signed in to change notification settings - Fork 586
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to reconcile kind 9/209 and 11/309
- Loading branch information
Jon Staab
committed
Nov 20, 2024
1 parent
5e99b6f
commit 920a5d7
Showing
5 changed files
with
89 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
NIP-XX | ||
====== | ||
|
||
Chats | ||
----- | ||
|
||
`draft` `optional` | ||
|
||
A chat message is a `kind 9` event. Chat messages are intended to be used as a | ||
high-frequency, informal, context-aware communication medium. In other words, | ||
chat messages should be displayed sequentially alongside other messages. | ||
|
||
```json | ||
{ | ||
"kind": 9, | ||
"content": "GM", | ||
"tags": [] | ||
} | ||
``` | ||
|
||
Replies to `kind 9` MUST use [NIP-73](https://github.com/nostr-protocol/nips/pull/1233) | ||
`kind 1111`. Clients SHOULD encourage flat reply hierarchies. If an `h` or `~` tag is used | ||
on the `kind 9`, a reply MUST copy it from its parent. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
NIP-XX | ||
====== | ||
|
||
Relay-specific content | ||
---------------------- | ||
|
||
`draft` `optional` | ||
|
||
Any event may be specified as belonging to a relay using a `@` tag containing the | ||
relay's normalized URL. These events MUST NOT be considered valid unless their `@` | ||
tag matches the relay they are fetched from, or a relay specified in a `kind 30209` | ||
federation event. | ||
|
||
# Federation | ||
|
||
Relays MAY indicate federation with other relays by publishing a `kind 30209` event | ||
signed using the key associated with the relay's NIP 11 document. | ||
|
||
```json | ||
{ | ||
"kind": "30209", | ||
"tags": [ | ||
["@", "wss://other1.com"] | ||
], | ||
} | ||
``` | ||
|
||
Federation is pull-based, and does not need to be mutual. Relays that wish to avoid | ||
sharing proprietary content should use other access control measures. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
NIP-XX | ||
====== | ||
|
||
Threads | ||
------- | ||
|
||
`draft` `optional` | ||
|
||
A thread is a `kind 11` event. Threads and their replies are intended to be used | ||
as a low-frequency, more formal, context-aware communication medium. Threads | ||
SHOULD include a `title` with a summary of the `content`. | ||
|
||
```json | ||
{ | ||
"kind": 11, | ||
"content": "Good morning", | ||
"tags": [ | ||
["title", "GM"] | ||
] | ||
} | ||
``` | ||
|
||
Replies to `kind 11` MUST use [NIP-73](https://github.com/nostr-protocol/nips/pull/1233) | ||
`kind 1111` comments. Clients SHOULD encourage flat reply hierarchies. If an `h` or `~` | ||
tag is used on the `kind 9`, a reply MUST copy it from its parent. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters