diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 25 |
1 files changed, 14 insertions, 11 deletions
| @@ -25,6 +25,7 @@ NIPs stand for **Nostr Implementation Possibilities**. They exist to document wh | |||
| 25 | - [NIP-28: Public Chat](28.md) | 25 | - [NIP-28: Public Chat](28.md) |
| 26 | - [NIP-35: User Discovery](35.md) | 26 | - [NIP-35: User Discovery](35.md) |
| 27 | - [NIP-36: Sensitive Content](36.md) | 27 | - [NIP-36: Sensitive Content](36.md) |
| 28 | - [NIP-37: Remote Signing of Events](37.md) | ||
| 28 | 29 | ||
| 29 | ## Event Kinds | 30 | ## Event Kinds |
| 30 | 31 | ||
| @@ -50,19 +51,21 @@ NIPs stand for **Nostr Implementation Possibilities**. They exist to document wh | |||
| 50 | ## Message types | 51 | ## Message types |
| 51 | 52 | ||
| 52 | ### Client to Relay | 53 | ### Client to Relay |
| 53 | | type | description | NIP | | 54 | | type | description | NIP | |
| 54 | |-------|-----------------------------------------------------|------------| | 55 | | ------- | ----------------------------------------------------- | ------------ | |
| 55 | | EVENT | used to publish events | [1](01.md) | | 56 | | EVENT | used to publish events | [1](01.md) | |
| 56 | | REQ | used to request events and subscribe to new updates | [1](01.md) | | 57 | | REQ | used to request events and subscribe to new updates | [1](01.md) | |
| 57 | | CLOSE | used to stop previous subscriptions | [1](01.md) | | 58 | | CLOSE | used to stop previous subscriptions | [1](01.md) | |
| 59 | | UNSIGNED | used to send and request unsigned events | [37](37.md) | | ||
| 58 | 60 | ||
| 59 | ### Relay to Client | 61 | ### Relay to Client |
| 60 | | type | description | NIP | | 62 | | type | description | NIP | |
| 61 | |--------|---------------------------------------------------------|-------------| | 63 | | -------- | --------------------------------------------------------- | ------------- | |
| 62 | | EVENT | used to send events requested to clients | [1](01.md) | | 64 | | EVENT | used to send events requested to clients | [1](01.md) | |
| 63 | | NOTICE | used to send human-readable messages to clients | [1](01.md) | | 65 | | NOTICE | used to send human-readable messages to clients | [1](01.md) | |
| 64 | | EOSE | used to notify clients all stored events have been sent | [15](15.md) | | 66 | | EOSE | used to notify clients all stored events have been sent | [15](15.md) | |
| 65 | | OK | used to notify clients if an EVENT was successuful | [20](20.md) | | 67 | | OK | used to notify clients if an EVENT was successuful | [20](20.md) | |
| 68 | | UNSIGNED | used to send unsigned events | [37](37.md) | | ||
| 66 | 69 | ||
| 67 | Please update these lists when proposing NIPs introducing new event kinds. | 70 | Please update these lists when proposing NIPs introducing new event kinds. |
| 68 | 71 | ||