From afe487db43fffedf627331475d36af87a1bb67c6 Mon Sep 17 00:00:00 2001 From: Thomas <31560900+0xtlt@users.noreply.github.com> Date: Thu, 5 Jan 2023 20:17:12 +0100 Subject: [PATCH] Create 41.md --- 41.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 41.md diff --git a/41.md b/41.md new file mode 100644 index 0000000..d6e60dd --- /dev/null +++ b/41.md @@ -0,0 +1,46 @@ +NIP-41 +====== + +### Poll & Vote Event +----------------------------------- + +`draft` `optional` `author:0xtlt` + +An event with kind `1` that wants to contain a poll can do so by adding poll tags and its content as follows: + +```json +{ + ... + "kind": 1, + "tags": [ + ... + ["poll", "Choice 1"], + ["poll", "Choice 2"], + ["poll", "Choice 3"] + ... + ], +} +``` + +Then the client should display voting options if more than **1 choice** is present in the poll. + +The client can then submit the vote by sending an event with kind `8` and its content which will be the index (start at `0`) of the chosen choice. + +It should also contain an `e` tag with the id of the poll event only. + +```json +{ + ... + "kind": 8, + "tags": [ + ... + ["e", ""] + ... + ], + "content": "1" +} +``` + +#### Warning + +Keep in mind that all votes are public and accessible to everyone.