 **WHAT IS IT**: A way to vote (do a poll) on hive that every single UI can easily integrate and which has advanced analytics features and multiple voting qualifications and filters. A little while ago we announced the development of a [decentralized polls and voting system](https://peakd.com/hive-139531/@peak.open/announcing-decentralized-polls-and-voting-system-project) for Hive. As the various pieces are gradually being built (we are progressing on fetching of polls data from the blockchain and providing them in an API), today we share with you the protocol specification for this system. As a reminder, Hive Open Polls are meant to be decentralized and able to be (and we will encourage them to be) integrated into as many (hopefully all) Hive based UIs. They will also focus on ways to analyze the data based on factors determined by the poll creator. ### UI VS PROTOCOL The UI for the polls is already being developed by another developer and moving right along but this post today will focus on the backend protocol. However regarding the UI it will be first integrated into Hivehub.dev and we look forward to seeing what other websites do and if they want to use this open source UI or adapt it to something else for their site. ### What does this polls system allow people to do? People will be able to create polls, define choices, and let others vote on these choices. You can create a poll for everyone on Hive to vote on, or it can be just for your community's members, or just for the holders/staker holders of a token (or other criteria). Whether you want to make polls for fun, or you want to vote on governance decisions, the polls system is intended to serve all those cases. It is also planned that later versions will allow voters to propose/submit their own choices beyond the choices the poll author added, so that there is decentralization also in the available choices that people can vote on. This can also enable functionalities like people submitting requests (for example, a request for a feature to be added to a product) and others voting so as to prioritize among all the submitted requests. One possibility this can create is for the decentralized Hive community to collectively discover which features, capabilities and activities it cares about or wants the most, so that work can be done towards those. Various other use cases for the polls system will be possible. We would be very interested and it will actually help inform the way we work on this project so please share your own ideas for how something like this system can be used for you and your projects/interfaces/communities. ### What does this protocol do? It specifies the rules for how the polls and voting will work. By following the same set of rules, everyone can participate and use the same polls system. This is an initial version of the protocol, intended to get started without too much complexity. It is planned to expand it with various settings for the polls and so on. Please share any feedback in the comments below. The protocol follows.  # Hive Open Polls Decentralized polls software and an open polls protocol for the Hive ecosystem. ## How it works The Hive blockchain provides a way to store immutable data. Accounts can add data formatted as polls and poll votes, according to a mutually agreed upon open protocol. Anyone can spin up a polls API node which collects the polls data in a more standard database, interprets it according to the protocol and makes the interpreted data readily available to apps and frontends. All of this constitutes a decentralized polls system. ## Hive Open Polls Protocol - Specification The protocol has versions, such that the software implementation can apply the correct protocol rules according to which version was used when a poll author created a poll. The protocol is designed to give poll authors and voters options to create and participate in polls in the way they wish to. The protocol does not specify which options or procedures should be followed in any poll but rather which options and procedures are available to choose from. Current Version - 0.1 **Polls** A poll is a regular Hive post (root comment). The post's `json_metadata` field is used to define it as a poll. The `json_metadata` field contains a json object such as the following: ``` { "content_type": "poll", "version": 0.1, "question": "How many polls do you want to see per day?", "choices": ["Less than 1", 1, 2, "three", "4-ish", "V", "six", 7, "e8t", "nine", 10, "10+"], "preferred_interpretation": "tokens", "token": "HIVE:HP", "filters": ["account_age": 100], "end_time": 1699373655 } ``` Where: * **content_type** defines the post as a poll * **version** specifies the Polls Protocol version. The poll and any votes on it will be interpreted according to the version specified here, at poll creation. * **question** contains the poll question * **choices** contains an array with choices (answers) that can be voted on. The array order is fixed at poll creation and cannot be changed. When accounts vote, their votes are recorded as the choice number in the array. * **preferred_interpretation** specifies the decision mechanism the poll author wishes to use for determining the poll results. It can be one of the following: - **tokens**: choice support level is determined by how much tokens the choice voters collectively have. - **number_of_votes**: choice support level is determined by how many accounts have voted for the choice. * **token** specifies the token to be used for the voting calculation. The field contains the chain or layer 2 followed by the token name, for example: `HIVE:HP`, `SPL:SPSP`, `HE:SWAP.HIVE`. Required when the **tokens** option is selected for **preferred_interpretation** and not applicable otherwise. * **filters** contains filters or requirements that accounts have to meet in order for their vote to be counted towards the poll results. In array format. Can be one or more of: - **account_age**: the minimum account age, in days, at the time the account casts a vote. * **end_time** specifies the time at which the poll ends. Votes made afterwards don't count towards the poll results. In UNIX timestamp. Utilizing a regular post as the poll offers multiple advantages. It allows the poll author to add any text and multimedia in the post body along with the poll. This ability to expand on and describe the poll's question becomes especially relevant for polls asking people to vote on decisions of importance. Since a regular Hive post is used, the poll also benefits from being integrated into communities, post feeds, account profiles and so on. It also enables people to post comments under the poll's post. Once a poll is created, it cannot be changed. Changes to the metadata that define the poll are ignored. If a poll author wishes to change any of the poll settings or choices, they have to create a new poll. This avoids issues where people vote on a poll and afterwards the poll is changed. The post body, however, can be changed in the standard way a post is edited. This allows a post author to edit the accompanying text/multimedia so as to clarify any aspect of the poll. At the same time, the blockchain keeps each version of the post which gives poll participants the ability to see how the post body was changed during the duration of the poll. **Poll Votes** A poll vote is a custom_json operation such as the following: ``` { id: 'polls', json: { "poll": "1a2b3d4e", "action": "vote", "choice": 1 } } ``` Where: * **id** serves as the unique identifier of the custom_json operation * **poll** refers to the poll for which the vote was placed. This field contains the transaction ID of the comment operation of the poll post. * **action** contains the activity performed on the poll, in this case a vote * **choice** specifies the poll answer which is being voted for. This is the answer number from the poll's **choices** field, starting the counting from 1. A voter can change their choice by making a new custom_json operation for voting on the same poll and specifying a different choice number. The new vote replaces any previous votes on the poll - any previous votes are simply ignored. If a voter wants to remove their vote rather than change it, they can specify 0 in the **choice** field. QUESTIONS? If you have any questions let us know. And like we indicated in the post please share your future use cases with us so we can help educate our future work on the project.
author | peak.open |
---|---|
permlink | open-polls-protocol-initial-version |
category | hive-139531 |
json_metadata | "{"app":"peakd/2023.11.3","format":"markdown","description":"Protocol for a decentralized polls and voting system on Hive","tags":["polls","voting","haf","dev","peakopenprojects","opensource","hive"],"users":["peak.open"],"image":["https://files.peakd.com/file/peakd-hive/mozzie5/23wWntkRpXMi6G6QeJRnjhq5bAP3zbxtqP3WunWsPX9MyYveKC1S8oDQNDPtxjbrSWRyV.png","https://files.peakd.com/file/peakd-hive/mozzie5/Eo1vTqKnBVeZz5H2tAZ8uu6um28SesjsB9d59L4bkpSr9UKyVRNYUdT5vRpCDrdGMtT.png"]}" |
created | 2024-01-24 15:46:33 |
last_update | 2024-01-24 15:46:33 |
depth | 0 |
children | 47 |
last_payout | 2024-01-31 15:46:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 27.163 HBD |
curator_payout_value | 27.101 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,860 |
author_reputation | 86,016,337,806,421 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,742,166 |
net_rshares | 128,493,204,287,515 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 5,319,490,175,808 | 100% | ||
acidyo | 0 | 10,060,236,606,042 | 100% | ||
leprechaun | 0 | 8,647,516,018 | 100% | ||
churdtzu | 0 | 23,630,531,105 | 33% | ||
paradise-paradox | 0 | 1,294,753,997 | 100% | ||
kennyskitchen | 0 | 36,673,025,545 | 100% | ||
bryanj4 | 0 | 601,068,405 | 25% | ||
ausbitbank | 0 | 1,153,553,137,017 | 40% | ||
ardina | 0 | 15,231,627,493 | 100% | ||
arcange | 0 | 1,005,157,396,949 | 5% | ||
ace108 | 0 | 424,572,726,061 | 10% | ||
treaphort | 0 | 716,331,366 | 15% | ||
elamental | 0 | 2,928,325,797 | 13% | ||
stevescoins | 0 | 5,189,971,244 | 50% | ||
catherinebleish | 0 | 11,010,049,035 | 50% | ||
steevc | 0 | 1,207,910,942,114 | 46% | ||
dannyshine | 0 | 30,057,217,235 | 35% | ||
brightstar | 0 | 5,406,958,558 | 15% | ||
wakeupnd | 0 | 123,381,102,482 | 50% | ||
tftproject | 0 | 2,700,944,134 | 15% | ||
dbroze | 0 | 7,282,722,513 | 100% | ||
jimbobbill | 0 | 1,767,253,023 | 15% | ||
canadian-coconut | 0 | 9,879,877,883,025 | 67% | ||
titusfrost | 0 | 55,852,300,990 | 100% | ||
ura-soul | 0 | 139,341,882,245 | 100% | ||
vannour | 0 | 127,207,117,369 | 100% | ||
jaki01 | 0 | 1,478,913,902,141 | 100% | ||
mapesa | 0 | 1,986,497,280 | 50% | ||
funnel | 0 | 62,023,130,183 | 100% | ||
edb | 0 | 8,898,036,859 | 11.5% | ||
mow | 0 | 963,276,575 | 100% | ||
walterjay | 0 | 21,532,726,993 | 1.62% | ||
v4vapid | 0 | 1,778,302,566,494 | 11% | ||
kobold-djawa | 0 | 87,451,599,226 | 100% | ||
teammo | 0 | 274,565,610,557 | 100% | ||
oneshot | 0 | 40,679,959,993 | 100% | ||
borislavzlatanov | 0 | 12,242,678,748 | 100% | ||
danielsaori | 0 | 551,371,118,082 | 100% | ||
freebornsociety | 0 | 2,557,765,927 | 5.1% | ||
haileyscomet | 0 | 762,305,025 | 20% | ||
lizanomadsoul | 0 | 4,778,087,407 | 2% | ||
ocisly | 0 | 12,679,241,492 | 100% | ||
davidorcamuriel | 0 | 489,349,928 | 100% | ||
jdc | 0 | 769,996,991 | 15% | ||
frankydoodle | 0 | 3,438,580,556 | 25% | ||
dreamon | 0 | 502,977,461 | 11.1% | ||
kingkinslow | 0 | 1,107,503,057 | 100% | ||
whatamidoing | 0 | 928,642,226 | 4% | ||
jagged | 0 | 19,146,630,223 | 50% | ||
rt395 | 0 | 2,059,542,266 | 1.5% | ||
newsflash | 0 | 22,904,595,292 | 2.75% | ||
fredrikaa | 0 | 1,974,659,115,886 | 100% | ||
masterthematrix | 0 | 35,298,748,974 | 100% | ||
aditor | 0 | 5,541,936,421 | 100% | ||
alphacore | 0 | 73,640,584,772 | 75.11% | ||
ammonite | 0 | 320,846,810,196 | 100% | ||
firstamendment | 0 | 178,581,647,109 | 100% | ||
ewkaw | 0 | 952,708,460,459 | 35% | ||
colinhoward | 0 | 2,752,214,313 | 13% | ||
joeyarnoldvn | 0 | 472,360,641 | 1.47% | ||
grocko | 0 | 63,091,837,752 | 50% | ||
warfeed | 0 | 718,672,564 | 50% | ||
gniksivart | 0 | 73,841,642,652 | 25% | ||
thegrandestine | 0 | 574,088,807 | 71.35% | ||
felt.buzz | 0 | 12,129,074,572 | 1.62% | ||
heart-to-heart | 0 | 12,845,478,359 | 20% | ||
stayoutoftherz | 0 | 5,673,299,254,841 | 50% | ||
bambukah | 0 | 20,237,756,873 | 20% | ||
twoitguys | 0 | 8,145,681,450 | 25% | ||
holisticmom | 0 | 1,369,008,094 | 3% | ||
shanibeer | 0 | 380,830,160,027 | 20% | ||
endracsho | 0 | 5,145,192,189 | 100% | ||
zyx066 | 0 | 63,132,237,550 | 30% | ||
tribesteemup | 0 | 181,952,147,411 | 100% | ||
holbein81 | 0 | 2,389,328,519,869 | 100% | ||
aidefr | 0 | 510,770,510 | 2.6% | ||
solarsupermama | 0 | 2,188,692,447 | 11% | ||
artlover | 0 | 1,514,110,126 | 100% | ||
roleerob | 0 | 22,660,198,762 | 5% | ||
insanityisfree | 0 | 2,052,063,442 | 100% | ||
diosarich | 0 | 7,096,845,730 | 50% | ||
risemultiversity | 0 | 7,465,610,004 | 50% | ||
canadianrenegade | 0 | 10,466,094,323 | 5% | ||
steemseph | 0 | 12,721,293,335 | 10% | ||
kieranpearson | 0 | 1,735,320,997 | 33% | ||
spacesheep | 0 | 5,304,523,517 | 100% | ||
eikejanssen | 0 | 33,928,512,980 | 89% | ||
anadolu | 0 | 416,519,817,986 | 50% | ||
cre47iv3 | 0 | 7,071,146,767 | 100% | ||
dejan.vuckovic | 0 | 12,287,578,063 | 15% | ||
informationwar | 0 | 419,794,836,765 | 100% | ||
coolguy123 | 0 | 100,953,226,476 | 50% | ||
thekittygirl | 0 | 527,607,535,801 | 100% | ||
familyprotection | 0 | 747,240,390,304 | 50% | ||
eonwarped | 0 | 56,509,447,055 | 8% | ||
quekery | 0 | 2,162,229,394,427 | 50% | ||
libertyepodcast | 0 | 581,096,267 | 50% | ||
trucklife-family | 0 | 161,486,920,251 | 30% | ||
ugurarslanboga | 0 | 630,365,031 | 40% | ||
belleamie | 0 | 5,473,303,453 | 25% | ||
mytechtrail | 0 | 54,356,452,382 | 50% | ||
robotics101 | 0 | 938,599,813 | 3.25% | ||
smooms | 0 | 2,161,418,608,370 | 50% | ||
dmwh | 0 | 138,497,104,786 | 50% | ||
thedolphincocoon | 0 | 107,684,715,857 | 80% | ||
wiseagent | 0 | 12,872,579,161 | 15% | ||
eaglespirit | 0 | 9,710,945,319 | 5% | ||
daltono | 0 | 462,494,464,982 | 31% | ||
deepresearch | 0 | 286,531,289,207 | 20% | ||
sagescrub | 0 | 1,397,551,026 | 25% | ||
laritheghost | 0 | 447,591,601 | 50% | ||
moxieme | 0 | 1,386,320,617 | 20% | ||
santarius | 0 | 931,401,164 | 100% | ||
coinmeria | 0 | 764,827,071 | 35% | ||
manncpt | 0 | 3,360,247,834 | 2% | ||
empress-eremmy | 0 | 35,568,565,046 | 50% | ||
nathansenn | 0 | 1,810,215,146 | 4.5% | ||
jarvie | 0 | 1,544,500,233,002 | 100% | ||
jnmarteau | 0 | 767,328,510 | 2% | ||
the-reaper | 0 | 502,798,635 | 71.35% | ||
fieryfootprints | 0 | 47,406,450,578 | 20% | ||
cristinealimasac | 0 | 2,186,488,790 | 9% | ||
icuz | 0 | 24,941,581,842 | 100% | ||
srikandi | 0 | 3,771,213,908 | 100% | ||
kamalkhann | 0 | 1,108,824,284 | 35.67% | ||
orlandumike | 0 | 20,950,259,804 | 20% | ||
ocd-witness | 0 | 1,055,974,933,804 | 100% | ||
tomhall | 0 | 26,653,440,444 | 100% | ||
fireguardian | 0 | 648,237,313 | 20% | ||
hempress | 0 | 1,009,003,387 | 11% | ||
nataboo | 0 | 1,304,761,593 | 50% | ||
illuminaticongo | 0 | 859,883,870 | 100% | ||
asgarth | 0 | 30,561,292,311 | 100% | ||
vegan.niinja | 0 | 4,451,948,534 | 22% | ||
eugenekul | 0 | 880,907,699 | 22% | ||
homestead-guru | 0 | 38,767,126,888 | 50% | ||
supreme-verdict | 0 | 2,020,217,425 | 71.35% | ||
dumnebari | 0 | 876,451,681 | 50% | ||
didutza | 0 | 798,332,952 | 50% | ||
mindszai | 0 | 490,676,844 | 50% | ||
vcclothing | 0 | 77,603,766,575 | 100% | ||
muratkbesiroglu | 0 | 81,025,390,638 | 15% | ||
celestialcow | 0 | 5,204,304,633 | 22% | ||
ravenmus1c | 0 | 95,301,093,845 | 5% | ||
sanderjansenart | 0 | 9,327,187,568 | 5% | ||
manniman | 0 | 53,443,593,143 | 11% | ||
louis88 | 0 | 2,295,756,147,885 | 100% | ||
reversehitler88 | 0 | 13,909,761,149 | 100% | ||
racibo | 0 | 18,701,266,682 | 35% | ||
m2nnari | 0 | 5,262,261,803 | 100% | ||
gadrian | 0 | 251,282,482,081 | 30% | ||
mary-me | 0 | 2,156,055,437,693 | 50% | ||
doana | 0 | 564,314,058 | 100% | ||
imcore | 0 | 863,729,847 | 10% | ||
tsnaks | 0 | 4,211,114,732 | 100% | ||
kgakakillerg | 0 | 18,867,438,869 | 10% | ||
steemer-x | 0 | 531,437,566 | 50% | ||
santarius2 | 0 | 807,845,687 | 100% | ||
thomaskatan | 0 | 1,524,280,144 | 70% | ||
retard-gamer-de | 0 | 1,291,051,465 | 50% | ||
beco132 | 0 | 9,530,245,623 | 100% | ||
fw206 | 0 | 367,334,128,536 | 4.91% | ||
jasuly | 0 | 266,589,771 | 100% | ||
enforcer48 | 0 | 244,946,228,299 | 20% | ||
crypticat | 0 | 1,729,503,793 | 0.8% | ||
angatt | 0 | 3,593,593,663 | 50% | ||
bilimkurgu | 0 | 563,429,192 | 50% | ||
annemariemay | 0 | 489,942,783 | 50% | ||
oldmans | 0 | 57,491,216,895 | 60% | ||
cambridgeport90 | 0 | 12,416,821,270 | 50% | ||
worldwildflora | 0 | 987,077,096 | 50% | ||
commonlaw | 0 | 5,362,070,465 | 35% | ||
steempeak | 0 | 1,289,052,839,684 | 100% | ||
pooka | 0 | 2,847,715,393 | 100% | ||
gregorypatrick | 0 | 585,034,428 | 33% | ||
mlgcrypto | 0 | 536,239,481 | 50% | ||
haccolong | 0 | 2,374,397,161 | 25% | ||
newsnownorthwest | 0 | 1,984,493,268 | 15% | ||
mannacurrency | 0 | 20,279,496,730 | 10% | ||
roozeec | 0 | 500,671,156 | 10% | ||
xves | 0 | 19,148,881,405 | 50% | ||
phillyc | 0 | 1,668,901,925 | 50% | ||
hoaithu | 0 | 7,005,185,456 | 21.25% | ||
aconsciousness | 0 | 2,400,506,037 | 95% | ||
deepdives | 0 | 515,136,937,992 | 100% | ||
ozeryilmaz | 0 | 508,063,032 | 50% | ||
anhvu | 0 | 4,633,709,789 | 20% | ||
bagasadi | 0 | 2,506,371,031 | 100% | ||
engrave | 0 | 5,392,383,169,602 | 100% | ||
definethedollar | 0 | 1,843,719,294,279 | 100% | ||
wonderlamp | 0 | 857,035,934 | 50% | ||
ynwa.andree | 0 | 37,413,290,883 | 25% | ||
reteem | 0 | 922,617,663 | 25% | ||
bonnie30 | 0 | 568,680,467 | 50% | ||
suralla | 0 | 1,594,769,666 | 80% | ||
riskneutral | 0 | 11,920,338,395 | 100% | ||
nmcdougal94 | 0 | 1,438,522,808 | 10% | ||
deadcountry | 0 | 492,926,951 | 10% | ||
ladyangelwolf | 0 | 1,576,757,020 | 100% | ||
dfroberg | 0 | 857,575,146 | 50% | ||
bia.birch | 0 | 7,037,953,801 | 50% | ||
shainemata | 0 | 13,469,893,115 | 5% | ||
riyuuhi | 0 | 566,942,522 | 50% | ||
vaultec | 0 | 2,059,553,965,772 | 100% | ||
thefittest | 0 | 3,486,523,376 | 89% | ||
synergized | 0 | 10,446,487,852 | 50% | ||
steemitmonsters | 0 | 427,777,196 | 100% | ||
kggymlife | 0 | 3,696,867,270 | 20% | ||
maxsieg | 0 | 13,467,302,662 | 100% | ||
photographercr | 0 | 34,255,128,170 | 20% | ||
wenchebakken | 0 | 83,518,379,439 | 100% | ||
bigmoneyman | 0 | 586,521,231 | 33.5% | ||
nooblogger | 0 | 5,455,581,406 | 50% | ||
warrentrx | 0 | 18,356,453,243 | 100% | ||
tinyhousecryptos | 0 | 473,871,111 | 5% | ||
clownworld | 0 | 4,726,145,558 | 50% | ||
philnews.xyz | 0 | 578,840,502 | 4.5% | ||
leighscotford | 0 | 4,965,971,591 | 6.9% | ||
fighter4-freedom | 0 | 392,096,254,472 | 100% | ||
davidtron | 0 | 4,869,015,860 | 80% | ||
kaeptn-iglo | 0 | 2,227,819,314 | 50% | ||
kgswallet | 0 | 1,079,638,994 | 20% | ||
empoderat | 0 | 2,494,750,156,468 | 100% | ||
freedomring | 0 | 4,774,588,188 | 100% | ||
maddogmike | 0 | 59,352,585,825 | 50% | ||
oratione | 0 | 857,925,880 | 100% | ||
baltai | 0 | 28,182,860,666 | 12.5% | ||
bilpcoin.pay | 0 | 540,571,077 | 10% | ||
unschool | 0 | 11,813,578,172 | 100% | ||
thecontesttrain | 0 | 1,239,027,623 | 50% | ||
veryanprime | 0 | 5,625,050,146 | 100% | ||
inigo-montoya-jr | 0 | 2,535,382,621 | 85% | ||
garlet | 0 | 30,353,245,849 | 50% | ||
atma.love | 0 | 144,118,001,338 | 20% | ||
bilpcoinbpc | 0 | 820,165,725 | 5% | ||
vault.tokens | 0 | 790,054,863 | 50% | ||
adcreatordesign | 0 | 0 | 100% | ||
groove-logic | 0 | 1,433,135,604 | 25% | ||
peakd | 0 | 1,960,220,120,476 | 100% | ||
hivebuzz | 0 | 10,923,039,834 | 2% | ||
theterminal | 0 | 382,504,745,313 | 80% | ||
hivetrending | 0 | 344,432,050,734 | 100% | ||
laruche | 0 | 5,932,676,229 | 3.25% | ||
hiq | 0 | 348,286,751,005 | 50% | ||
dbuzz | 0 | 53,292,870,747 | 9% | ||
thepeakstudio | 0 | 1,128,327,844 | 50% | ||
abundance.tribe | 0 | 7,021,787,091 | 100% | ||
dbuzz.app | 0 | 3,194,510,167 | 100% | ||
louis00334 | 0 | 2,206,944,192 | 50% | ||
hivelist | 0 | 82,189,265,435 | 50% | ||
ninnu | 0 | 1,420,879,019 | 50% | ||
mangowambo | 0 | 298,312,855 | 100% | ||
kingneptune | 0 | 697,422,689 | 50% | ||
ghaazi | 0 | 5,769,596,343 | 100% | ||
hivehustlers | 0 | 68,823,565,562 | 100% | ||
profgabs05 | 0 | 314,249,932 | 50% | ||
jagged71 | 0 | 8,375,753,349 | 50% | ||
improbableliason | 0 | 1,996,386,754 | 50% | ||
zhoten | 0 | 3,228,865,140 | 100% | ||
mayifiestas | 0 | 6,232,935,225 | 100% | ||
goliathus | 0 | 2,050,168,212 | 25% | ||
nickelbunker | 0 | 0 | 100% | ||
hivetoday | 0 | 10,818,988,511 | 100% | ||
gabrieljr | 0 | 632,250,106 | 50% | ||
prometheus1881 | 0 | 507,462,057 | 50% | ||
carmate | 0 | 6,302,289,243 | 50% | ||
patriamcaritatis | 0 | 3,812,819,508 | 50% | ||
rslsaku | 0 | 1,619,613,265 | 50% | ||
damus-nostra | 0 | 14,723,108,342 | 50% | ||
abenteurer-dan | 0 | 3,088,924,936 | 50% | ||
mismo | 0 | 45,974,626,088 | 100% | ||
hiq.redaktion | 0 | 39,272,218,815 | 50% | ||
birdbeaksd | 0 | 710,044,882 | 100% | ||
n0m0refak3n3ws | 0 | 495,258,304 | 50% | ||
edwing357 | 0 | 10,610,733,457 | 100% | ||
rondonshneezy | 0 | 10,069,960,839 | 50% | ||
dadspardan | 0 | 20,503,620,005 | 50% | ||
eldritchspig | 0 | 653,440,172 | 50% | ||
cescajove | 0 | 13,496,010,998 | 50% | ||
huzzah | 0 | 37,675,873,668 | 100% | ||
cooperclub | 0 | 1,363,230,554 | 50% | ||
cowboyphylosophy | 0 | 28,417,183,180 | 75% | ||
bigtooth | 0 | 757,885,748 | 100% | ||
nyxlabs | 0 | 8,670,925,585 | 50% | ||
mythix | 0 | 76,108,107,729 | 100% | ||
creodas | 0 | 3,042,664,154 | 75% | ||
failingforward | 0 | 1,107,646,380 | 40% | ||
rendrianarma | 0 | 2,145,229,495 | 50% | ||
amaari | 0 | 328,496,359 | 100% | ||
hive.pizza | 0 | 2,403,543,494,801 | 100% | ||
agmasz | 0 | 544,598,302 | 12.5% | ||
imno | 0 | 35,449,317,036 | 20% | ||
leveluplifestyle | 0 | 25,263,939,215 | 50% | ||
nfttunz | 0 | 387,610,806,455 | 25% | ||
madsbert | 0 | 702,821,019 | 89% | ||
pizzabot | 0 | 6,613,853,418 | 100% | ||
dajokawild | 0 | 18,834,874,368 | 50% | ||
okluvmee | 0 | 50,210,193,652 | 50% | ||
olebulls | 0 | 212,283,348,268 | 100% | ||
louis.pay | 0 | 1,773,234,467 | 100% | ||
threedotz | 0 | 613,717,507 | 16% | ||
mythix.market | 0 | 66,444,783,587 | 100% | ||
jdike | 0 | 15,940,811,557 | 100% | ||
shanhenry | 0 | 3,079,297,625 | 100% | ||
meesterbrain | 0 | 1,385,092,362 | 100% | ||
aguamiel | 0 | 2,509,152,846 | 10% | ||
hankanon | 0 | 8,382,682,610 | 20% | ||
john9inch | 0 | 2,820,328,571 | 50% | ||
szmobacsi | 0 | 1,786,984,363 | 90% | ||
delver | 0 | 46,980,973,939 | 100% | ||
onthemountain | 0 | 500,538,807 | 50% | ||
r0nny | 0 | 44,461,862,585 | 50% | ||
mythix.token | 0 | 41,513,474,281 | 100% | ||
ebike-adventure | 0 | 1,099,864,125 | 50% | ||
sstdd | 0 | 1,029,496,500 | 100% | ||
andriko | 0 | 809,446,490 | 100% | ||
untzuntzuntz | 0 | 11,618,321,591 | 50% | ||
olympicdragon | 0 | 577,858,409 | 100% | ||
avidez | 0 | 807,219,195 | 50% | ||
elyelma | 0 | 3,779,822,329 | 50% | ||
ivario | 0 | 628,310,096 | 100% | ||
mozzie5 | 0 | 9,116,090,144 | 50% | ||
onewolfe | 0 | 993,422,057 | 50% | ||
speko | 0 | 17,738,061,288 | 25% | ||
banzafahra | 0 | 7,208,782,879 | 50% | ||
acantoni | 0 | 14,006,085,914 | 50% | ||
mcgilli | 0 | 733,425,178 | 100% | ||
trasto | 0 | 3,513,625,596 | 50% | ||
tarabh | 0 | 4,644,686,790 | 100% | ||
dstampede | 0 | 423,645,519 | 50% | ||
arc7icwolf | 0 | 11,857,638,360 | 25% | ||
techguard | 0 | 667,633,139 | 10% | ||
michupa | 0 | 663,441,982 | 2.5% | ||
thercek | 0 | 863,336,239 | 50% | ||
nane-qts | 0 | 7,504,932,789 | 100% | ||
nikita200 | 0 | 505,203,343 | 50% | ||
centtoken | 0 | 399,624,820,871 | 50% | ||
epicur0 | 0 | 2,876,695,855 | 100% | ||
hiq.magazine | 0 | 947,718,958,946 | 50% | ||
h3m4n7 | 0 | 25,192,221,776 | 90% | ||
spiritverve | 0 | 15,184,367,283 | 100% | ||
thedoc07 | 0 | 5,040,009,477 | 50% | ||
tillmea | 0 | 526,603,821 | 100% | ||
tydynrain | 0 | 10,634,332,114 | 10% | ||
kqaosphreak | 0 | 6,623,454,682 | 100% | ||
fractoli | 0 | 1,383,544,001 | 100% | ||
rc-assist | 0 | 14,699,348,353 | 70% | ||
attentionneeded | 0 | 559,622,090 | 10% | ||
willkomo | 0 | 744,485,595 | 100% | ||
cherute | 0 | 3,134,870,548 | 50% | ||
crypt0gnome | 0 | 129,013,199,289 | 50% | ||
lothbrox | 0 | 3,301,884,457 | 100% | ||
zeclipse | 0 | 3,097,366,332 | 100% | ||
reenave | 0 | 3,020,224,139 | 37% | ||
highfist | 0 | 2,864,835,505 | 50% | ||
kvinna | 0 | 1,501,451,162,806 | 89% | ||
blocktunes | 0 | 4,620,106,260 | 10% | ||
studio3141 | 0 | 509,885,622 | 50% | ||
davidosunamusic | 0 | 5,254,261,232 | 100% | ||
investinfreedom | 0 | 64,499,504,093 | 100% | ||
johndieo | 0 | 25,727,809,128 | 100% | ||
macaw | 0 | 19,188,078,474 | 100% | ||
dalekma | 0 | 1,635,503,900 | 100% | ||
elkingplayer | 0 | 1,223,736,161 | 100% | ||
incantia | 0 | 758,693,870 | 70% | ||
prosocialise | 0 | 85,078,317,942 | 50% | ||
jfuji | 0 | 88,658,980,377 | 100% | ||
plicc8 | 0 | 662,737,313 | 100% | ||
dollayah | 0 | 2,789,961,512 | 99% | ||
matthewbox | 0 | 72,825,952,522 | 100% | ||
mdasein | 0 | 4,237,917,120 | 50% | ||
resonator | 0 | 33,509,118,724,586 | 100% | ||
hmvf | 0 | 30,707,101,241 | 5% | ||
sabajfa | 0 | 9,002,852,863 | 50% | ||
youdontknowme | 0 | 821,653,398 | 4.5% | ||
hiq.shares | 0 | 5,272,384,962 | 50% | ||
drstealth | 0 | 2,165,042,250 | 100% | ||
wittyzell | 0 | 24,825,596,086 | 75% | ||
richardslater | 0 | 1,624,877,773 | 4.5% | ||
badge-428571 | 0 | 711,356,934 | 50% | ||
mugglow | 0 | 497,990,864 | 100% | ||
the13anarchist | 0 | 971,466,784 | 7.75% | ||
jeansapphire | 0 | 1,079,867,692 | 4.5% | ||
naniplayergamer | 0 | 498,415,971 | 2.7% | ||
biyaawnur | 0 | 1,540,330,312 | 86.6% | ||
jagjnr | 0 | 1,819,129,078 | 50% | ||
pinkchic | 0 | 2,594,968,505 | 4% | ||
salicj | 0 | 7,333,027,144 | 16% | ||
hiq.witness | 0 | 76,194,737,930 | 50% | ||
brain71 | 0 | 12,730,839,804 | 50% | ||
yzamazing | 0 | 2,850,170,989 | 40% | ||
masterfarmer | 0 | 1,587,642,443 | 100% | ||
bolsadeplomo | 0 | 14,065,223,195 | 100% | ||
slothbuzz | 0 | 16,345,932,551 | 50% | ||
sassy.cebuana | 0 | 2,237,387,199 | 50% | ||
blocktunesdao | 0 | 641,196,380 | 10% | ||
craftink | 0 | 982,749,463,859 | 50% | ||
lu1sa | 0 | 62,195,800,254 | 50% | ||
dimeilaz | 0 | 34,215,620,654 | 100% | ||
dahpilot | 0 | 16,872,020,527 | 100% | ||
slothburn | 0 | 11,104,389,101 | 50% | ||
hive-173296 | 0 | 2,059,861,682 | 50% | ||
mystic.realms | 0 | 485,614,343 | 90% | ||
awesomeintrigue | 0 | 413,637,135 | 40% | ||
hive-shop | 0 | 900,700,541 | 50% | ||
matisport | 0 | 9,159,665,152 | 100% | ||
mizzmomoz | 0 | 2,328,473,131 | 100% | ||
hive-bounty | 0 | 5,230,702,706 | 89% | ||
creativecuisine | 0 | 12,083,728,749 | 10% | ||
hive-learn.more | 0 | 760,325,359 | 100% | ||
thezyppi | 0 | 21,132,059,089 | 89% | ||
coinjoe | 0 | 13,160,479,273 | 16% | ||
aslamrer | 0 | 11,335,638,084 | 50% | ||
hivetoolsio | 0 | 2,160,646,361 | 89% | ||
hpud.wettbewerb | 0 | 3,312,240,866 | 100% | ||
bihutnetwork | 0 | 3,450,901,914 | 50% | ||
mita3 | 0 | 6,899,580,243 | 100% | ||
dpservice | 0 | 424,323,550,488 | 9% | ||
willowink | 0 | 8,125,544,552 | 100% | ||
yummycruz1 | 0 | 605,275,783 | 50% | ||
empo.voter | 0 | 4,471,896,770,537 | 50% | ||
white-cloud-inc | 0 | 108,479,678,015 | 100% | ||
reyn-is-chillin | 0 | 735,241,754 | 50% | ||
riseofthepixels | 0 | 9,531,557,781 | 100% | ||
madilyn02 | 0 | 4,015,501,354 | 100% | ||
bigosik | 0 | 366,112,858 | 80% | ||
yourcap | 0 | 8,837,500,180 | 100% | ||
iamjco | 0 | 0 | 9% | ||
pixels.vault | 0 | 245,943,939,305 | 100% | ||
cultdaoist | 0 | 0 | 100% | ||
toopacker | 0 | 0 | 100% | ||
latman145 | 0 | 0 | 100% |
We would simplify this by removing `end_time`, `content_type` and `filters`, rename `preferred_interpretation` to plain `interpretation`. Also interpretation kinda already does the filtering, end_time could be when post payout which means 7*24 hours from time of publish, so no need to over complicate the logic. Also this json should inside json_metadata, not entire json_metadata but part of it `json_metadata:{..... poll: {} }` ``` { "version": "0.1", "question": "How many polls do you want to see per day?", "choices": ["Less than 1", 1, 2, "three", "4-ish", "V", "six", 7, "e8t", "nine", 10, "10+"], "interpretation": "tokens", "token": "HIVE:HP" } ``` Also would be beneficial if UI sends token data at the time of casting. custom json id could be just `poll`, `action` is unnecessary. Also perhaps instead of poll id, use author/permlink as it is already part of unique post?! ``` { id: 'poll', json: { "author": "demo", "permlink: "test", "choice": 1 "extras" : "200000 VESTS" } } ```
author | ecency |
---|---|
permlink | re-peakopen-2024310t142031966z |
category | hive-139531 |
json_metadata | {"tags":[],"app":"ecency/3.1.0-vision","format":"markdown+html"} |
created | 2024-03-10 08:50:33 |
last_update | 2024-03-10 10:36:00 |
depth | 1 |
children | 14 |
last_payout | 2024-03-17 08:50:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,030 |
author_reputation | 618,467,675,523,607 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 131,932,989 |
net_rshares | 12,099,811,883 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 12,099,811,883 | 100% |
Great, thank you for looking into this and providing feedback. Any opportunity to simplify things is good. Let's see if we can. This setup was made so that it can allow more features to be added in the future. Let's go over what you mentioned one by one to see if it makes sense how it is currently specified or we can improve. - `end_time` - it is not meant to be the same as the post payout time. Someone creating a poll may decide to have the poll running for 30 days, or one year, or without end. So this field allows for that. - `content_type` - we can remove it, sure. But the point is to have a unified standard for all of Hive. Make a post with `content_type` in the json_metadata, so all frontends know how to recognize that it is not a regular blog post. HafSQL has also added an index for this. `content_type` can be `poll`, and in the future we can have `job-opening`, `product` and so on. Let's think about how to create standards and processes for all of Hive, to facilitate future growth and ease of development. - `filters` - this field gives the ability to add various kinds of filters. The one we have already is a restriction on account age - votes of accounts under the minimum age will not be counted. There are also filters planned for membership in a community and so on. So poll creators can pick any filters they want. - `preferred_interpretation` - indeed the name seems too long. The point is to make it clear that this is the interpretation preferred by the poll creator. But it is planned to add to the UI the ability to see other interpretations. For example, the poll creator chose to interpret votes by HP, and to filter out account under 1000 HP, but the UI will allow people to see what the poll results would have been if there was another interpretation and other filters chosen. This can help with decentralized governance decisions. For example, there is interest from the Splinterlands community in using this system for making and voting on proposals. - There can still be any arbitrary fields in the json_metadata besides the poll fields. So it doesn't restrict from adding anything. But if for some reason it would be better to nest all the poll data under its own field, then we could do that, for example `content_type: poll: {}`. - `action` in the custom_json gives us flexibility for other actions in the future. One planned action is to add new choices to a poll. It is planned to make a poll setting that allows users to add choices to the poll. - custom_json id could be just `poll`, sure. It seems more polluted already, whereas `polls` seems unused. And it seems to better refer to the Open Polls Protocol. > Also would be beneficial if UI sends token data at the time of casting Which token data - the user's token balance? > Also perhaps instead of poll id, use author/permlink as it is already part of unique post?! Sure, probably a bit of a matter of taste whether to use trx_id or author/permlink. One consideration is which one would be shorter (so that we keep blockchain bloat to a minimum, as much as possible), and trx_id would seem shorter on average.
author | borislavzlatanov |
---|---|
permlink | re-ecency-sa6rp6 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.2.1"} |
created | 2024-03-11 13:48:42 |
last_update | 2024-03-11 13:48:42 |
depth | 2 |
children | 3 |
last_payout | 2024-03-18 13:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,120 |
author_reputation | 23,524,553,018,532 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 131,966,069 |
net_rshares | 0 |
`end_time` better wording perhaps `expires`, `content_type` could stay as an expansion idea I agree. `preferred_interpretation` just `interpretation` conveys the same meaning I think. Filters and actions still over complicating the system, imo. > Which token data - the user's token balance? Yes, as it is easy for UI to fetch and send that data instead of backend handling it which wouldn't be optimal.
author | ecency |
---|---|
permlink | re-borislavzlatanov-2024311t195141525z |
category | hive-139531 |
json_metadata | {"tags":[],"app":"ecency/3.1.0-vision","format":"markdown+html"} |
created | 2024-03-11 14:21:42 |
last_update | 2024-03-11 14:23:06 |
depth | 3 |
children | 2 |
last_payout | 2024-03-18 14:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 406 |
author_reputation | 618,467,675,523,607 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 131,966,860 |
net_rshares | 0 |
@borislavzlatanov, you are working on this? ^
author | ecency |
---|---|
permlink | re-ecency-2024310t14404192z |
category | hive-139531 |
json_metadata | {"tags":[],"app":"ecency/3.1.0-vision","format":"markdown+html"} |
created | 2024-03-10 09:10:42 |
last_update | 2024-03-10 09:10:42 |
depth | 2 |
children | 9 |
last_payout | 2024-03-17 09:10:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 618,467,675,523,607 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 131,933,235 |
net_rshares | 0 |
Yes. Would you be interested in implementing a polls feature?
author | borislavzlatanov |
---|---|
permlink | re-ecency-sa6rq8 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.2.1"} |
created | 2024-03-11 13:49:21 |
last_update | 2024-03-11 13:49:21 |
depth | 3 |
children | 8 |
last_payout | 2024-03-18 13:49:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 23,524,553,018,532 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 131,966,083 |
net_rshares | 0 |
Congratulations @peak.open! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s) <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@peak.open/upvoted.png?202401260448"></td><td>You received more than 6000 upvotes.<br>Your next target is to reach 7000 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@peak.open) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>
author | hivebuzz |
---|---|
permlink | notify-peakopen-20240126t050138 |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2024-01-26 05:01:39 |
last_update | 2024-01-26 05:01:39 |
depth | 1 |
children | 0 |
last_payout | 2024-02-02 05:01:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 630 |
author_reputation | 370,318,135,348,319 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,784,955 |
net_rshares | 0 |
Great! Shared this on the HiveToday X feed. https://x.com/HiveToday/status/1750202121369346305?s=20
author | hivetoday |
---|---|
permlink | re-peakopen-s7rzap |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 17:01:36 |
last_update | 2024-01-24 17:01:36 |
depth | 1 |
children | 0 |
last_payout | 2024-01-31 17:01:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 76,193,003,327,065 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,743,843 |
net_rshares | 11,587,527,800 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 11,587,527,800 | 100% |
Great stuff! Is this already integrated into PeakD?
author | hivetrending |
---|---|
permlink | re-peakopen-s7rya7 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 16:39:42 |
last_update | 2024-01-24 16:39:42 |
depth | 1 |
children | 1 |
last_payout | 2024-01-31 16:39:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.054 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 73,034,118,030,806 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,743,425 |
net_rshares | 261,525,140,184 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 11,824,505,720 | 100% | ||
peakd | 0 | 249,700,634,464 | 13% | ||
latman145 | 0 | 0 | 100% |
Not yet. Hopefully soon.
author | borislavzlatanov |
---|---|
permlink | re-hivetrending-s7s5o8 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 19:19:21 |
last_update | 2024-01-24 19:19:21 |
depth | 2 |
children | 0 |
last_payout | 2024-01-31 19:19:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.134 HBD |
curator_payout_value | 0.134 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 23,524,553,018,532 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,746,938 |
net_rshares | 636,179,834,472 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
peakd | 0 | 295,876,606,986 | 16% | ||
hivetrending | 0 | 339,807,052,517 | 100% | ||
bihutnetwork | 0 | 496,174,969 | 8% | ||
latman145 | 0 | 0 | 100% |
This makes a ton of sense! Thanks for the work on the project :)
author | iviaxpow3r |
---|---|
permlink | re-peakopen-s7rxjh |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 16:23:42 |
last_update | 2024-01-24 16:23:42 |
depth | 1 |
children | 0 |
last_payout | 2024-01-31 16:23:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.054 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 6,791,800,915,590 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,743,074 |
net_rshares | 261,119,291,158 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 12,065,971,491 | 100% | ||
peakd | 0 | 249,053,319,667 | 13% | ||
latman145 | 0 | 0 | 100% |
Some feature adds to consider—some of this may already be in the protocol (my fault if I overlooked): * **Vote creation option: show/hide list of voters.** All is on chain anyway, so there's no real anonymous voting but varying levels of access to the voting records could have QOL usecases. * **Search records:** show a user’s voting history, vote creation history * **Schedule votes** (allow for time delay before voting can occur, e.g. status: upcoming) * **Ad-hoc analyses (could be tricky / API heavy?)** E.g. Show representation of community (x% of wallets w/ more than Y stake participated). Express vote results as if they were, say, Hive Power votes to compare your selected Layer2 token results to other weightings. All sorts of fun data things one could add on for fun haha.
author | jfuji |
---|---|
permlink | re-peakopen-2024124t132124150z |
category | hive-139531 |
json_metadata | {"tags":["polls","voting","haf","dev","peakopenprojects","opensource","hive"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2024-01-24 18:21:24 |
last_update | 2024-01-24 18:21:24 |
depth | 1 |
children | 2 |
last_payout | 2024-01-31 18:21:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.078 HBD |
curator_payout_value | 0.078 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 787 |
author_reputation | 167,567,571,301,729 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,745,729 |
net_rshares | 375,052,854,494 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 11,357,850,414 | 100% | ||
peakd | 0 | 363,086,420,790 | 19% | ||
bihutnetwork | 0 | 608,583,290 | 9.5% |
Various kinds of analysis are definitely planned. Showing and hiding things will definitely be possible. Those who want to can dive into more detail. > Schedule votes (allow for time delay before voting can occur, e.g. status: upcoming) Hmm, haven't thought of this. How do you think it could be useful? Let's see if more people will be interested in something like it.
author | borislavzlatanov |
---|---|
permlink | re-jfuji-s7s5xn |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 19:25:00 |
last_update | 2024-01-24 19:25:00 |
depth | 2 |
children | 1 |
last_payout | 2024-01-31 19:25:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.118 HBD |
curator_payout_value | 0.117 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 373 |
author_reputation | 23,524,553,018,532 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,747,052 |
net_rshares | 559,134,078,711 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
peakd | 0 | 558,156,929,245 | 30% | ||
bihutnetwork | 0 | 977,149,466 | 15% |
> How do you think it could be useful? Possibly in a case where I want to work on building hype for a poll, but I don't want a trickle of early votes to sway anyone. Set a time and time limit to vote, so that it all happens within a controlled time frame. I doubt this is a massive in-demand use case though—agree with gauging demand from people first :)
author | jfuji |
---|---|
permlink | re-borislavzlatanov-2024124t165056527z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2024-01-24 21:50:57 |
last_update | 2024-01-24 21:50:57 |
depth | 3 |
children | 0 |
last_payout | 2024-01-31 21:50:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 357 |
author_reputation | 167,567,571,301,729 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,750,385 |
net_rshares | 11,618,646,570 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 11,618,646,570 | 100% | ||
latman145 | 0 | 0 | 100% |
> future use cases The Scholar & Scribe team has discussed using staked SCRIBE or SCHOLAR tokens polls to run 'Users Choose The Adventure' stories. @thinkrdotexe [ran something like this manually](https://peakd.com/hive-199275/@thinkrdotexe/the-hunters-instinct-a-choose-your-own-adventure-serial-novella), using comments as the votes. But having the L2 community tokens involved at a functional level would be reallllly neat. Based on what's been described here, I think that this use case is already "ready" since it's pretty simple, but thought I'd shared anyway. 😀
author | jfuji |
---|---|
permlink | re-peakopen-s7rwt6 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 16:07:54 |
last_update | 2024-01-24 16:07:54 |
depth | 1 |
children | 4 |
last_payout | 2024-01-31 16:07:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.246 HBD |
curator_payout_value | 0.245 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 570 |
author_reputation | 167,567,571,301,729 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,742,676 |
net_rshares | 1,166,581,322,105 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 493,018,360,135 | 5% | ||
holbein81 | 0 | 117,055,694,314 | 5% | ||
peakd | 0 | 542,675,118,552 | 29% | ||
iviaxpow3r | 0 | 12,886,398,845 | 100% | ||
bihutnetwork | 0 | 945,750,259 | 14.5% |
This would be great for zing stakeholder polling as well!
author | acidyo |
---|---|
permlink | re-jfuji-s7s1vl |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 17:57:18 |
last_update | 2024-01-24 17:57:18 |
depth | 2 |
children | 2 |
last_payout | 2024-01-31 17:57:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 3,333,641,184,487,350 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,745,199 |
net_rshares | 87,054,499,315 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jfuji | 0 | 87,054,499,315 | 100% |
For sure! It basically gives an instant utility boost to every stakeable L2 token.
author | jfuji |
---|---|
permlink | re-acidyo-2024124t131632863z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2024-01-24 18:16:33 |
last_update | 2024-01-24 18:16:33 |
depth | 3 |
children | 1 |
last_payout | 2024-01-31 18:16:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.074 HBD |
curator_payout_value | 0.074 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 167,567,571,301,729 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,745,616 |
net_rshares | 354,978,108,521 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 286,880,753,770 | 3% | ||
holbein81 | 0 | 68,097,354,751 | 3% |
That's an awesome idea! I love it
author | iviaxpow3r |
---|---|
permlink | re-jfuji-s7rxkg |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 16:24:15 |
last_update | 2024-01-24 16:24:15 |
depth | 2 |
children | 0 |
last_payout | 2024-01-31 16:24:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.040 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 6,791,800,915,590 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,743,090 |
net_rshares | 195,168,174,517 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jfuji | 0 | 88,832,142,158 | 100% | ||
white-cloud-inc | 0 | 106,336,032,359 | 100% |
Well done
author | latman145 |
---|---|
permlink | re-peakopen-sa343i |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.2.1"} |
created | 2024-03-09 14:26:18 |
last_update | 2024-03-09 14:26:18 |
depth | 1 |
children | 0 |
last_payout | 2024-03-16 14:26:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 0 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 131,916,933 |
net_rshares | 0 |
Awesome! A long time needed Feature on the Hive Blockchain and i like the Solution to bring it to the Protocol so other Dapps/Frontends can easily integrate it in to their application. Some ideas i directly i have in mind for the filters to widen up the range of usecases: - filter up by reputation i.e: only accounts with reputation over 30 can vote - filter up by dapps: i.e: Splinterlands Polls - people can only vote if they are currently in the Champions League in Modern - or Accounts can vote if they have a bought Spellbook - or participating in Brawls, Land, Conflicts... - filter up by Post-Vote i.e: Count a Vote if a Vote on a Post was already made - filter up by HE-Pools i.e: if you are a liquidity provider in a given pool. cant wait to play with it / try to break things. hit me up for testing guys! **Awesome!!!!** Edit: Maybe add up a Pre-Check if the User met all the Requirements before posting the json to chain. Edit 2: Filter Up by Follower. People can only Vote if they follow you. Edit 3: People can only vote if they were active in the last 30 days in a specific community.
author | louis88 |
---|---|
permlink | re-peakopen-s7rxlr |
category | hive-139531 |
json_metadata | {"tags":"hive-139531"} |
created | 2024-01-24 16:25:03 |
last_update | 2024-01-24 16:31:15 |
depth | 1 |
children | 4 |
last_payout | 2024-01-31 16:25:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.221 HBD |
curator_payout_value | 0.219 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,104 |
author_reputation | 1,178,478,983,607,595 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,743,105 |
net_rshares | 1,048,049,911,919 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jaki01 | 0 | 217,710,847,412 | 15% | ||
borislavzlatanov | 0 | 12,242,678,748 | 100% | ||
zekepickleman | 0 | 182,177,973,537 | 50% | ||
antisocialist | 0 | 217,183,800,833 | 30% | ||
manniman | 0 | 24,437,244,995 | 5% | ||
fitnessgourmet | 0 | 766,837,364 | 100% | ||
patlog | 0 | 792,934,398 | 100% | ||
peakd | 0 | 375,736,932,079 | 20% | ||
razorshark | 0 | 737,789,082 | 100% | ||
money.finance | 0 | 15,624,799,803 | 100% | ||
bihutnetwork | 0 | 638,073,668 | 10% |
Great suggestions, thank you. Some will be more difficult to do than others. > filter up by Post-Vote i.e: Count a Vote if a Vote on a Post was already made Do you mean that if someone upvotes the post, then the upvote would count as a vote on the poll? > Edit: Maybe add up a Pre-Check if the User met all the Requirements before posting the json to chain. Yes, it would be good for better user experience if the frontend can let the user know if all filter requirements are met, or if not, which ones aren't. But, of course, we cannot prevent users from posting a custom_json if they want to do it manually. If it doesn't meet the filters, we will just ignore the custom_json.
author | borislavzlatanov |
---|---|
permlink | re-louis88-s7s403 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 18:43:18 |
last_update | 2024-01-24 18:43:18 |
depth | 2 |
children | 0 |
last_payout | 2024-01-31 18:43:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.086 HBD |
curator_payout_value | 0.086 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 684 |
author_reputation | 23,524,553,018,532 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,746,188 |
net_rshares | 408,921,452,115 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
louis88 | 0 | 114,603,437,871 | 5% | ||
peakd | 0 | 293,823,722,472 | 16% | ||
bihutnetwork | 0 | 494,291,772 | 8% |
I agree that it sounds very interesting, but in my eyes HIVE reputation hasn't any meaning at all. > Edit 2: Filter Up by Follower. People can only Vote if they follow you. Or also (and maybe most of the time more reasonable) if YOU follow THEM ... (otherwise everybody could just decide to follow you for a minute, vote, and then unfollow you again - of course you could set a criteria of a min duration of following you). Most important, however, is that there will be poll options in which not only money matters - so I fully agree with you that it could become a very nice tool.
author | jaki01 |
---|---|
permlink | re-louis88-s7rysl |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 16:50:45 |
last_update | 2024-01-24 17:06:42 |
depth | 2 |
children | 1 |
last_payout | 2024-01-31 16:50:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.136 HBD |
curator_payout_value | 0.136 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 585 |
author_reputation | 537,326,033,324,168 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,743,639 |
net_rshares | 645,643,204,128 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tangmo | 0 | 201,442,888,821 | 100% | ||
antisocialist | 0 | 218,467,499,686 | 30% | ||
louis88 | 0 | 225,732,815,621 | 10% |
> Most important, however, is that there will be poll options in which not only money matters Indeed. One possibility will be that anyone can create a token and distribute it according to whatever algorithm or system they desire to use or to experiment with. This will then become the voting power or decision-making influence that people have. This can perhaps help us find other paradigms beyond proof-of-work and proof-of-stake (even if technically you have staked a token, you may have received it not because you locked in money but because you e.g. made a certain kind of contribution that was recognized by the community).
author | borislavzlatanov |
---|---|
permlink | re-jaki01-s7s4ch |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 18:50:42 |
last_update | 2024-01-24 18:50:42 |
depth | 3 |
children | 0 |
last_payout | 2024-01-31 18:50:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.140 HBD |
curator_payout_value | 0.140 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 631 |
author_reputation | 23,524,553,018,532 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,746,317 |
net_rshares | 665,769,655,151 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jaki01 | 0 | 228,188,981,262 | 15% | ||
peakd | 0 | 350,250,232,442 | 19% | ||
jfuji | 0 | 86,732,870,948 | 100% | ||
bihutnetwork | 0 | 597,570,499 | 9.5% |
All of these filters would have to be done at a level outside the blockchain: The application backend or the application front-end.
author | leprechaun |
---|---|
permlink | re-louis88-2024127t84650811z |
category | hive-139531 |
json_metadata | {"tags":"hive-139531","app":"proofofbrain-blog/3.0.30-vision","format":"markdown+html"} |
created | 2024-01-27 11:46:51 |
last_update | 2024-01-27 11:46:51 |
depth | 2 |
children | 0 |
last_payout | 2024-02-03 11:46:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 43,003,961,497,973 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,817,501 |
net_rshares | 0 |
Handling will be done on HAF level or is it just set the standard and provide some toolkit?
author | manniman |
---|---|
permlink | re-peakopen-s7s6sl |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 19:43:33 |
last_update | 2024-01-24 19:43:33 |
depth | 1 |
children | 2 |
last_payout | 2024-01-31 19:43:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.037 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 77,790,724,868,389 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,747,512 |
net_rshares | 181,803,154,212 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 10,490,580,588 | 100% | ||
peakd | 0 | 171,312,573,624 | 9% | ||
latman145 | 0 | 0 | 100% |
Yes, the backend is built as a HAF app.
author | borislavzlatanov |
---|---|
permlink | re-manniman-s7scio |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 21:47:12 |
last_update | 2024-01-24 21:47:12 |
depth | 2 |
children | 1 |
last_payout | 2024-01-31 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.011 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 23,524,553,018,532 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,750,267 |
net_rshares | 56,890,816,157 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
manniman | 0 | 49,074,316,939 | 11% | ||
mannimanccadm | 0 | 7,816,499,218 | 100% | ||
latman145 | 0 | 0 | 100% |
dope <br /><br /> Posted via <a href="https://d.buzz" data-link="promote-link">D.Buzz</a>
author | manniman |
---|---|
permlink | re-gy6kv6x9i5n34hlejw0jwg |
category | hive-139531 |
json_metadata | {"app":"dBuzz/v3.0.0","tags":[],"shortForm":true} |
created | 2024-01-24 22:07:18 |
last_update | 2024-01-24 22:07:18 |
depth | 3 |
children | 0 |
last_payout | 2024-01-31 22:07:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 77,790,724,868,389 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,751,045 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
latman145 | 0 | 0 | 100% |
<center>PIZZA! The Hive.Pizza team manually curated this post. <sub>Please <a href="https://vote.hive.uno/@pizza.witness">vote for pizza.witness</a>!</sub></center>
author | pizzabot |
---|---|
permlink | re-open-polls-protocol-initial-version-20240124t163555z |
category | hive-139531 |
json_metadata | "{"app": "pizzabot"}" |
created | 2024-01-24 16:35:54 |
last_update | 2024-01-24 16:35:54 |
depth | 1 |
children | 0 |
last_payout | 2024-01-31 16:35:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 166 |
author_reputation | 7,515,994,039,033 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,743,343 |
net_rshares | 0 |
LeoFinance had polls in Threads, but I believe that is not currently available. Are you coordinating with them on this feature? We need such things to work across dapps. I hope the various teams are talking. I know there has been some communication via the Town Hall calls.
author | steevc |
---|---|
permlink | re-peakopen-s7s1lf |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 17:51:15 |
last_update | 2024-01-24 17:51:15 |
depth | 1 |
children | 3 |
last_payout | 2024-01-31 17:51:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.086 HBD |
curator_payout_value | 0.085 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 275 |
author_reputation | 1,379,774,457,467,719 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,745,084 |
net_rshares | 406,410,379,329 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
peakd | 0 | 320,450,603,590 | 17% | ||
jfuji | 0 | 85,423,934,273 | 100% | ||
bihutnetwork | 0 | 535,841,466 | 8.5% |
We looked at the various efforts so far at creating polling systems on Hive. And then we decided to work on an open protocol which nobody owns and has nobody's brand, and could be easily implemented by all frontends. Another aspect of this is that for more substantial governance voting, a full post would allow for presenting with more elaboration the matter being voted on. The post is also integrated with the communities functionalities. It allows for more structured commenting underneath the post. And so on.
author | borislavzlatanov |
---|---|
permlink | re-steevc-s7s5mq |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-24 19:18:27 |
last_update | 2024-01-24 19:18:27 |
depth | 2 |
children | 0 |
last_payout | 2024-01-31 19:18:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.182 HBD |
curator_payout_value | 0.181 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 517 |
author_reputation | 23,524,553,018,532 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,746,916 |
net_rshares | 859,586,054,274 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 78,982,396,491 | 3% | ||
peakd | 0 | 779,235,094,697 | 41% | ||
bihutnetwork | 0 | 1,368,563,086 | 20.5% |
I remember InLeo reps talking about implementing stake weighted polling a while ago. Not sure where they are on that though! > I hope the various teams are talking. Not super likely, I'd guess. There are a lot of little silos in Hive... natural human behaviour. I'd be happy to be proven very wrong though. And I am aware of several collab efforts, I just doubt it's the norm.
author | jfuji |
---|---|
permlink | re-steevc-2024124t132310228z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2024-01-24 18:23:09 |
last_update | 2024-01-24 18:23:09 |
depth | 2 |
children | 1 |
last_payout | 2024-01-31 18:23:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 378 |
author_reputation | 167,567,571,301,729 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,745,766 |
net_rshares | 78,631,100,915 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 78,631,100,915 | 3% |
Given how small Hive is we can't afford too much incompatibility. It's going to save work to use what others have already designed. We shall see.
author | steevc |
---|---|
permlink | re-jfuji-2024124t185130893z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531"],"app":"ecency/3.0.44-mobile","format":"markdown+html"} |
created | 2024-01-24 18:51:30 |
last_update | 2024-01-24 18:51:30 |
depth | 3 |
children | 0 |
last_payout | 2024-01-31 18:51:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 145 |
author_reputation | 1,379,774,457,467,719 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,746,335 |
net_rshares | 0 |
Thanks for this - its a really important feature for a variety of reasons. **My 2 cents:** There is a general issue with the visibility of historic posts on Hive sites (and web 2 sites too) - finding older posts is more difficult than it needs to be. With that in mind, it would be great to have pages/areas added to the main peakD UI to both help us discover other people's polls (a page or filter for polls) and also to look at the results of our own older polls (e.g. a new area in the 'dashboard' area). If I run a series of identical polls over time, it would be necessary for me to both easily locate the series of polls and also to combine the data from them easily, perhaps into graphs. This is something that I have never seen on any poll systems in web 2 sites and it wouldn't be difficult to add to Hive sites at all.
author | ura-soul |
---|---|
permlink | re-peakopen-s7vatx |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-26 12:03:39 |
last_update | 2024-01-26 12:03:39 |
depth | 1 |
children | 3 |
last_payout | 2024-02-02 12:03:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 831 |
author_reputation | 844,446,158,536,777 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,791,450 |
net_rshares | 12,031,095,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 12,031,095,249 | 100% |
Thanks for the suggestions, and the ability to find and visualize polls will be quite important, for sure. We would want to implement this on the backend, as much as possible, so that all frontends can easily add the same capabilities.
author | borislavzlatanov |
---|---|
permlink | re-ura-soul-s7vu7a |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-26 19:01:57 |
last_update | 2024-01-26 19:01:57 |
depth | 2 |
children | 2 |
last_payout | 2024-02-02 19:01:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.027 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 236 |
author_reputation | 23,524,553,018,532 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,800,330 |
net_rshares | 135,109,358,843 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ura-soul | 0 | 135,109,358,843 | 100% |
I think the introduction of a group field for the poll creation operation (in that metadata) would solve this issue nicely.
author | leprechaun |
---|---|
permlink | re-borislavzlatanov-2024127t85117201z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"proofofbrain-blog/3.0.30-vision","format":"markdown+html"} |
created | 2024-01-27 11:51:18 |
last_update | 2024-01-27 11:51:18 |
depth | 3 |
children | 0 |
last_payout | 2024-02-03 11:51:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 43,003,961,497,973 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,817,575 |
net_rshares | 0 |
Excellent, good to hear, thanks.
author | ura-soul |
---|---|
permlink | re-borislavzlatanov-s7vuem |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-26 19:06:21 |
last_update | 2024-01-26 19:06:21 |
depth | 3 |
children | 0 |
last_payout | 2024-02-02 19:06:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 844,446,158,536,777 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,800,420 |
net_rshares | 0 |
Hopefully, these projects will be successful and apply in eakD
author | yourcap |
---|---|
permlink | re-peakopen-s7sktx |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-25 00:46:48 |
last_update | 2024-01-25 00:46:48 |
depth | 1 |
children | 0 |
last_payout | 2024-02-01 00:46:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 22,947,109,861,349 |
root_title | "Open Polls Protocol - Initial Version" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,754,045 |
net_rshares | 11,396,798,025 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 11,396,798,025 | 100% |