-
Notifications
You must be signed in to change notification settings - Fork 721
Right to Vanish #1256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right to Vanish #1256
Changes from 1 commit
4d64605
2137719
609571e
651abea
0162794
985388e
86fc593
7521f7a
d9b39fc
ab8a580
59eb1cc
9601eb2
1cf833d
44d8122
4b73e75
553de66
8e479d5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ This NIP offers a Nostr-native way to request a complete reset of a key's finger | |
|
|
||
| ## Delete Account | ||
|
|
||
| Kind `62` informs a specific relay to delete everything, including [NIP-09](09.md) Deletion Events, from the `.pubkey` until its `.createdAt` | ||
| Kind `62` informs a specific relay to delete everything, including [NIP-09](09.md) Deletion Events, from the `.pubkey` until its `.created_at` | ||
|
|
||
| ```js | ||
| { | ||
|
|
@@ -32,32 +32,34 @@ Relays MUST fully delete any events from the `.pubkey` if their service url is t | |
|
|
||
| Relays MAY store the deletion request for bookkeeping and ensure past events are not re-broadcasted into the relay. | ||
|
|
||
| Paid relays or relays that have restrictions on who can post MUST also follow the request even if the key has not been paid to get access to the relay. | ||
| Paid relays or relays that have restrictions on who can post MUST also follow the request regardless of the user's status. | ||
|
|
||
| Kind `62` SHOULD only be sent to the target relays. | ||
| Clients SHOULD send this event to the target relays only. | ||
|
|
||
| ## Right to Vanish | ||
|
|
||
| Kind `63` informs ALL relays to delete everything, including [NIP-09](09.md) Deletion Events, from the `.pubkey` until its `.createdAt` | ||
| Kind `62` informs ALL relays to delete everything, including [NIP-09](09.md) Deletion Events, from the `.pubkey` until its `.created_at` | ||
|
|
||
| ```js | ||
vitorpamplona marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| { | ||
| "kind": 63, | ||
| "kind": 62, | ||
| "pubkey": <32-bytes hex-encoded public key of the event creator>, | ||
| "tags": [], | ||
| "content": "<reason or note>", | ||
| "tags": [ | ||
| ["relay", "ALL_RELAYS"] | ||
| ], | ||
| "content": "<reason>", | ||
| //...other fields | ||
| } | ||
| ``` | ||
|
|
||
| The tag list MUST be empty. | ||
| The tag list MUST include a `relay` with value `ALL_RELAYS` in uppercase. | ||
|
|
||
| Content MAY include a reason to the relay operator. | ||
|
|
||
| Relays MUST fully delete any events from the `.pubkey`. | ||
|
|
||
| Relays MAY store the deletion request for bookkeeping and ensure past events are not re-broadcasted into the relay. | ||
|
|
||
| Paid relays or relays that have restrictions on who can post MUST also follow the request even if the key has not been paid to get access to the relay. | ||
| Paid relays or relays that have restrictions on who can post MUST also follow the request regardless of the user's status. | ||
|
|
||
| Kind `63` SHOULD be widely broadcasted. | ||
| Clients SHOULD broadcast this event to as many relays as possible. | ||
|
||
Uh oh!
There was an error while loading. Please reload this page.