-
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
Merged
Merged
Right to Vanish #1256
Changes from 3 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
4d64605
Adds a right to vanish NIP
vitorpamplona 2137719
updates readme
vitorpamplona 609571e
Typos
vitorpamplona 651abea
Update 62.md
vitorpamplona 0162794
Unifies 62 and 63 into one with ALL_RELAYS
vitorpamplona 985388e
Removes 63 from the readme
vitorpamplona 86fc593
wording
vitorpamplona 7521f7a
Changed from delete account to delete my content.
vitorpamplona d9b39fc
- Changed language from Right to Vanish to Request to Vanish
vitorpamplona ab8a580
typos
vitorpamplona 59eb1cc
Merge remote-tracking branch 'upstream/master' into right-to-vanish
vitorpamplona 9601eb2
Update 62.md
vitorpamplona 1cf833d
Update 62.md
vitorpamplona 44d8122
Adds clause to disallow kind5 deletions of kind 62
vitorpamplona 4b73e75
Update 62.md
vitorpamplona 553de66
adjust DM deletion require matching relay service url
vitorpamplona 8e479d5
Merge branch 'master' into right-to-vanish
vitorpamplona File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,63 @@ | ||
| NIP-62 | ||
| ====== | ||
|
|
||
| Right to Vanish | ||
| --------------- | ||
|
|
||
| `draft` `optional` | ||
|
|
||
| This NIP offers a Nostr-native way to request a complete reset of a key's fingerprint on the web. In some jurisdictions, this is a legally binding procedure and thus supporters of this NIP MUST trully delete events from their database. | ||
|
|
||
| ## Delete Account | ||
|
|
||
| Kind `62` informs a specific relay to delete everything, including [NIP-09](09.md) Deletion Events, from the `.pubkey` until its `.createdAt` | ||
|
|
||
| ```js | ||
| { | ||
| "kind": 62, | ||
| "pubkey": <32-bytes hex-encoded public key of the event creator>, | ||
| "tags": [ | ||
| ["relay", "<relay url>"] | ||
| ], | ||
| "content": "<reason or note>", | ||
| //...other fields | ||
| } | ||
| ``` | ||
|
|
||
| The tag list MUST include at least one `relay` value. | ||
|
|
||
| Content MAY include a reason or a legal notice to the relay operator. | ||
|
|
||
| Relays MUST fully delete any events from the `.pubkey` if their service url is tagged in the event. | ||
|
|
||
| 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. | ||
|
|
||
| Kind `62` SHOULD only be sent to the target relays. | ||
|
|
||
| ## Right to Vanish | ||
|
|
||
| Kind `63` informs ALL relays to delete everything, including [NIP-09](09.md) Deletion Events, from the `.pubkey` until its `.createdAt` | ||
|
|
||
| ```js | ||
vitorpamplona marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| { | ||
| "kind": 63, | ||
| "pubkey": <32-bytes hex-encoded public key of the event creator>, | ||
| "tags": [], | ||
| "content": "<reason or note>", | ||
| //...other fields | ||
| } | ||
| ``` | ||
|
|
||
| The tag list MUST be empty. | ||
|
|
||
| Content MAY include a reason or a legal notice to the relay operator. | ||
vitorpamplona marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 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. | ||
|
|
||
| Kind `63` SHOULD be widely broadcasted. | ||
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.