<center> [](https://3speak.tv/watch?v=spknetwork/pzblscua) ▶️ [Watch on 3Speak](https://3speak.tv/watch?v=spknetwork/pzblscua) </center> --- <center>  </center> --- <div class="text-justify"> We're buttoning up the next iteration of the SPK Network. Before we get there, we're discussing our new voting mechanism and hoping to get your feedback. This meeting is approaching an hour long, and below is all the code referenced directly in the video... with some additional //comments. ``` exports.spk_vote = (json, from, active, pc) => { //the contract json:payload, from:@hiveaccount, active: active key used, pc:promise chain(for contract ordering) var ops = [] //holds raw memory instructions if (active) { //ensures active key // memory reads var powp = getPathNum(["spow", from]), // @from's powered spk tpowp = getPathNum(["spow", "t"]), // the total powered spk dpowp = getPathObj(["spowd", from]), // @from's downpower operations pointer votebp = getPathObj(['spkVote', from]), // @from's last vote information pstats = getPathNum(['stats']) // current network parameters Promise.all([powp, tpowp, dpowp, votebp, pstats]).then((mem) => { var stats = mem[4] const DAOString = mem[3].substring(mem[3].indexOf(",")), lastVote = Base64.toNumber(mem[3].split(",")[0]) ? Base64.toNumber(mem[3].split(",")[0]) : json.block_num - parseInt(stats.spk_cycle_length), thisVote = Base64.fromNumber(json.block_num) + "," + (DAOString ? DAOString : ""), //decoding terse memory ago = json.block_num - lastVote total = mem[1], power = mem[0] downs = Object.keys(mem[2]) var effective_power = power, effective_total, aValidator = false if(stats.validators?.[from]){ //determine if @from is a validator aValidator = true var powerVoted = 0 for (block of stats.power_voted){ powerVoted += stats.power_voted[block] } power = (total - powerVoted)/20 //or number of validators } if (!power){ ops.push({ type: "put", path: ["feed", `${json.block_num}:${json.transaction_id}`], data: `@${from}| Attempted SPK vote with no voting power`, }); store.batch(ops, pc); } else if(downs.length && !aValidator){ getPathObj(['chrono', downs[0]]).then(down =>{ // additional step to recover downpower information from pointer finish(down) }) } else { finish() } function finish(down_obj) { if(down_obj?.amount){ effective_power = power - down_obj.amount } if (ago < parseFloat(stats.spk_cycle_length))effective_power = parseInt(effective_power * (ago / stats.spk_cycle_length)) else if (ago > parseFloat(stats.spk_cycle_length) && ago < stats.spk_cycle_length * 2)effective_power = effective_power* parseInt( effective_power * (1 - ((ago - stats.spk_cycle_length) / stats.spk_cycle_length) / 2) ) else if (ago >= stats.spk_cycle_length * 2)effective_power = parseInt(effective_power/2) effective_total = effective_total - effective_power const voteWeight = parseFloat(effective_power/effective_total).toFixed(8) const decayWeight = parseFloat( (effective_total - effective_power) / effective_total ).toFixed(8); //verify inputs, adjust constants if(json.spk_cycle_length < 28800)json.spk_cycle_length = 28800 if(json.spk_cycle_length > 3000000)json.spk_cycle_length = 3000000 if(json.dex_fee < 0)json.dex_fee = 0 if(json.dex_fee > 0.1)json.dex_fee = "0.1" if(json.dex_max < 0)json.dex_max = 0 if(json.dex_max > 100)json.dex_max = 100 if(json.dex_slope < 0)json.dex_slope = 0 if(json.dex_slope > 100)json.dex_slope = 100 if(json.spk_rate_lpow < 0)json.spk_rate_lpow = 0 if(json.spk_rate_lpow > stats.spk_rate_ldel)json.spk_rate_lpow = stats.spk_rate_ldel if(json.spk_rate_ldel > stats.spk_rate_lgov)json.spk_rate_lpow = stats.spk_rate_lgov if(json.spk_rate_ldel < stats.spk_rate_lpow)json.spk_rate_ldel = stats.spk_rate_lpow if(json.spk_rate_lgov > 0.1)json.spk_rate_lgov = "0.1" if(json.spk_rate_lgov < stats.spk_rate_ldel)json.spk_rate_lpow = stats.spk_rate_ldel if(json.max_coll_members > 100)json.max_coll_members = 100 if(json.max_coll_members < 15)json.max_coll_members = 15 json.max_coll_members = parseInt(json.max_coll_members) //stats.item = (json.vote * voteWeight) + (decayWeight * stats.item) stats.spk_cycle_length = (json.spk_cycle_length * voteWeight) + (decayWeight * parseFloat(stats.spk_cycle_length)) > 28800 ? parseFloat((json.spk_cycle_length * voteWeight) + (decayWeight * stats.spk_cycle_length).toFixed(6)) : 28800 stats.dex_fee = parseFloat((json.dex_fee * voteWeight) + (decayWeight * parseFloat(stats.dex_fee))).toFixed(6) stats.dex_max = parseFloat((json.dex_max * voteWeight) + (decayWeight * parseFloat(stats.dex_max))).toFixed(2) stats.dex_slope = parseFloat((json.dex_slope * voteWeight) + (decayWeight * parseFloat(stats.dex_slope))).toFixed(2) stats.spk_rate_ldel = parseFloat((json.spk_rate_ldel * voteWeight) + (decayWeight * parseFloat(stats.spk_rate_ldel))).toFixed(6) stats.spk_rate_lgov = parseFloat((json.spk_rate_lgov * voteWeight) + (decayWeight * parseFloat(stats.spk_rate_lgov))).toFixed(6) stats.spk_rate_lpow = parseFloat((json.spk_rate_lpow * voteWeight) + (decayWeight * parseFloat(stats.spk_rate_lpow))).toFixed(6) stats.max_coll_members = (json.max_coll_members * voteWeight) + (decayWeight * parseFloat(stats.max_coll_members)) < 25 ? 25 : ((json.max_coll_members * voteWeight) + (decayWeight * stats.max_coll_members) > 79 ? 79 : parseFloat((json.max_coll_members * voteWeight) + (decayWeight * stats.max_coll_members)).toFixed(6)) //useful-votes-calc if(!aValidator)stats.power_voted[stats.lastIBlock] = effective_power + (typeof stats.power_voted[stats.lastIBlock] == "number" ? stats.power_voted[stats.lastIBlock] : 0) ops.push({ type: "put", path: ["stats"], data: stats, }); ops.push({ type: "put", path: ["spkVote", from], data: thisVote, }); ops.push({ type: "put", path: ["feed", `${json.block_num}:${json.transaction_id}`], data: `@${from}| Has updated their votes.`, }); store.batch(ops, pc); } }); } else { ops.push({ type: "put", path: ["feed", `${json.block_num}:${json.transaction_id}`], data: `@${from}| Attempted SPK vote with posting key`, }); store.batch(ops, pc); } } ``` --- Thank you for participating in our development process and participating in these early stages. --- #### Vote for our Witness: - https://vote.hive.uno/@threespeak - https://vote.hive.uno/@diregardfiat </div> --- <center>  </center> --- <div class="text-justify"> #### About the SPK Network: >The SPK Network is a decentralized Web 3.0 protocol that rewards value creators and infrastructure providers appropriately and autonomously by distributing reward tokens so that every user, creator, and platform, will be able to earn rewards on a level playing field. - Check out the SPK Network Light Paper: https://peakd.com/hive/@spknetwork/spk-network-light-paper - Our Website: https://spk.network/ - Telegram Group: https://t.me/spknetwork - Discord Server: https://discord.gg/JbhQ7dREsP - SPK Network Linktree: https://linktr.ee/spknetwork </div> --- ▶️ [3Speak](https://3speak.tv/watch?v=spknetwork/pzblscua)
author | spknetwork | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | pzblscua | ||||||||||||||||||||||||||||||
category | hive-112019 | ||||||||||||||||||||||||||||||
json_metadata | "{"tags":["spknetwork","video","spk","voting","blockchain","leofinance","ctp","web3","dpos"],"app":"3speak/0.3.0","type":"3speak/video","image":["https://ipfs-3speak.b-cdn.net/ipfs/bafybeicqfe7aqknbznfpgwye4b5zpmfoisleum46ga7p7hbsvqxlmc53lq"],"video":{"info":{"platform":"3speak","title":"Novel Voting Mechanism - SPK Network Team Meeting","author":"spknetwork","permlink":"pzblscua","duration":2937.366667,"filesize":179867829,"file":"dlHLZHfWorPERCNNSpyCSbWMljFKBxXxIPKdufUxbMoaocWbduUBJMIcnoRshKcs.mp4","lang":"en","firstUpload":false,"ipfs":null,"ipfsThumbnail":null,"sourceMap":[{"type":"thumbnail","url":"ipfs://bafybeicqfe7aqknbznfpgwye4b5zpmfoisleum46ga7p7hbsvqxlmc53lq"}]},"content":{"description":"<center>\r\n\r\n\r\n\r\n</center>\r\n\r\n\r\n---\r\n\r\n<div class=\"text-justify\">\r\n\r\n\r\nWe're buttoning up the next iteration of the SPK Network. Before we get there, we're discussing our new voting mechanism and hoping to get your feedback. This meeting is approaching an hour long, and below is all the code referenced directly in the video... with some additional //comments.\r\n\r\n```\r\nexports.spk_vote = (json, from, active, pc) => { //the contract json:payload, from:@hiveaccount, active: active key used, pc:promise chain(for contract ordering)\r\n var ops = [] //holds raw memory instructions\r\n if (active) { //ensures active key\r\n// memory reads\r\n var powp = getPathNum([\"spow\", from]), // @from's powered spk\r\n tpowp = getPathNum([\"spow\", \"t\"]), // the total powered spk\r\n dpowp = getPathObj([\"spowd\", from]), // @from's downpower operations pointer\r\n votebp = getPathObj(['spkVote', from]), // @from's last vote information\r\n pstats = getPathNum(['stats']) // current network parameters\r\n Promise.all([powp, tpowp, dpowp, votebp, pstats]).then((mem) => {\r\n var stats = mem[4]\r\n const DAOString = mem[3].substring(mem[3].indexOf(\",\")),\r\n lastVote = Base64.toNumber(mem[3].split(\",\")[0])\r\n ? Base64.toNumber(mem[3].split(\",\")[0])\r\n : json.block_num - parseInt(stats.spk_cycle_length),\r\n thisVote =\r\n Base64.fromNumber(json.block_num) + \",\" + (DAOString ? DAOString : \"\"), //decoding terse memory\r\n ago = json.block_num - lastVote\r\n total = mem[1],\r\n power = mem[0]\r\n downs = Object.keys(mem[2])\r\n var effective_power = power, effective_total, aValidator = false\r\n if(stats.validators?.[from]){ //determine if @from is a validator\r\n aValidator = true\r\n var powerVoted = 0\r\n for (block of stats.power_voted){\r\n powerVoted += stats.power_voted[block]\r\n }\r\n power = (total - powerVoted)/20 //or number of validators\r\n }\r\n if (!power){\r\n ops.push({\r\n type: \"put\",\r\n path: [\"feed\", `${json.block_num}:${json.transaction_id}`],\r\n data: `@${from}| Attempted SPK vote with no voting power`,\r\n });\r\n store.batch(ops, pc);\r\n } else if(downs.length && !aValidator){\r\n getPathObj(['chrono', downs[0]]).then(down =>{ // additional step to recover downpower information from pointer\r\n finish(down)\r\n })\r\n } else {\r\n finish()\r\n }\r\n function finish(down_obj) {\r\n if(down_obj?.amount){\r\n effective_power = power - down_obj.amount\r\n }\r\n if (ago < parseFloat(stats.spk_cycle_length))effective_power = parseInt(effective_power * (ago / stats.spk_cycle_length))\r\n else if (ago > parseFloat(stats.spk_cycle_length) && ago < stats.spk_cycle_length * 2)effective_power = effective_power* parseInt(\r\n effective_power *\r\n (1 - ((ago - stats.spk_cycle_length) / stats.spk_cycle_length) / 2)\r\n )\r\n else if (ago >= stats.spk_cycle_length * 2)effective_power = parseInt(effective_power/2)\r\n effective_total = effective_total - effective_power\r\n const voteWeight = parseFloat(effective_power/effective_total).toFixed(8)\r\n const decayWeight = parseFloat(\r\n (effective_total - effective_power) / effective_total\r\n ).toFixed(8);\r\n //verify inputs, adjust constants\r\n if(json.spk_cycle_length < 28800)json.spk_cycle_length = 28800\r\n if(json.spk_cycle_length > 3000000)json.spk_cycle_length = 3000000\r\n if(json.dex_fee < 0)json.dex_fee = 0\r\n if(json.dex_fee > 0.1)json.dex_fee = \"0.1\"\r\n if(json.dex_max < 0)json.dex_max = 0\r\n if(json.dex_max > 100)json.dex_max = 100\r\n if(json.dex_slope < 0)json.dex_slope = 0\r\n if(json.dex_slope > 100)json.dex_slope = 100\r\n if(json.spk_rate_lpow < 0)json.spk_rate_lpow = 0\r\n if(json.spk_rate_lpow > stats.spk_rate_ldel)json.spk_rate_lpow = stats.spk_rate_ldel\r\n if(json.spk_rate_ldel > stats.spk_rate_lgov)json.spk_rate_lpow = stats.spk_rate_lgov\r\n if(json.spk_rate_ldel < stats.spk_rate_lpow)json.spk_rate_ldel = stats.spk_rate_lpow\r\n if(json.spk_rate_lgov > 0.1)json.spk_rate_lgov = \"0.1\"\r\n if(json.spk_rate_lgov < stats.spk_rate_ldel)json.spk_rate_lpow = stats.spk_rate_ldel\r\n if(json.max_coll_members > 100)json.max_coll_members = 100\r\n if(json.max_coll_members < 15)json.max_coll_members = 15\r\n json.max_coll_members = parseInt(json.max_coll_members)\r\n //stats.item = (json.vote * voteWeight) + (decayWeight * stats.item)\r\n stats.spk_cycle_length = (json.spk_cycle_length * voteWeight) + (decayWeight * parseFloat(stats.spk_cycle_length)) > 28800 ? parseFloat((json.spk_cycle_length * voteWeight) + (decayWeight * stats.spk_cycle_length).toFixed(6)) : 28800\r\n stats.dex_fee = parseFloat((json.dex_fee * voteWeight) + (decayWeight * parseFloat(stats.dex_fee))).toFixed(6)\r\n stats.dex_max = parseFloat((json.dex_max * voteWeight) + (decayWeight * parseFloat(stats.dex_max))).toFixed(2)\r\n stats.dex_slope = parseFloat((json.dex_slope * voteWeight) + (decayWeight * parseFloat(stats.dex_slope))).toFixed(2)\r\n stats.spk_rate_ldel = parseFloat((json.spk_rate_ldel * voteWeight) + (decayWeight * parseFloat(stats.spk_rate_ldel))).toFixed(6)\r\n stats.spk_rate_lgov = parseFloat((json.spk_rate_lgov * voteWeight) + (decayWeight * parseFloat(stats.spk_rate_lgov))).toFixed(6)\r\n stats.spk_rate_lpow = parseFloat((json.spk_rate_lpow * voteWeight) + (decayWeight * parseFloat(stats.spk_rate_lpow))).toFixed(6)\r\n stats.max_coll_members = (json.max_coll_members * voteWeight) + (decayWeight * parseFloat(stats.max_coll_members)) < 25 ? 25 : ((json.max_coll_members * voteWeight) + (decayWeight * stats.max_coll_members) > 79 ? 79 : parseFloat((json.max_coll_members * voteWeight) + (decayWeight * stats.max_coll_members)).toFixed(6))\r\n //useful-votes-calc\r\n if(!aValidator)stats.power_voted[stats.lastIBlock] = effective_power + (typeof stats.power_voted[stats.lastIBlock] == \"number\" ? stats.power_voted[stats.lastIBlock] : 0)\r\n ops.push({\r\n type: \"put\",\r\n path: [\"stats\"],\r\n data: stats,\r\n });\r\n ops.push({\r\n type: \"put\",\r\n path: [\"spkVote\", from],\r\n data: thisVote,\r\n });\r\n ops.push({\r\n type: \"put\",\r\n path: [\"feed\", `${json.block_num}:${json.transaction_id}`],\r\n data: `@${from}| Has updated their votes.`,\r\n });\r\n store.batch(ops, pc);\r\n }\r\n });\r\n } else {\r\n ops.push({\r\n type: \"put\",\r\n path: [\"feed\", `${json.block_num}:${json.transaction_id}`],\r\n data: `@${from}| Attempted SPK vote with posting key`,\r\n });\r\n store.batch(ops, pc);\r\n }\r\n}\r\n\r\n```\r\n\r\n---\r\n\r\nThank you for participating in our development process and participating in these early stages.\r\n\r\n---\r\n\r\n#### Vote for our Witness:\r\n\r\n- https://vote.hive.uno/@threespeak\r\n\r\n- https://vote.hive.uno/@diregardfiat\r\n\r\n</div>\r\n\r\n---\r\n\r\n<center>\r\n\r\n\r\n\r\n</center>\r\n\r\n---\r\n\r\n<div class=\"text-justify\">\r\n\r\n#### About the SPK Network:\r\n\r\n>The SPK Network is a decentralized Web 3.0 protocol that rewards value creators and infrastructure providers appropriately and autonomously by distributing reward tokens so that every user, creator, and platform, will be able to earn rewards on a level playing field.\r\n\r\n- Check out the SPK Network Light Paper: https://peakd.com/hive/@spknetwork/spk-network-light-paper\r\n\r\n- Our Website: https://spk.network/\r\n\r\n- Telegram Group: https://t.me/spknetwork\r\n\r\n- Discord Server: https://discord.gg/JbhQ7dREsP\r\n\r\n- SPK Network Linktree: https://linktr.ee/spknetwork\r\n\r\n</div>","tags":["spknetwork","video","spk","voting","blockchain","leofinance","ctp","web3","dpos"]}}}" | ||||||||||||||||||||||||||||||
created | 2023-02-08 15:03:06 | ||||||||||||||||||||||||||||||
last_update | 2023-02-08 15:03:06 | ||||||||||||||||||||||||||||||
depth | 0 | ||||||||||||||||||||||||||||||
children | 18 | ||||||||||||||||||||||||||||||
last_payout | 2023-02-15 15:03:06 | ||||||||||||||||||||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||||||||||||||||||||
total_payout_value | 0.000 HBD | ||||||||||||||||||||||||||||||
curator_payout_value | 45.402 HBD | ||||||||||||||||||||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||||||||||||||||||||
promoted | 0.000 HBD | ||||||||||||||||||||||||||||||
body_length | 8,350 | ||||||||||||||||||||||||||||||
author_reputation | 348,970,601,774,222 | ||||||||||||||||||||||||||||||
root_title | "Novel Voting Mechanism - SPK Network Team Meeting" | ||||||||||||||||||||||||||||||
beneficiaries |
| ||||||||||||||||||||||||||||||
max_accepted_payout | 100,000.000 HBD | ||||||||||||||||||||||||||||||
percent_hbd | 10,000 | ||||||||||||||||||||||||||||||
post_id | 120,597,664 | ||||||||||||||||||||||||||||||
net_rshares | 162,874,605,283,755 | ||||||||||||||||||||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemychicken1 | 0 | 432,858,502,294 | 15.5% | ||
leprechaun | 0 | 2,473,848,316 | 27.5% | ||
gerber | 0 | 33,041,008,892 | 28% | ||
ezzy | 0 | 3,034,812,748 | 28% | ||
ausbitbank | 0 | 609,813,718,697 | 22% | ||
dwinblood | 0 | 1,635,651,850 | 30.07% | ||
kendewitt | 0 | 478,488,182,415 | 100% | ||
exyle | 0 | 165,138,363,565 | 28% | ||
jphamer1 | 0 | 7,099,974,056,292 | 100% | ||
stevescoins | 0 | 2,585,766,938 | 27.5% | ||
oldtimer | 0 | 48,308,443,195 | 100% | ||
themonetaryfew | 0 | 613,954,385,714 | 100% | ||
jlufer | 0 | 14,518,867,875 | 100% | ||
richardcrill | 0 | 23,340,976,086 | 40.1% | ||
wakeupnd | 0 | 102,557,393,840 | 50% | ||
tftproject | 0 | 1,463,019,274 | 8.25% | ||
jimbobbill | 0 | 2,242,869,851 | 15% | ||
titusfrost | 0 | 28,327,851,306 | 100% | ||
disregardfiat | 0 | 535,733,233,641 | 100% | ||
ura-soul | 0 | 89,313,406,087 | 27.5% | ||
edb | 0 | 24,534,043,546 | 20% | ||
mow | 0 | 1,279,440,484 | 100% | ||
bigtakosensei | 0 | 83,354,464,796 | 80% | ||
v4vapid | 0 | 5,841,971,825,187 | 36.3% | ||
diggndeeper.com | 0 | 5,107,011,630,722 | 100% | ||
trafalgar | 0 | 20,113,950,216,971 | 46% | ||
louisthomas | 0 | 74,567,203,741 | 100% | ||
lizanomadsoul | 0 | 1,752,397,272 | 2% | ||
raindrop | 0 | 311,606,053,107 | 46% | ||
tamaralovelace | 0 | 66,966,793,386 | 100% | ||
frankydoodle | 0 | 1,787,040,907 | 13.75% | ||
mes | 0 | 284,526,252,247 | 50% | ||
forykw | 0 | 75,006,331,780 | 14% | ||
xplosive | 0 | 58,030,741,995 | 75% | ||
drag33 | 0 | 43,323,381,733 | 100% | ||
newsflash | 0 | 64,284,036,490 | 9.07% | ||
maxdevalue | 0 | 185,991,537,413 | 36% | ||
jonsnow1983 | 0 | 25,870,336,639 | 100% | ||
galenkp | 0 | 1,173,776,661,051 | 25% | ||
firstamendment | 0 | 163,821,542,059 | 100% | ||
spectrumecons | 0 | 1,879,554,788,712 | 30% | ||
truthforce | 0 | 3,291,135,317 | 55% | ||
diegoameerali | 0 | 4,193,808,126 | 13.58% | ||
shitsignals | 0 | 1,256,183,511 | 28% | ||
hairyfairy | 0 | 40,569,172,022 | 75% | ||
isabelpena | 0 | 12,954,020,188 | 100% | ||
pocketrocket | 0 | 16,511,252,512 | 100% | ||
jeanlucsr | 0 | 1,603,938,384 | 2.8% | ||
amitsharma | 0 | 97,348,252,085 | 100% | ||
ernick | 0 | 16,394,880,876 | 100% | ||
felander | 0 | 117,821,057,348 | 28% | ||
santigs | 0 | 246,636,611,230 | 49% | ||
vlemon | 0 | 366,213,847,382 | 100% | ||
karlin | 0 | 78,275,184,036 | 100% | ||
revisesociology | 0 | 2,332,626,592,973 | 100% | ||
oizaguirres | 0 | 11,459,585,493 | 100% | ||
overunitydotcom | 0 | 18,954,712,876 | 100% | ||
insanityisfree | 0 | 1,098,213,498 | 55% | ||
risemultiversity | 0 | 4,030,374,366 | 27.5% | ||
ferod23 | 0 | 2,860,703,300 | 100% | ||
vegoutt-travel | 0 | 28,496,880,018 | 30% | ||
arabisouri | 0 | 67,197,392,805 | 100% | ||
informationwar | 0 | 314,852,164,272 | 55% | ||
tcpaikano | 0 | 812,134,145 | 50% | ||
traf | 0 | 1,689,888,154,103 | 46% | ||
hojaraskita | 0 | 1,420,643,414 | 100% | ||
leninbracho50 | 0 | 209,830,834,469 | 100% | ||
elderson | 0 | 10,654,584,758 | 12.5% | ||
fjcalduch | 0 | 192,720,242,730 | 50% | ||
petronila | 0 | 886,136,022 | 100% | ||
dmwh | 0 | 72,374,150,916 | 27.5% | ||
wiseagent | 0 | 46,841,327,273 | 5% | ||
fourfourfun | 0 | 1,340,647,419 | 4.53% | ||
amerlin | 0 | 512,617,647 | 100% | ||
daltono | 0 | 518,865,746,487 | 25% | ||
rodyservi | 0 | 1,038,028,374 | 100% | ||
pexpresiones | 0 | 40,352,349,024 | 100% | ||
ahmedsy | 0 | 29,011,733,922 | 100% | ||
igel2017 | 0 | 43,674,534,314 | 100% | ||
manncpt | 0 | 3,211,011,298 | 2% | ||
empress-eremmy | 0 | 64,197,453,236 | 27.5% | ||
yolmare | 0 | 17,764,269,468 | 100% | ||
aagabriel | 0 | 13,186,114,711 | 65% | ||
ikrahch | 0 | 204,388,278,303 | 50% | ||
jnmarteau | 0 | 506,059,139 | 2% | ||
nacarid | 0 | 710,513,938 | 100% | ||
unconditionalove | 0 | 3,742,455,833 | 14% | ||
sqhell | 0 | 650,246,869 | 100% | ||
fireguardian | 0 | 5,352,394,621 | 40.1% | ||
eddiespino | 0 | 3,068,507,718,629 | 100% | ||
jadams2k18 | 0 | 1,417,461,193 | 100% | ||
cst90 | 0 | 222,815,794,181 | 100% | ||
josemalavem | 0 | 65,222,984,015 | 60% | ||
kryptik.tigrrr3d | 0 | 4,912,848,046 | 100% | ||
grisvisa | 0 | 34,609,280,963 | 75% | ||
bestboom | 0 | 5,862,509,528 | 28% | ||
manniman | 0 | 639,024,625,528 | 100% | ||
karolines | 0 | 6,198,723,306 | 100% | ||
louis88 | 0 | 426,112,854,551 | 20% | ||
reversehitler88 | 0 | 14,142,880,589 | 100% | ||
dera123 | 0 | 164,579,989,739 | 100% | ||
franciscopr | 0 | 15,473,861,805 | 100% | ||
m2nnari | 0 | 3,512,514,385 | 100% | ||
axeltheartist | 0 | 6,953,591,517 | 100% | ||
memepress | 0 | 753,063,886 | 22.63% | ||
szymonwsieci | 0 | 9,502,241,699 | 100% | ||
themightyvolcano | 0 | 13,634,961,596 | 28% | ||
springlining | 0 | 32,196,007,937 | 100% | ||
tsnaks | 0 | 9,650,073,082 | 100% | ||
kgakakillerg | 0 | 18,376,729,806 | 10% | ||
steemexperience | 0 | 56,797,228,944 | 40.1% | ||
el-dee-are-es | 0 | 9,336,756,021 | 10% | ||
meanbees | 0 | 3,675,646,909 | 2.8% | ||
retard-gamer-de | 0 | 713,753,774 | 27.5% | ||
viviehardika | 0 | 10,472,932,660 | 100% | ||
beco132 | 0 | 10,984,837,719 | 80% | ||
dlux-io | 0 | 1,703,444,551,716 | 100% | ||
fw206 | 0 | 2,793,583,036,972 | 50% | ||
commonlaw | 0 | 4,880,110,519 | 35% | ||
topbooster | 0 | 1,059,019,888 | 40.1% | ||
digital.mine | 0 | 50,960,159,375 | 60% | ||
linco | 0 | 1,038,987,664 | 25.2% | ||
haccolong | 0 | 1,564,827,709 | 13.75% | ||
newsnownorthwest | 0 | 927,687,749 | 8.25% | ||
alcidescadiz | 0 | 62,898,035,865 | 100% | ||
luciannagy | 0 | 1,491,120,388 | 7.5% | ||
hoaithu | 0 | 3,969,473,225 | 11.68% | ||
aconsciousness | 0 | 2,327,421,859 | 95% | ||
deepdives | 0 | 268,474,328,436 | 55% | ||
dlike | 0 | 75,931,973,346 | 28% | ||
junior182 | 0 | 998,121,705 | 100% | ||
anhvu | 0 | 2,527,692,341 | 11% | ||
bengiles | 0 | 822,706,467,192 | 100% | ||
gubbatv | 0 | 302,845,509,021 | 100% | ||
bobby.madagascar | 0 | 982,995,220 | 14% | ||
reteem | 0 | 498,499,830 | 13.75% | ||
racarjoal | 0 | 2,618,490,327 | 50% | ||
riskneutral | 0 | 6,532,484,300 | 55% | ||
cwow2 | 0 | 4,076,924,726 | 2% | ||
followjohngalt | 0 | 3,753,691,731 | 26.6% | ||
celi130 | 0 | 247,914,095,110 | 100% | ||
theycallmedan | 0 | 36,281,022,608,519 | 45% | ||
cakemonster | 0 | 12,534,599,979 | 14% | ||
unknownonline | 0 | 1,168,352,790 | 100% | ||
francescomai | 0 | 70,542,027,390 | 100% | ||
smokingfit | 0 | 1,292,769,426 | 30% | ||
coffeebuds | 0 | 13,063,220,986 | 40.1% | ||
primeradue | 0 | 559,644,013 | 36.3% | ||
determine | 0 | 1,726,989,308 | 28% | ||
permaculturedude | 0 | 920,352,290 | 28% | ||
steemitmonsters | 0 | 1,009,164,425 | 100% | ||
creacioneslelys | 0 | 21,586,195,834 | 100% | ||
some-asshole | 0 | 937,299,615 | 12.5% | ||
haikusailor | 0 | 556,766,425 | 28% | ||
hungryharish | 0 | 1,572,504,933 | 7% | ||
russia-btc | 0 | 493,279,420,795 | 46% | ||
maxsieg | 0 | 7,235,945,822 | 55% | ||
rocketpower | 0 | 562,897,993 | 22.63% | ||
photographercr | 0 | 21,104,458,460 | 9.2% | ||
yiobri | 0 | 6,572,159,770 | 100% | ||
poliwalt10 | 0 | 3,470,088,223 | 7% | ||
threespeak | 0 | 19,484,703,345,191 | 45.27% | ||
clownworld | 0 | 2,555,483,226 | 27.5% | ||
steemindian | 0 | 561,198,732 | 14% | ||
lrekt01 | 0 | 3,604,752,242 | 65% | ||
triplea.bot | 0 | 5,024,475,275 | 28% | ||
steem.leo | 0 | 22,656,756,853 | 28% | ||
mindtrap-leo | 0 | 2,927,737,066 | 100% | ||
leo.syndication | 0 | 510,533,945 | 28% | ||
one.life | 0 | 523,745,761 | 27.94% | ||
urun | 0 | 34,465,514,744 | 100% | ||
lividseagulls | 0 | 569,119,317 | 19.59% | ||
korver | 0 | 34,813,922,328 | 100% | ||
oratione | 0 | 883,611,443 | 100% | ||
thecontesttrain | 0 | 658,965,193 | 27.5% | ||
invest2learn | 0 | 713,252,377 | 28% | ||
tariqul.bibm | 0 | 817,840,261 | 100% | ||
ribary | 0 | 10,139,447,840 | 14% | ||
inigo-montoya-jr | 0 | 1,371,960,442 | 46.75% | ||
sharkthelion | 0 | 2,506,348,292 | 25% | ||
kgsupport | 0 | 638,715,102 | 14% | ||
mice-k | 0 | 1,716,293,330 | 28% | ||
julesquirin | 0 | 2,059,532,669 | 9.2% | ||
dpend.active | 0 | 2,125,943,585 | 5.6% | ||
hivebuzz | 0 | 8,674,697,610 | 2% | ||
flowerbaby | 0 | 7,835,980,009 | 25% | ||
softworld | 0 | 178,050,334,269 | 49% | ||
captainhive | 0 | 699,131,712,230 | 30% | ||
nildasalazar | 0 | 803,129,170 | 100% | ||
dcityrewards | 0 | 309,909,826,995 | 28% | ||
sketching | 0 | 1,527,156,364 | 14% | ||
forkyishere | 0 | 2,070,500,493 | 14% | ||
schmidi | 0 | 940,751,780 | 1% | ||
jelly13 | 0 | 1,166,161,672 | 14% | ||
plusvault | 0 | 490,482,676 | 20.05% | ||
olaunlimited | 0 | 16,734,881,820 | 20.7% | ||
obandoduarte | 0 | 20,360,833,716 | 100% | ||
sevalo13 | 0 | 2,399,780,175 | 100% | ||
josemoises | 0 | 1,628,591,456 | 100% | ||
storiesoferne | 0 | 129,735,897,555 | 100% | ||
yosmandiaz | 0 | 585,646,758 | 100% | ||
hermaryrc | 0 | 6,834,985,053 | 100% | ||
hive-168869 | 0 | 9,259,816,933 | 25% | ||
tokenyzzy | 0 | 11,201,670,211 | 100% | ||
kattycrochet | 0 | 20,730,738,348 | 23% | ||
tempertantric | 0 | 108,246,364,161 | 37% | ||
dalz.shorts | 0 | 573,141,385 | 20.05% | ||
n0m0refak3n3ws | 0 | 1,113,689,640 | 27.5% | ||
hivechat | 0 | 1,483,727,558 | 14% | ||
dcrops | 0 | 206,042,150,431 | 14% | ||
ctpx | 0 | 0 | 20% | ||
trostparadox | 0 | 3,626,824,830,555 | 100% | ||
yozen | 0 | 722,369,453 | 7% | ||
sofs-su | 0 | 69,048,254,639 | 49.6% | ||
al-leonardo | 0 | 86,377,414,199 | 100% | ||
therealsnowjon | 0 | 1,729,699,276 | 80% | ||
firinmahlazer | 0 | 497,234,278 | 100% | ||
xyba | 0 | 45,239,126,377 | 100% | ||
star.leo | 0 | 3,716,399,206 | 100% | ||
cowboyphylosophy | 0 | 25,027,344,837 | 75% | ||
proofofbrainio | 0 | 33,731,220,227 | 40.1% | ||
wend1go | 0 | 31,914,518,402 | 100% | ||
happyfrog420-new | 0 | 52,102,157,041 | 100% | ||
astrocreator | 0 | 290,458,624,428 | 100% | ||
thomashnblum | 0 | 13,953,831,373 | 80.2% | ||
spknetwork | 0 | 2,061,839,847 | 100% | ||
hjrrodriguez | 0 | 14,359,972,209 | 100% | ||
shanhenry | 0 | 2,194,938,259 | 100% | ||
mirteg | 0 | 2,284,101,861 | 7% | ||
lordb | 0 | 18,211,200,676 | 100% | ||
davidbright | 0 | 8,972,557,069 | 50% | ||
hankanon | 0 | 15,991,084,023 | 100% | ||
proymet | 0 | 1,762,265,482 | 100% | ||
flamistan | 0 | 960,919,391 | 40.1% | ||
boboman | 0 | 7,530,835,926 | 100% | ||
delver | 0 | 22,862,423,112 | 55% | ||
funshee | 0 | 1,999,269,823 | 20.05% | ||
eddie-3speak | 0 | 2,900,613,350 | 100% | ||
ariuss | 0 | 478,297,456 | 100% | ||
xclie | 0 | 0 | 100% | ||
nelthari | 0 | 4,303,390,986 | 100% | ||
cjlugo | 0 | 73,316,446,980 | 100% | ||
tydynrain | 0 | 6,255,419,784 | 13.75% | ||
leodis | 0 | 566,827,856 | 23.8% | ||
ssebasv | 0 | 3,253,450,612 | 100% | ||
violator101 | 0 | 63,704,455,577 | 100% | ||
noemi22 | 0 | 4,950,203,359 | 100% | ||
topbooster.leo | 0 | 587,515,647 | 50% | ||
trostparadox.vyb | 0 | 743,361,067 | 40.1% | ||
vyb.pob | 0 | 1,661,589,400 | 40.1% | ||
listnerds | 0 | 68,489,922,626 | 20% | ||
vyb.curation | 0 | 948,514,702 | 40.1% | ||
jhoanbolivar19 | 0 | 4,263,576,978 | 100% | ||
investinfreedom | 0 | 32,737,404,568 | 55% | ||
rainbrella | 0 | 3,735,666,080 | 100% | ||
henrietta27 | 0 | 2,723,996,767 | 50% | ||
foggwulf101 | 0 | 24,149,344,286 | 100% | ||
vyb.fund | 0 | 824,934,740 | 40.1% | ||
yisusth | 0 | 6,735,032,334 | 100% | ||
heron-ua | 0 | 1,240,542,444 | 100% | ||
ggbits | 0 | 2,060,083,580 | 100% | ||
scientify | 0 | 1,116,028,742 | 80% | ||
cronos0 | 0 | 2,828,525,853 | 80% | ||
resonator | 0 | 18,795,011,974,931 | 55% | ||
crazygirl777 | 0 | 4,802,991,874 | 40.1% | ||
xtheycallmedan | 0 | -357,056,720 | -45% | ||
xthreespeak | 0 | -279,745,945 | -45.27% | ||
xtrafalgar | 0 | -276,489,885 | -46% | ||
becca-mac | 0 | 65,587,725,848 | 43% | ||
lyamalfonzo23 | 0 | 2,746,591,448 | 46% | ||
hive-117638 | 0 | 743,635,207 | 22.63% | ||
the13anarchist | 0 | 1,016,622,256 | 6.25% | ||
spearhead1976 | 0 | 3,624,160,896 | 100% | ||
revise.spk | 0 | 3,002,365,788 | 100% | ||
master-lamps.ctp | 0 | 308,611,502 | 100% | ||
queercoin | 0 | 36,449,595,539 | 100% | ||
dewamke44 | 0 | 2,971,685,402 | 100% | ||
celestegray | 0 | 40,398,880,919 | 25% | ||
artefactoestudio | 0 | 794,804,311 | 46% | ||
gubbahomestead | 0 | 29,828,954,647 | 100% | ||
cryptomaso | 0 | 6,813,458,511 | 45.27% | ||
hivecluster | 0 | 5,434,491,179 | 50% | ||
awildovasquez | 0 | 19,668,023,491 | 100% | ||
mullmull | 0 | 3,853,649,305 | 100% | ||
threespeakvoter | 0 | 16,713,730,285,213 | 100% | ||
monddia | 0 | 1,732,027,454 | 100% | ||
ksjegw | 0 | 886,047,415 | 100% | ||
josewil | 0 | 1,224,259,993 | 99.5% | ||
gollumkp | 0 | 35,458,673,052 | 20% | ||
kimtram2203 | 0 | 26,254,953,287 | 100% | ||
quang2203 | 0 | 3,294,779,821 | 100% | ||
mrbonkers | 0 | 16,173,856,208 | 25% |
Congratulations @spknetwork! 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/@spknetwork/posts.png?202302081531"></td><td>You published more than 40 posts.<br>Your next target is to reach 50 posts.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@spknetwork) 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> To support your work, I also upvoted your post! **Check out our last posts:** <table><tr><td><a href="/hive-122221/@hivebuzz/pum-202301-delegations"><img src="https://images.hive.blog/64x128/"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202301-delegations">Our Hive Power Delegations to the January PUM Winners</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202302-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202302-feedback">Feedback from the February Hive Power Up Day</a></td></tr><tr><td><a href="/hive-139531/@hivebuzz/proposal-2324"><img src="https://images.hive.blog/64x128/https://i.imgur.com/RNIZ1N6.png"></a></td><td><a href="/hive-139531/@hivebuzz/proposal-2324">The Hive Gamification Proposal</a></td></tr></table> ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22248%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/248)!
author | hivebuzz |
---|---|
permlink | notify-spknetwork-20230208t155005 |
category | hive-112019 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2023-02-08 15:50:03 |
last_update | 2023-02-08 15:50:03 |
depth | 1 |
children | 0 |
last_payout | 2023-02-15 15:50:03 |
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,652 |
author_reputation | 369,491,875,191,127 |
root_title | "Novel Voting Mechanism - SPK Network Team Meeting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,598,658 |
net_rshares | 0 |
*TLDR: The code may be fine but the voting rulebook is demonstrably flawed.* At 12:30, the speaker (disregardfiat?) shows the variable voting is apparently done by [stake-weighted] averaging (*a voter with 1% stake changes 200k to 1M and the result moves up 8k*) and explains "no big fluctuations" as the advantage of this system, apparently compared to (stake-weighted) median. (*a system that I understand to be used on Hive to decide consensus witnesses' vote for HBD Savings APR*). While that may be true, the method only (somewhat) works as long as the voters stay naive (*=ignorant of the rules and their practical consequences*) and enter their preferred value as their vote. Let's say all other voters want instant powerdown so 99% of the stake is voting for 0 on that variable. End result: 10k (blocks). In my book, that's a failure (I want the ruleset to declare the result as 0). Am I allowed to "correct" and vote a negative number? (*minus 1M if I have 1% stake in this particular case*) In practice someone has to set an upper and lower bound to valid votes. Often an arbitrary one. Although at times there are natural boundaries that work out poor - such as the zero lower bound here - those may favour one side (*the long powerdown camp in this example*). Do we vote on the bounds first? Do we settle the vote with averages? Wait, why is that? Well, most voters should vote for the minimum/maximum allowed unless they either (1) possess a large stake or (2) are lucky to have the current result close enough their optimal value. If you are this rare voter, you can calculate a value to get your dream result but you need to follow any changes and recalculate when a vote is changed. Total mess. There is a correct way. Keep using median. The way to deal with rapid changes is to look at the current value in addition to the vote result and mildly push the new value in the direction of the result of the vote. Think of an ELO rating changing after a game - towards the 1-game performance rating but no overreactions.
author | jelly13 |
---|---|
permlink | re-spknetwork-rpsaab |
category | hive-112019 |
json_metadata | {"tags":["hive-112019"],"app":"peakd/2023.2.1"} |
created | 2023-02-08 22:54:12 |
last_update | 2023-02-08 22:54:12 |
depth | 1 |
children | 14 |
last_payout | 2023-02-15 22:54:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.148 HBD |
curator_payout_value | 0.149 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,044 |
author_reputation | -23,210,583,863,489 |
root_title | "Novel Voting Mechanism - SPK Network Team Meeting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,609,213 |
net_rshares | 536,604,854,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
disregardfiat | 0 | 536,604,854,697 | 100% |
You're mostly right here, but at the end of the day I don't think it matters. Staking didn't stop the Sun takeover, and median values are exceptionally unlikely to be ideal values. The moving average here is done to give the most number of people the ability to vote, as a system that calculates median values would need to store and calculate all accounts votes at every vote, which won't scale. What seems like a median on Hive really is the median of 20 accounts who have a few key votes, a barely decentralized plutocracy. The number of people who have left Hive is just shy of all them. Let's not stretch our imagination too much and think 90% of accounts hold 20% of the stake. On Hive there is nothing they could do even together to get a single witness voted from outside the top. At least with this system they could exercise 20% of the vote toward governance. The top 20 in this paradigm are the people who vote for all the apathetic accounts... which would have prevented the Sun takeover. It also disallows the biggest accounts from exercising more than 5%(hopefully closer to 2.5% with 50% apathy) votes as well, which addresses the last point: Any single vote won't effect a variable more than 5% in the arbitrary range. The code does have vote range limits, so a negative vote will just be counted as a minimum. At this stage at least most of the range limits are fairly natural. Interest rates can't be negative, key holders are limited by Hive code, power-down voting range is something like 1 to 100 days... (which translates to 4 to 400 days for a full powerdown). The flip side is the 13 week power down on Hive is almost kinda voted on when there is a hardfork... but as much as people want it to drop in line with the rest of the market, there isn't even a path to do so. To sum Pros: * Scalable * Non-exclusionary * Same or better whale influence limit as Hive. * Same of better arbitrary vote range limits as Hive Cons: * Less plutocratic(?)
author | disregardfiat |
---|---|
permlink | re-jelly13-rpsgwf |
category | hive-112019 |
json_metadata | {"tags":["hive-112019"],"app":"peakd/2023.2.1"} |
created | 2023-02-09 01:17:06 |
last_update | 2023-02-09 01:17:06 |
depth | 2 |
children | 13 |
last_payout | 2023-02-16 01:17:06 |
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,978 |
author_reputation | 345,191,366,639,512 |
root_title | "Novel Voting Mechanism - SPK Network Team Meeting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,612,416 |
net_rshares | 664,355,388 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sqhell | 0 | 664,355,388 | 100% |
I appreciate your response but I am going to mindfully ignore the most of it as it deals with voting the consensus witnesses and we might as well join/bump the discussion in [Dan's post](https://peakd.com/hive/@theycallmedan/why-20-witnesses-are-better-than-insert-arbitrary-number) for that. I am sticking to variable voting here. I am going to quote my premises. As someone who cannot read the code, I can be easily misguided there so anyone is welcome to point out any misconceptions I have. > The variables on SPK are voted by validators not all token holders. Even when the number of validators goes through the roof, it is still like hundreds or thousands, not millions (of all token holders). > Hive exhibits an arbitrary decision in (1) limiting the variable voting to 20 consensus witnesses (*maybe 21 including the backup-witness-lottery-winner?*) AND (2) voting by headcount rather than weighting by the HP backing the witness votes. Even if you want to avoid using all witnesses' input, it is probably easy to pick up Top 50 or 100 instead of Top 20 (the further you go, the more important is to weight). > The system needs to store all the votes anyway (you need to look up the previous vote of the account that changed the vote) so you can only avoid recalculating every single vote. If storage were a problem, imagine a system that only allows you to vote for (1) increase the current value OR (2) decrease the current value (plus an option to stop voting and abstain if the value is right). That's equivalent for all rational voters and you can have 3rd party tools that voters enter their dream value in and have it monitor the results to see if a change of vote is needed. Recalculating under such system is easy. It seems to me that at least under the non-weighted system the median can be recalculated in a similar fashion. The old vote was either UNDER the old resulting value or OVER. If the new vote stayed the same, result stands. If it changes camps, you lookup the new result as the neighbouring vote value (probably not cool for weighted votes if that means recaluclation a few million "vests" the changed vote represents). BTW, if you still prefer averaging over medians, you can at least save some space by storing vote values as one of (min, max, something_wierd_pls_look_it_up_over_here) if it is validators voting (as opposed to general public voting naively). > One account holding 20.1% stake should have more say than 90% of accounts holding 20% stake combined. This is actually not subject to the prove-me-wrong request. It is a personal political view. If you change my 99% of zero, 1% of 1M example to 80-20, different people will have substantially diferent legitimate opinions on what the result should be. What a challenge! While I am not trying to change anyone else's view, I think it is useful to know what the spirit of the SPK Network is. If negating stake-weighting is as basic part of the project as negating DVs is for Blurt, I want to know (foot voting is legit and not necessarily an all-or-nothing dilemma on blockchain as compared to IRL). FTR, I have never noticed other core personalities positioning themselves where you seem to. People do not leave Hive as a consequence of losing an election and therefore having no say on DEX fee size. If it was like that, their "20% say on governance" would not help at all. That can prevent extreme values being voted in. Unfortunately, "exercising your 20% vote towards governance" can totally override the other 80% at times (using the bounds you call "fairly natural"). It does not sound a well-thought concept to me. I could write a full post to illustrate but I do not see any audience ITT. Anyway, on Hive, dissent leaves because the winners can execute a financial penalty on them for voting wrong.
author | jelly13 | ||||||
---|---|---|---|---|---|---|---|
permlink | rpt9ws | ||||||
category | hive-112019 | ||||||
json_metadata | {"links":["https://peakd.com/hive/@theycallmedan/why-20-witnesses-are-better-than-insert-arbitrary-number"],"app":"hiveblog/0.1"} | ||||||
created | 2023-02-09 11:43:42 | ||||||
last_update | 2023-02-09 11:43:42 | ||||||
depth | 3 | ||||||
children | 12 | ||||||
last_payout | 2023-02-16 11:43: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,818 | ||||||
author_reputation | -23,210,583,863,489 | ||||||
root_title | "Novel Voting Mechanism - SPK Network Team Meeting" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 120,623,320 | ||||||
net_rshares | 0 |
https://twitter.com/1161694792604164097/status/1623339969803694080 https://twitter.com/1533652315152044033/status/1623341014453714946 <sub> The rewards earned on this comment will go directly to the people( @yeckingo1 ) sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
author | poshtoken | ||||||
---|---|---|---|---|---|---|---|
permlink | re-spknetwork-pzblscua-442287248 | ||||||
category | hive-112019 | ||||||
json_metadata | "{"app":"Poshtoken 0.0.1","payoutToUser":["yeckingo1"]}" | ||||||
created | 2023-02-08 15:18:09 | ||||||
last_update | 2023-02-08 15:22:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2023-02-15 15:18:09 | ||||||
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 | 335 | ||||||
author_reputation | 5,223,287,411,206,420 | ||||||
root_title | "Novel Voting Mechanism - SPK Network Team Meeting" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 120,598,025 | ||||||
net_rshares | 0 |
is really hard to follow, sound is not that clear :)
author | urun |
---|---|
permlink | re-spknetwork-rpt68b |
category | hive-112019 |
json_metadata | {"tags":["hive-112019"],"app":"peakd/2023.2.1"} |
created | 2023-02-09 10:24:12 |
last_update | 2023-02-09 10:24:12 |
depth | 1 |
children | 0 |
last_payout | 2023-02-16 10:24:12 |
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 | 52 |
author_reputation | 94,125,949,460,949 |
root_title | "Novel Voting Mechanism - SPK Network Team Meeting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,622,010 |
net_rshares | 0 |