Refining the text and changing from unbound list to a regular e tag.

This commit is contained in:
Vitor Pamplona 2024-02-28 13:47:52 -05:00
parent 8a74ded845
commit c5757ff586

12
37.md
View File

@ -7,22 +7,24 @@ Editable Short Notes
`draft` `optional`
This NIP adds full-history content modification directly to `kind:1` short notes.
This NIP allows `.content` modification on `kind:1` short notes while keeping a history of all changes.
`kind:1010` stores the updated content with a `n` tag pointing back to the `kind:1` id.
`kind:1010` stores the updated content with a `e` tag pointing back to the `kind:1` id.
```js
{
"kind": 1010,
"pubkey": "<32-bytes hex-encoded public key of the event creator>",
"tags": [
["n", "<kind_1_event_id>"]
["e", "<kind_1_event_id>"]
],
"content": "this is a modified note",
"content": "this is a modified version of the original content",
// ...other fields
}
```
Clients MUST check if the pubkey of the `kind:1010` is the same as the referenced `kind:1`
Clients SHOULD render the `.content` of the most recent `kind:1010` by `created_at`
Clients MUST check if the pubkey of the `kind:1010` is the same as the referenced `kind:1`
Clients MAY present a history of changes over time.