mirror of
https://github.com/nostr-protocol/nips.git
synced 2024-12-28 11:15:50 -05:00
Add recommended relays set
The main chat creation message should include a list of relays where the chat is typically found. In addition, when updating the metadata for a chat, the set can be changed (chat has moved) This allows someone to follow a thread of a chat across relays, and it helps preserve censorship resistance properties.
This commit is contained in:
parent
fe9ed69dc3
commit
0f6a933079
7
28.md
7
28.md
|
@ -24,11 +24,12 @@ Client-centric moderation gives client developers discretion over what types of
|
||||||
Create a public chat channel.
|
Create a public chat channel.
|
||||||
|
|
||||||
In the channel creation `content` field, Client SHOULD include basic channel metadata (`name`, `about`, `picture` as specified in kind 41).
|
In the channel creation `content` field, Client SHOULD include basic channel metadata (`name`, `about`, `picture` as specified in kind 41).
|
||||||
|
In the channel creation `content` field, Client SHOULD include a list of recommended relays for using this chat.
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"content": "{\"name\": \"Demo Channel\", \"about\": \"A test channel.\", \"picture\": \"https://placekitten.com/200/200\"}",
|
"content": "{\"name\": \"Demo Channel\", \"about\": \"A test channel.\", \"picture\": \"https://placekitten.com/200/200\"}",
|
||||||
...
|
"tags": ["relays", "wss://xxx", "wss://yyy", ...]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -49,7 +50,9 @@ Clients SHOULD support basic metadata fields:
|
||||||
|
|
||||||
Clients MAY add additional metadata fields.
|
Clients MAY add additional metadata fields.
|
||||||
|
|
||||||
Clients SHOULD use [NIP-10](10.md) marked "e" tags to recommend a relay.
|
Clients SHOULD use [NIP-10](10.md) marked "e" tags to recommend a relay where the original creation can be found.
|
||||||
|
|
||||||
|
Client MAY include a list of new recommended relays, going forward, for using this chat.
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user