diff options
| author | fiatjaf <faitjaf@gmail.com> | 2022-05-01 07:48:57 -0300 |
|---|---|---|
| committer | fiatjaf <faitjaf@gmail.com> | 2022-05-01 07:48:57 -0300 |
| commit | f25c7e672c23ca5463fa5c0fcb5e5f424d956862 (patch) | |
| tree | 597462ec02ed56ef53f268279a31f62edd3f37eb /README.md | |
migrate nips from main nostr repo.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..b9e4c01 --- /dev/null +++ b/README.md | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | # NIPs | ||
| 2 | |||
| 3 | NIPs stand for **Nostr Implementation Possibilities**. They exist to document what MUST, what SHOULD and what MAY be implemented by [Nostr](https://github.com/fiatjaf/nostr)-compatible _relay_ and _client_ software. | ||
| 4 | |||
| 5 | - [NIP-01: Basic protocol flow description](https://github.com/fiatjaf/nostr/blob/master/nips/01.md) | ||
| 6 | - [NIP-02: Contact List and Petnames](https://github.com/fiatjaf/nostr/blob/master/nips/02.md) | ||
| 7 | - [NIP-03: OpenTimestamps Attestations for Events](https://github.com/fiatjaf/nostr/blob/master/nips/03.md) | ||
| 8 | - [NIP-04: Encrypted Direct Message](https://github.com/fiatjaf/nostr/blob/master/nips/04.md) | ||
| 9 | - [NIP-05: Mapping Nostr keys to DNS-based internet identifiers](https://github.com/fiatjaf/nostr/blob/master/nips/05.md) | ||
| 10 | - [NIP-06: Basic key derivation from mnemonic seed phrase](https://github.com/fiatjaf/nostr/blob/master/nips/06.md) | ||
| 11 | - [NIP-08: Handling Mentions](https://github.com/fiatjaf/nostr/blob/master/nips/08.md) | ||
| 12 | - [NIP-09: Event Deletion](https://github.com/fiatjaf/nostr/blob/master/nips/09.md) | ||
| 13 | - [NIP-11: Relay Information Document](https://github.com/fiatjaf/nostr/blob/master/nips/11.md) | ||
| 14 | - [NIP-12: Generic Tag Queries](https://github.com/fiatjaf/nostr/blob/master/nips/12.md) | ||
| 15 | |||
| 16 | ## Event Kinds | ||
| 17 | |||
| 18 | | kind | description | NIP | | ||
| 19 | |------|---------------------------|-----| | ||
| 20 | | 0 | Metadata | 5 | | ||
| 21 | | 1 | Text | 1 | | ||
| 22 | | 3 | Contacts | 2 | | ||
| 23 | | 4 | Encrypted Direct Messages | 4 | | ||
| 24 | | 5 | Event Deletion | 9 | | ||
| 25 | |||
| 26 | Please update this list when proposing NIPs introducing new event kinds. | ||