-
Notifications
You must be signed in to change notification settings - Fork 582
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
Editable Event #1540
base: master
Are you sure you want to change the base?
Editable Event #1540
Conversation
3dc8e39
to
c5f41f5
Compare
or something like an addressable event with a random unique |
@kehiy replaceable/addressable kind is artificially limited to a kind number range (i.e. can't be simultaneously addressable and ephemeral -edit: bad example). Also, if, for example, you want to make an event unique by its Currently: {
tags: [
["d", "<event-id>:<pubkey>"],
["e", "<event-id>"],
["p", "<pubkey>"],
]
} This NIP: {
tags: [
["dd", "ep"],
["e", "<event-id>"],
["p", "<pubkey>"],
]
} |
16d3c20
to
0264b19
Compare
This seems like a tiny improvement for the amount of extra complexity custom-parsing |
@vitorpamplona it is not only saving space but it could be used for any event kind. It is basically #236, that wanted to make all event kinds replaceable/addressable. I just didn't use the Like you said here, something like this PR doesn't need relay buy-in and "Event kind ranges can be deprecated.". edit: In my view, "deprecate" in the sense of possibly falling into disuse. |
e5fc59e
to
777f4a8
Compare
777f4a8
to
0cd55b2
Compare
34ba562
to
7c2abcc
Compare
This is an alternative to #1510 that doesn't need kind ranges.
Read here