Several months ago, I wrote a post explaining how the voting power system works on Steemit. At the time, my [Game Theory of Steem](https://steemit.com/steem/@biophil/what-does-game-theory-say-about-steem-part-1) series was still going strong, and I was curious about how voting power was being regenerated and used as I voted for posts. The embarrassingly-outdated Steem Whitepaper had a little blurb about it, but gave no implementation details and made it sound like having low voting power was a penalty for trying to vote too much (**hint: having low voting power is not a bad thing.**) Anyway, I ended up having to dig into the Steem source code myself to reverse-engineer the voting power mechanics, and wrote my original post explaining how voting power worked. I got a few of the details wrong in the original post, and a few of the details have changed, so I'm dramatically revising the post and giving you this update now. So you're new to Steem and you've heard people talking about "curation" this and "rewards" that - but what's all this about the mysterious **Voting Power?** Apparently you lose it if you vote too much, but then you get it back, and you can look it up on [Steemstats](https://steemstats.com) and [Steemd.com](http://steemd.com/@biophil), but **how does it actually work?** ## The Basics You can look up your voting power in a few different places; the prettiest of the places is [Steemstats](https://steemstats.com) (just enter your account name in the box on the right), the nerdiest is [Steemd.com](http://steemd.com/@biophil). When you vote, a little voting power is used up, but then it regenerates over time. How exactly does it work? What's the optimal way to vote? Think of your voting power as a big tank of water. Every time you vote, a valve at the bottom of the tank pops open and squirts out some power. The fuller the tank, the more power squirts out the valve. The amount of power that squirts out the valve is one of the things that determines the impact your vote has on a post's rewards. (The other is your Steem Power, which you can look up in your wallet and is a completely separate thing.) <center> </center> If you vote and vote and vote without stopping, it's like leaving the valve open, and it won't take long before your tank is empty. Fortunately for you, there is a steady drip of power coming back into your tank! This drip refills your tank at the same rate, always, no matter what. The rate is hard-coded into the Steem system at a constant 20 percentage points per day. So these two things are both true: * If your voting power is at 0% right now, it will be at 20% in 24 hours (if you don't vote at all in that time). * If it's at 75% right now, it will be at 95% in 24 hours (again, if you don't vote in that time). What happens to the drip if your tank is full? The drip gets wasted! Think of it like the tank just overflows if it's full; all that voting power just dripping down the sides going to no purpose. ## The Summary #### How voting power works: 1. Your account has a number between 0 and 100 called "voting power." 2. When you vote for a post, slightly more than a 200th of that voting power gets "spent" on your vote. 4. Your voting power regenerates over time at a fixed rate of 20 points every 24 hours (to be precise, it would grow from 0 to 100 in exactly 5 days). #### How to vote optimally: * In general, you should never vote *less* than about 40 times per day (the exact number is closer to 39.2 votes per day, due to a minor implementation error). If you do vote less, you're letting your voting power go to waste (because your "tank" is full some of that time, and the "drip" is spilling over the brim). * **Surprising news: if you want to maximize your *total* influence, it doesn't matter how much you vote**, as long as you vote more than about 40 times per day. Your *total* influence is the same whether you vote 1000 times per day or 40. * **However, The more you vote, the less *each* of your votes is worth.** So you could vote 1000 times per day, but each of those votes wouldn't be worth very much. Your *total* influence would be optimal, but your *influence per vote* would be very low. ## The Details (with formulas, code references, and general jolliness!) Down to brass tacks. Here is the complete formula for voting power (if you don't want to parse this formula yourself, I'll walk you through it in a minute): <center> </center> where my variables are (times are given in days, powers are numbers between 0 and 100) * *D* is the number of days since your last vote * *Dr* is 5, the number of days it takes to regenerate your power from 0 to 100 * *Vd* is the "equilibrium" number of votes per day, currently set to 40 * *p* is your voting power right after you *last* clicked "vote" * *p+* is your voting power the moment *after* you click "vote" this time * *w* is the "slider" weight of your vote, between 0 and 1 (where 1 stands for 100% voting-slider power) Next, I'll just plug the numbers in to make the formula a little less opaque: <center> </center> **Let me walk you through this.** * *20D* is the amount of power that has regenerated *since your last vote.* Note that this is constant, and doesn't depend on *p*. If it's been one day since you last voted, you've regenerated 20 percentage points of voting power in that time. * *(p+20D)* is thus the amount of power you have *right before you vote.* * (1-w/200) comes from the fact that if you vote with full slider power (w=1), a 200th of your power gets used each time you vote. If you vote with 50% slider power (w=0.5), you only use up a 400th of your power. * The last term, 199/20000, doesn't really affect much. Its purpose is to handle an edge case when people vote with very low power. It makes it so that every time you vote, *just a little bit more* than a 200th of your voting power gets used. **So how much is each vote worth?** The formula for how much power gets applied to each vote is this: <center> </center> **If we didn't have that 199/20000**, the answer would be "exactly a 200th of your voting power gets applied to each vote." This formula will be important when (if?) I finally write my next article explaining how curation rewards work. ## The Code Here is a list of code references for each of the components of this: * [steem_evaluator.cpp #1027](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1027) regenerated power, *(100D/Dr)* * [steem_evaluator.cpp #1028](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1028) available power, *(p+100D/Dr)* * [steem_evaluator.cpp #1032](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1032) multiplied by slider weight * [steem_evaluator.cpp #1048](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1048) used power, the 200th, and the 199/20000 * [steem_evaluator.cpp #1091](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1091) voting power update
author | biophil |
---|---|
permlink | the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated |
category | voting |
json_metadata | {"tags":["voting","steem-help","steem","steemit","faq"],"image":["https://ipfs.pics/ipfs/QmQ9nSfaCW19yJ9VkbrAUpMedhnyutdAupCvZF3K8TdVtV","https://i.imgsafe.org/3171c6376b.png","https://i.imgsafe.org/3171d41e5c.png","https://i.imgsafe.org/3171e68c9e.png"],"links":["https://steemit.com/steem/@biophil/what-does-game-theory-say-about-steem-part-1","https://steemstats.com","http://steemd.com/@biophil","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1027","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1028","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1032","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1048","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1091"],"app":"steemit/0.1","format":"markdown"} |
created | 2016-12-15 22:26:18 |
last_update | 2016-12-15 22:26:18 |
depth | 0 |
children | 28 |
last_payout | 2017-01-16 00:36:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.564 HBD |
curator_payout_value | 0.254 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,284 |
author_reputation | 45,223,914,794,461 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,014,254 |
net_rshares | 20,554,117,590,475 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 357,151,392,722 | 100% | ||
berkah | 0 | 41,702,380,050 | 100% | ||
hello | 0 | 104,376,483,096 | 100% | ||
world | 0 | 39,202,765,482 | 100% | ||
fufubar1 | 0 | 57,004,990,027 | 100% | ||
tombstone | 0 | 9,123,751,596,423 | 50% | ||
wang | 0 | 592,434,989,083 | 46% | ||
boy | 0 | 6,961,765,758 | 100% | ||
xeroc | 0 | 464,850,304,256 | 100% | ||
bue-witness | 0 | 8,472,699,045 | 100% | ||
bunny | 0 | 1,310,755,066 | 100% | ||
bue | 0 | 132,030,737,697 | 100% | ||
mini | 0 | 3,726,608,548 | 100% | ||
moon | 0 | 475,353,448 | 100% | ||
masteryoda | 0 | 743,585,562,131 | 100% | ||
pairmike | 0 | 28,288,032,082 | 100% | ||
proctologic | 0 | 39,020,790,084 | 50% | ||
healthcare | 0 | 1,396,083,732 | 100% | ||
daniel.pan | 0 | 2,202,821,706 | 100% | ||
jchch | 0 | 44,135,725,472 | 50% | ||
ilanaakoundi | 0 | 36,784,843,601 | 50% | ||
helen.tan | 0 | 641,921,031 | 100% | ||
kingscrown | 0 | 15,375,152,423 | 16% | ||
paco-steem | 0 | 198,606,322 | 25% | ||
hipster | 0 | 621,342,022,944 | 100% | ||
spaninv | 0 | 1,379,940,048 | 25% | ||
cryptoctopus | 0 | 559,250,476,581 | 50% | ||
nxtblg | 0 | 314,569,082,834 | 100% | ||
pal | 0 | 91,684,641,098 | 30% | ||
hannixx42 | 0 | 44,393,696,059 | 100% | ||
dan-atstarlite | 0 | 92,992,883,581 | 100% | ||
blakemiles84 | 0 | 86,704,718,871 | 100% | ||
mrsteemgarden | 0 | 268,190,608 | 100% | ||
steemgarden | 0 | 268,017,718 | 100% | ||
pets | 0 | 254,077,358 | 100% | ||
stiletto | 0 | 80,295,364 | 25% | ||
hisnameisolllie | 0 | 127,958,491,538 | 50% | ||
pangur-ban | 0 | 762,326,923 | 50% | ||
ratel | 0 | 14,949,635,061 | 100% | ||
will-zewe | 0 | 170,330,987,477 | 100% | ||
schro | 0 | 26,870,556,450 | 100% | ||
tee-em | 0 | 19,597,952,914 | 50% | ||
michaelx | 0 | 8,608,101,065 | 100% | ||
albertogm | 0 | 11,282,178,873 | 100% | ||
geoffrey | 0 | 326,761,059,433 | 100% | ||
talanhorne | 0 | 44,725,352,564 | 100% | ||
magnebit | 0 | 22,522,655,540 | 100% | ||
mrhankeh | 0 | 145,098,528 | 100% | ||
skapaneas | 0 | 34,819,030,471 | 100% | ||
bacchist | 0 | 62,759,191,795 | 50% | ||
roelandp | 0 | 817,358,393,769 | 100% | ||
riscadox | 0 | 4,935,591,386 | 100% | ||
robrigo | 0 | 353,376,086,788 | 100% | ||
rxhector | 0 | 961,946,872 | 50% | ||
steem1653 | 0 | 4,965,992,596 | 100% | ||
freeyourmind | 0 | 462,648,436,839 | 100% | ||
paco | 0 | 76,901,437,307 | 100% | ||
biophil | 0 | 44,910,592,285 | 100% | ||
meesterboom | 0 | 57,362,798,488 | 100% | ||
raymondspeaks | 0 | 3,685,730,540 | 100% | ||
karenmckersie | 0 | 7,558,386,352 | 100% | ||
pkattera | 0 | 45,376,515,721 | 50% | ||
herverisson | 0 | 32,516,023,426 | 100% | ||
inertia | 0 | 20,291,884,853 | 10% | ||
wildchild | 0 | 51,845,533 | 100% | ||
cryptojoy.com | 0 | 1,273,112,299 | 100% | ||
phenom | 0 | 7,394,513,630 | 100% | ||
smolalit | 0 | 31,458,100,532 | 100% | ||
thylbom | 0 | 192,602,075,201 | 50% | ||
ellamaeamor | 0 | 415,539,314 | 100% | ||
seb | 0 | 112,431,819 | 10% | ||
sokoloffa | 0 | 1,866,884,957 | 100% | ||
logic | 0 | 121,096,916,738 | 100% | ||
remlaps | 0 | 13,182,718,150 | 100% | ||
greymass | 0 | 10,457,091,514 | 50% | ||
originate | 0 | 391,615,648,924 | 100% | ||
craigslist | 0 | 947,388,030 | 100% | ||
transhuman | 0 | 4,811,531,693 | 100% | ||
sunshine | 0 | 49,343,799,760 | 70% | ||
brendio | 0 | 13,876,673,243 | 80% | ||
achim86 | 0 | 2,933,773,942 | 100% | ||
snowflake | 0 | 5,191,402,697 | 100% | ||
bigsambucca | 0 | 611,187,745 | 100% | ||
darthnava | 0 | 12,712,347,437 | 100% | ||
cmorton | 0 | 2,812,434,393 | 100% | ||
cristi | 0 | 46,223,229,337 | 100% | ||
stevescriber | 0 | 53,401,279 | 100% | ||
tommycordero | 0 | 3,481,539,951 | 100% | ||
baconwish | 0 | 61,420,438 | 100% | ||
philipnbrown | 0 | 1,903,053,933 | 100% | ||
virtualgrowth | 0 | 15,273,960,459 | 50% | ||
lemouth | 0 | 45,950,067,237 | 100% | ||
jesus2 | 0 | 51,846,791 | 50% | ||
anotherjoe | 0 | 343,846,080,773 | 100% | ||
cryptomancer | 0 | 115,297,740,228 | 100% | ||
mada | 0 | 50,551,366,947 | 100% | ||
ethansteem | 0 | 99,688,098,020 | 100% | ||
jimmco | 0 | 269,886,446,565 | 100% | ||
oldtimer | 0 | 428,719,850,966 | 100% | ||
gduran | 0 | 2,440,154,663 | 100% | ||
mattclarke | 0 | 63,146,425,935 | 100% | ||
hopefoundation | 0 | 50,764,437 | 100% | ||
escapeamericanow | 0 | 6,495,942,683 | 100% | ||
nulliusinverba | 0 | 2,820,842,855 | 100% | ||
ats-david | 0 | 55,771,863,112 | 50% | ||
barrydutton | 0 | 9,625,206,568 | 100% | ||
sharingeverybite | 0 | 51,607,546,657 | 100% | ||
stephenkendal | 0 | 15,317,397,907 | 100% | ||
darkflame | 0 | 2,189,979,017 | 100% | ||
jlufer | 0 | 2,125,761,263 | 100% | ||
shenanigator | 0 | 200,078,882,970 | 100% | ||
carrinm | 0 | 146,738,904,193 | 100% | ||
areynolds | 0 | 2,366,703,029 | 100% | ||
debmund | 0 | 406,993,140 | 50% | ||
doitvoluntarily | 0 | 117,039,729,049 | 100% | ||
kev7000 | 0 | 5,007,684,062 | 100% | ||
bluehorseshoe | 0 | 21,973,837,770 | 100% | ||
allyouneedtoknow | 0 | 13,587,306,627 | 100% | ||
ct-gurus | 0 | 246,157,980 | 100% | ||
tracemayer | 0 | 13,375,229,538 | 100% | ||
littlescribe | 0 | 5,326,656,398 | 50% | ||
burnin | 0 | 9,270,582,831 | 50% | ||
bestoftherest | 0 | 1,306,784,834 | 50% | ||
boxcarblue | 0 | 57,768,572,402 | 100% | ||
ballinconscious | 0 | 5,496,770,604 | 100% | ||
steempowerwhale | 0 | 13,623,437,498 | 100% | ||
paxmagnus | 0 | 7,149,828,933 | 50% | ||
pickoum | 0 | 9,879,310,381 | 50% | ||
inarix03 | 0 | 50,182,131 | 100% | ||
zorrro | 0 | 50,327,438 | 100% | ||
arama | 0 | 506,253,034,304 | 100% | ||
ocrdu | 0 | 16,732,337,725 | 100% | ||
everittdmickey | 0 | 60,446,205,467 | 100% | ||
lajulius | 0 | 2,981,948,882 | 50% | ||
thegame | 0 | 2,929,408,784 | 50% | ||
fortinbuff | 0 | 15,266,225,617 | 100% | ||
remlaps1 | 0 | 5,259,331,765 | 100% | ||
ninjapainter | 0 | 50,942,818 | 100% | ||
dhrms | 0 | 331,995,538 | 100% | ||
kiks14 | 0 | 51,174,074 | 100% | ||
cub1 | 0 | 6,311,292,074 | 100% | ||
anasz | 0 | 10,809,271,265 | 70% | ||
pinc | 0 | 93,788,354 | 100% | ||
majes | 0 | 17,023,245,732 | 100% | ||
dealzgal | 0 | 52,358,076 | 100% | ||
gamer00 | 0 | 32,300,972,212 | 100% | ||
expat | 0 | 80,061,528 | 100% | ||
toddemaher1 | 0 | 515,124,132 | 50% | ||
marialin | 0 | 1,597,549,791 | 100% | ||
steemvest17 | 0 | 13,001,148,717 | 100% | ||
seisges | 0 | 12,355,063,280 | 100% | ||
digit | 0 | 1,592,645,029 | 100% | ||
keuudeip | 0 | 20,828,517,668 | 100% | ||
singapasee | 0 | 2,274,949,107 | 100% | ||
supergoodliving | 0 | 13,188,751,056 | 50% | ||
aaront | 0 | 52,989,705 | 100% | ||
mental | 0 | 69,104,311 | 50% | ||
ianboil | 0 | 2,012,178,917 | 100% | ||
jdbry | 0 | 1,876,971,933 | 100% | ||
ebryans | 0 | 10,033,986,297 | 100% | ||
sircarlo | 0 | 855,219,105 | 100% | ||
dropahead | 0 | 52,548,785 | 100% | ||
idnit | 0 | 2,379,929,490 | 100% | ||
steemaccess | 0 | 72,613,133,378 | 100% | ||
builderofcastles | 0 | 1,777,577,810 | 100% | ||
trevor.george | 0 | 16,816,410,090 | 100% | ||
m3rcos1ty | 0 | 51,823,639 | 100% | ||
stevebj | 0 | 77,294,871 | 100% | ||
ndriggs | 0 | 910,995,151 | 100% | ||
mrfoot | 0 | 527,982,688 | 100% | ||
commenthunter | 0 | 503,042,077 | 50% | ||
gutzofter | 0 | 30,461,135,265 | 100% | ||
mistere | 0 | 438,656,621 | 100% | ||
hopehuggs | 0 | 6,550,850,689 | 100% | ||
ozymandias | 0 | 552,470,289 | 100% | ||
steemprentice | 0 | 19,825,205,927 | 50% | ||
steemperor | 0 | 11,626,861,272 | 50% | ||
steempire | 0 | 11,730,310,557 | 50% | ||
reisman | 0 | 735,948,920 | 100% | ||
arnaudmalfoy | 0 | 0 | 100% | ||
idnit1 | 0 | 834,793,418 | 100% | ||
lindo | 0 | 108,681,099 | 100% | ||
skypal | 0 | 2,061,419,179 | 100% | ||
writingamigo | 0 | 3,537,704,264 | 50% | ||
milimali | 0 | 1,322,200,132 | 100% | ||
ergoproxy | 0 | 1,287,432,246 | 100% | ||
valth | 0 | 11,015,202,894 | 100% | ||
coffeehouse | 0 | 266,941,591 | 50% | ||
codydeeds | 0 | 835,114,993 | 50% | ||
hypnosisawaken | 0 | 88,514,620 | 100% | ||
throughtheglass | 0 | 648,650,430 | 25% | ||
enchanting | 0 | 398,687,979 | 100% | ||
cherished | 0 | 398,648,845 | 100% | ||
the-architect | 0 | 398,647,305 | 100% | ||
idnit0 | 0 | 112,075,174 | 100% | ||
smithgift | 0 | 418,003,762 | 100% | ||
smileyface | 0 | 317,785,224 | 100% | ||
angels | 0 | 317,784,971 | 100% | ||
springtime | 0 | 317,784,788 | 100% | ||
delightful | 0 | 317,784,679 | 100% | ||
charm | 0 | 317,784,678 | 100% | ||
simplest | 0 | 317,784,212 | 100% | ||
idnit2 | 0 | 89,716,028 | 100% | ||
idnit3 | 0 | 89,867,736 | 100% | ||
idnit4 | 0 | 92,658,979 | 100% | ||
idnit5 | 0 | 98,825,575 | 100% | ||
idnit6 | 0 | 98,196,412 | 100% | ||
idnit7 | 0 | 98,196,380 | 100% | ||
victorious | 0 | 317,757,301 | 100% | ||
legends | 0 | 317,755,915 | 100% | ||
marcosnaitzel | 0 | 300,902,757 | 100% | ||
corkfuse | 0 | 417,851,476 | 100% | ||
orelhafimol | 0 | 392,339,068 | 100% | ||
orcheva | 0 | 0 | 100% | ||
redchartreuse | 0 | 0 | 100% | ||
fish-tennis | 0 | 0 | 100% |
I'm coming for you, @biophil. I will take your #1 curation spot on Steemwhales.com. Human voting will prevail!
author | ats-david |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t223822792z |
category | voting |
json_metadata | {"tags":["voting"],"users":["biophil"]} |
created | 2016-12-15 22:38:24 |
last_update | 2016-12-15 22:38:24 |
depth | 1 |
children | 9 |
last_payout | 2017-01-16 00:36:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 324,017,334,201,433 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,014,342 |
net_rshares | 589,977,798,250 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 59,542,119,689 | 10% | ||
berkah | 0 | 6,952,351,774 | 10% | ||
hello | 0 | 16,062,246,828 | 10% | ||
world | 0 | 6,032,769,124 | 10% | ||
fufubar1 | 0 | 8,772,268,610 | 10% | ||
xeroc | 0 | 42,268,059,171 | 10% | ||
pairmike | 0 | 3,536,449,014 | 10% | ||
gavvet | 0 | 180,665,223,159 | 10% | ||
hipster | 0 | 36,551,533,049 | 10% | ||
steve-walschot | 0 | 46,077,666,554 | 10% | ||
dan-atstarlite | 0 | 91,095,069,631 | 100% | ||
blakemiles84 | 0 | 8,671,667,550 | 10% | ||
schro | 0 | 2,443,121,745 | 10% | ||
michaelx | 0 | 860,908,509 | 10% | ||
albertogm | 0 | 1,410,443,466 | 10% | ||
roelandp | 0 | 68,154,878,772 | 10% | ||
biophil | 0 | 4,991,875,079 | 10% | ||
raymondspeaks | 0 | 460,764,578 | 10% | ||
cryptojoy.com | 0 | 159,153,244 | 10% | ||
phenom | 0 | 924,427,439 | 10% | ||
achim86 | 0 | 489,046,101 | 10% | ||
bigsambucca | 0 | 101,871,727 | 10% | ||
cmorton | 0 | 281,334,111 | 10% | ||
nulliusinverba | 0 | 313,459,575 | 10% | ||
tracemayer | 0 | 1,672,108,645 | 10% | ||
ballinconscious | 0 | 929,999,826 | 10% | ||
marialin | 0 | 228,242,499 | 10% | ||
ianboil | 0 | 223,596,536 | 10% | ||
reisman | 0 | 105,142,245 | 10% | ||
urbansteemers | 0 | 0 | 100% |
LOL
author | barrydutton |
---|---|
permlink | re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t013909557z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-16 01:39:12 |
last_update | 2016-12-16 01:39:12 |
depth | 2 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 3 |
author_reputation | 333,942,309,404,197 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,015,392 |
net_rshares | 0 |
Bring it! I've been withering a little without any competition for so long... So, seriously? You're 100% manual? That's impressive.
author | biophil |
---|---|
permlink | re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t225143303z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-15 22:51:42 |
last_update | 2016-12-15 22:51:42 |
depth | 2 |
children | 5 |
last_payout | 2017-01-16 00:36: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 | 132 |
author_reputation | 45,223,914,794,461 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,014,429 |
net_rshares | 60,446,205,467 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
everittdmickey | 0 | 60,446,205,467 | 100% |
Yes - all manual. And I've been on your heels for a few days now. I'll put some extra effort into it. All I need is one day at the top and my life will be fulfilled!
author | ats-david |
---|---|
permlink | re-biophil-re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t225559716z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-15 22:56:00 |
last_update | 2016-12-15 22:56:00 |
depth | 3 |
children | 2 |
last_payout | 2017-01-16 00:36: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 | 167 |
author_reputation | 324,017,334,201,433 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,014,463 |
net_rshares | 252,918,182,016 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 29,771,059,844 | 1% | ||
berkah | 0 | 6,952,351,774 | 1% | ||
hello | 0 | 8,031,123,414 | 1% | ||
world | 0 | 3,016,384,562 | 1% | ||
fufubar1 | 0 | 4,386,134,305 | 1% | ||
xeroc | 0 | 42,268,059,171 | 1% | ||
pairmike | 0 | 3,536,449,014 | 1% | ||
gavvet | 0 | 36,133,044,631 | 1% | ||
hipster | 0 | 18,275,766,524 | 1% | ||
steve-walschot | 0 | 9,215,533,310 | 1% | ||
blakemiles84 | 0 | 8,671,667,550 | 1% | ||
schro | 0 | 2,443,121,745 | 1% | ||
michaelx | 0 | 860,908,509 | 1% | ||
albertogm | 0 | 1,410,443,466 | 1% | ||
biophil | 0 | 998,375,015 | 1% | ||
raymondspeaks | 0 | 460,764,578 | 1% | ||
inertia | 0 | 4,058,376,970 | 0.1% | ||
cryptojoy.com | 0 | 159,153,244 | 1% | ||
phenom | 0 | 924,427,439 | 1% | ||
achim86 | 0 | 489,046,101 | 1% | ||
bigsambucca | 0 | 101,871,727 | 1% | ||
cmorton | 0 | 140,667,055 | 1% | ||
anotherjoe | 0 | 7,474,914,799 | 1% | ||
escapeamericanow | 0 | 135,332,139 | 1% | ||
nulliusinverba | 0 | 313,459,575 | 1% | ||
tracemayer | 0 | 1,672,108,645 | 1% | ||
ballinconscious | 0 | 929,999,826 | 1% | ||
everittdmickey | 0 | 59,212,609,437 | 100% | ||
fortinbuff | 0 | 318,046,367 | 1% | ||
marialin | 0 | 228,242,499 | 1% | ||
ianboil | 0 | 223,596,536 | 1% | ||
reisman | 0 | 105,142,245 | 1% |
I love it -- the #SteemitElders dropping the gloves lol
author | barrydutton |
---|---|
permlink | re-biophil-re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t013954570z |
category | voting |
json_metadata | {"tags":["steemitelders","voting"]} |
created | 2016-12-16 01:39:57 |
last_update | 2016-12-16 01:39:57 |
depth | 3 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 55 |
author_reputation | 333,942,309,404,197 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,015,394 |
net_rshares | 170,219,521,250 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 29,771,059,844 | 1% | ||
berkah | 0 | 6,952,351,774 | 1% | ||
hello | 0 | 8,031,123,414 | 1% | ||
world | 0 | 3,016,384,562 | 1% | ||
fufubar1 | 0 | 4,386,134,305 | 1% | ||
xeroc | 0 | 42,268,059,171 | 1% | ||
pairmike | 0 | 3,536,449,014 | 1% | ||
hipster | 0 | 18,275,766,524 | 1% | ||
blakemiles84 | 0 | 8,671,667,550 | 1% | ||
schro | 0 | 2,443,121,745 | 1% | ||
michaelx | 0 | 860,908,509 | 1% | ||
albertogm | 0 | 1,410,443,466 | 1% | ||
roelandp | 0 | 34,077,439,386 | 1% | ||
biophil | 0 | 998,375,015 | 1% | ||
raymondspeaks | 0 | 460,764,578 | 1% | ||
cryptojoy.com | 0 | 159,153,244 | 1% | ||
phenom | 0 | 924,427,439 | 1% | ||
achim86 | 0 | 489,046,101 | 1% | ||
bigsambucca | 0 | 101,871,727 | 1% | ||
cmorton | 0 | 140,667,055 | 1% | ||
nulliusinverba | 0 | 313,459,575 | 1% | ||
tracemayer | 0 | 1,672,108,645 | 1% | ||
ballinconscious | 0 | 929,999,826 | 1% | ||
ianboil | 0 | 223,596,536 | 1% | ||
reisman | 0 | 105,142,245 | 1% |
I like the fight: man vs machine! I`m also working on something. Let meet at the stats.. Still far beyond though! GG!
author | pgarcgo |
---|---|
permlink | re-biophil-re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t094432278z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-16 09:44:33 |
last_update | 2016-12-16 09:44:33 |
depth | 3 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 117 |
author_reputation | 118,205,269,281,710 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,017,614 |
net_rshares | 103,161,714,610 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gargon | 0 | 103,161,714,610 | 100% |
http://i.imgur.com/A8STL6t.png
author | majes |
---|---|
permlink | re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t224340636z |
category | voting |
json_metadata | {"tags":["voting"],"image":["http://i.imgur.com/A8STL6t.png"]} |
created | 2016-12-15 22:43:39 |
last_update | 2016-12-15 22:43:39 |
depth | 2 |
children | 1 |
last_payout | 2017-01-16 00:36: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 | 30 |
author_reputation | 132,839,043,973,673 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,014,388 |
net_rshares | 0 |
LOL, beauty man
author | barrydutton |
---|---|
permlink | re-majes-re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t014021093z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-16 01:40:24 |
last_update | 2016-12-16 01:40:24 |
depth | 3 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 15 |
author_reputation | 333,942,309,404,197 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,015,395 |
net_rshares | 0 |
Well, I VOTED for this and RS it too --- so I believe my 1/200th or so of a vote was well inVESTed haha! Great explanation for us Newbs. TY very much -- I saved this in my file of important stuff to know!
author | barrydutton |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t014206583z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-16 01:42:09 |
last_update | 2016-12-16 01:42:09 |
depth | 1 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 209 |
author_reputation | 333,942,309,404,197 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,015,400 |
net_rshares | 272,452,631,911 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 29,771,059,844 | 5% | ||
hello | 0 | 8,031,123,414 | 5% | ||
world | 0 | 3,016,384,562 | 5% | ||
fufubar1 | 0 | 4,386,134,305 | 5% | ||
xeroc | 0 | 42,268,059,171 | 5% | ||
pairmike | 0 | 3,536,449,014 | 5% | ||
gavvet | 0 | 108,399,133,895 | 5% | ||
hipster | 0 | 18,275,766,524 | 5% | ||
blakemiles84 | 0 | 8,671,667,550 | 5% | ||
schro | 0 | 2,443,121,745 | 5% | ||
albertogm | 0 | 1,410,443,466 | 5% | ||
roelandp | 0 | 34,077,438,968 | 5% | ||
biophil | 0 | 2,995,125,047 | 5% | ||
raymondspeaks | 0 | 460,764,578 | 5% | ||
phenom | 0 | 924,427,439 | 5% | ||
achim86 | 0 | 489,046,101 | 5% | ||
bigsambucca | 0 | 101,871,727 | 5% | ||
cmorton | 0 | 140,667,055 | 5% | ||
tracemayer | 0 | 1,672,108,645 | 5% | ||
ballinconscious | 0 | 929,999,826 | 5% | ||
marialin | 0 | 228,242,499 | 5% | ||
ianboil | 0 | 223,596,536 | 5% |
Nice breakdown, makes sense, thank you!
author | bluehorseshoe |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t223624148z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-15 22:36:39 |
last_update | 2016-12-15 22:36:39 |
depth | 1 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 39 |
author_reputation | 9,766,510,656,462 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,014,320 |
net_rshares | 0 |
http://static.wixstatic.com/media/8d4bbc_baebb4ce862d4507b42cf15aedf6fef6~mv2.jpg
author | doitvoluntarily |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t223306987z |
category | voting |
json_metadata | {"tags":["voting"],"image":["http://static.wixstatic.com/media/8d4bbc_baebb4ce862d4507b42cf15aedf6fef6~mv2.jpg"]} |
created | 2016-12-15 22:33:09 |
last_update | 2016-12-15 22:33:09 |
depth | 1 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 81 |
author_reputation | 1,412,689,148,080,496 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,014,297 |
net_rshares | 0 |
I always wondered about how it worked, thanks for walking us through it! :) What about a counter telling us how many votes we have done every 24hours?? Would that be an option likely and helpful on Steemit?
author | herverisson |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t222840258z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-15 22:28:39 |
last_update | 2016-12-15 22:28:39 |
depth | 1 |
children | 1 |
last_payout | 2017-01-16 00:36: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 | 206 |
author_reputation | 89,884,629,748,523 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,014,265 |
net_rshares | 181,718,902,304 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 29,771,059,844 | 1% | ||
berkah | 0 | 6,952,351,774 | 1% | ||
hello | 0 | 8,031,123,414 | 1% | ||
world | 0 | 3,016,384,562 | 1% | ||
fufubar1 | 0 | 4,386,134,305 | 1% | ||
xeroc | 0 | 42,268,059,171 | 1% | ||
pairmike | 0 | 3,536,449,014 | 1% | ||
gavvet | 0 | 36,133,044,631 | 1% | ||
hipster | 0 | 18,275,766,524 | 1% | ||
steve-walschot | 0 | 9,215,533,310 | 1% | ||
blakemiles84 | 0 | 8,671,667,550 | 1% | ||
schro | 0 | 2,443,121,745 | 1% | ||
michaelx | 0 | 860,908,509 | 1% | ||
albertogm | 0 | 1,410,443,466 | 1% | ||
biophil | 0 | 998,375,015 | 1% | ||
raymondspeaks | 0 | 460,764,578 | 1% | ||
cryptojoy.com | 0 | 159,153,244 | 1% | ||
phenom | 0 | 924,427,439 | 1% | ||
achim86 | 0 | 489,046,101 | 1% | ||
bigsambucca | 0 | 101,871,727 | 1% | ||
cmorton | 0 | 140,667,055 | 1% | ||
nulliusinverba | 0 | 313,459,575 | 1% | ||
tracemayer | 0 | 1,672,108,645 | 1% | ||
ballinconscious | 0 | 929,999,826 | 1% | ||
marialin | 0 | 228,242,499 | 1% | ||
ianboil | 0 | 223,596,536 | 1% | ||
reisman | 0 | 105,142,245 | 1% |
That sounds like a great feature. In lieu of that, you can always monitor your voting power on steemstats.com - if you keep your voting power between 80 and 90, you'll likely be voting enough. :)
author | biophil |
---|---|
permlink | re-herverisson-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t223106332z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-15 22:31:06 |
last_update | 2016-12-15 22:31:06 |
depth | 2 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 195 |
author_reputation | 45,223,914,794,461 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,014,281 |
net_rshares | 60,446,205,467 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
everittdmickey | 0 | 60,446,205,467 | 100% |
Thanks a lot for this detailed post! I would not say that it is definitive as the rules may change with time :)
author | lemouth |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t151139585z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-16 15:11:39 |
last_update | 2016-12-16 15:11:39 |
depth | 1 |
children | 1 |
last_payout | 2017-01-16 00:36: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 | 111 |
author_reputation | 338,011,164,701,274 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,019,622 |
net_rshares | 215,796,341,272 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 29,771,059,844 | 1% | ||
berkah | 0 | 6,952,351,774 | 1% | ||
hello | 0 | 8,031,123,414 | 1% | ||
world | 0 | 3,016,384,562 | 1% | ||
fufubar1 | 0 | 4,386,134,305 | 1% | ||
xeroc | 0 | 42,268,059,171 | 1% | ||
pairmike | 0 | 3,536,449,014 | 1% | ||
gavvet | 0 | 36,133,044,631 | 1% | ||
hipster | 0 | 18,275,766,524 | 1% | ||
steve-walschot | 0 | 9,215,533,310 | 1% | ||
blakemiles84 | 0 | 8,671,667,550 | 1% | ||
schro | 0 | 2,443,121,745 | 1% | ||
michaelx | 0 | 860,908,509 | 1% | ||
albertogm | 0 | 1,410,443,466 | 1% | ||
roelandp | 0 | 34,077,438,968 | 1% | ||
biophil | 0 | 998,375,015 | 1% | ||
raymondspeaks | 0 | 460,764,578 | 1% | ||
cryptojoy.com | 0 | 159,153,244 | 1% | ||
phenom | 0 | 924,427,439 | 1% | ||
achim86 | 0 | 489,046,101 | 1% | ||
bigsambucca | 0 | 101,871,727 | 1% | ||
cmorton | 0 | 140,667,055 | 1% | ||
nulliusinverba | 0 | 313,459,575 | 1% | ||
tracemayer | 0 | 1,672,108,645 | 1% | ||
ballinconscious | 0 | 929,999,826 | 1% | ||
marialin | 0 | 228,242,499 | 1% | ||
ianboil | 0 | 223,596,536 | 1% | ||
reisman | 0 | 105,142,245 | 1% |
Well at least it's definitive-er than anything anybody else has posted. :)
author | biophil |
---|---|
permlink | re-lemouth-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t175259147z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-16 17:52:57 |
last_update | 2016-12-16 17:52:57 |
depth | 2 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 74 |
author_reputation | 45,223,914,794,461 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,020,750 |
net_rshares | 0 |
This is excellent, I always overvote but knowing that I can gain back a max of 20% a day is really useful. I might have took vote rest this weekend!!
author | meesterboom |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t075657329z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-16 07:56:57 |
last_update | 2016-12-16 07:56:57 |
depth | 1 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 149 |
author_reputation | 1,788,018,302,991,479 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,017,119 |
net_rshares | 0 |
Thanks a lot!
author | nxtblg |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t002918585z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-16 00:29:12 |
last_update | 2016-12-16 00:29:12 |
depth | 1 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 13 |
author_reputation | 14,581,363,059,419 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,015,001 |
net_rshares | 0 |
Sir, @biophil, I like your analysis so much. The only thing now makes me nervous - are these formulas still valid now? After HF19? I can not read code, I'm not a coder. Maybe you can check it , and update the formulas, if needed. I am looking quite some time for a exact description of re-building voting power algorithm vs time, and no luck. What I understand is this: If I exhaust my voting power ( by intensive voting, 100 sequential upvotes in short time) down to only 13.26%, it will take a stunning 266 hours (11+ days) to rebuild again back to 100% (provided no more votes done in these 266 h). Am I right? Or, how exactly it should be calculated?
author | onealfa |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20170626t101528980z |
category | voting |
json_metadata | {"tags":["voting"],"users":["biophil"],"app":"steemit/0.1"} |
created | 2017-06-26 10:15:33 |
last_update | 2017-06-26 10:15:33 |
depth | 1 |
children | 1 |
last_payout | 2017-07-03 10:15:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.480 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 667 |
author_reputation | 480,376,525,018,215 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,159,523 |
net_rshares | 461,482,815,572 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
onealfa | 0 | 461,482,815,572 | 50% |
One thing changed with HF19, and that's the 200 in my formulas. That number should now be 50. The regeneration rate hasn't changed, and it's linear: you regenerate 20 percentage points per day (24 hours). So it takes 24 hours to go from 10% to 30%, 48 hours to go from 60% to 100%, and so on. It used to be you'd spend 0.5% of your voting power per vote, but that's now 2%. So if your VP is at 100 and you cast a full power vote, your VP will drop to 98. If your VP is at 50 and you cast a full power vote, it will drop to 49. Make sense? I should update this and repost it to explain post-HF19 voting power.
author | biophil |
---|---|
permlink | re-onealfa-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20170626t152523060z |
category | voting |
json_metadata | {"tags":["voting"],"app":"steemit/0.1"} |
created | 2017-06-26 15:25:27 |
last_update | 2017-06-26 15:25:27 |
depth | 2 |
children | 0 |
last_payout | 2017-07-03 15:25:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.078 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 612 |
author_reputation | 45,223,914,794,461 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,193,523 |
net_rshares | 11,044,423,849 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
onealfa | 0 | 11,044,423,849 | 1% | ||
urbansteemers | 0 | 0 | 100% |
As I get more steem power I get more voting power Where can I see the progress is there a statistic where I can find out about the progress of my 100% vote at full capacity
author | rudyrun |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20170722t212442958z |
category | voting |
json_metadata | {"tags":["voting"],"app":"steemit/0.1"} |
created | 2017-07-22 21:24:42 |
last_update | 2017-07-22 21:25:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-29 21:24: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 | 173 |
author_reputation | 111,426,161,156 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,349,375 |
net_rshares | 1,695,412,845 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rudyrun | 0 | 1,695,412,845 | 100% |
<p>This post has been ranked within the top 25 most undervalued posts in the first half of Dec 16. We estimate that this post is undervalued by $10.32 as compared to a scenario in which every voter had an equal say.</p> <p>See the full rankings and details in <a href="https://steemit.com/curation/@screenname/the-daily-tribune-most-undervalued-posts-of-dec-16---part-i">The Daily Tribune: Dec 16 - Part I</a>. You can also read about some of our methodology, data analysis and technical details in <a href="https://steemit.com/curation/@screenname/introducing-the-daily-tribune-most-undervalued-posts-of-nov-04---part-i">our initial post</a>.</p> <p>If you are the author and would prefer not to receive these comments, simply reply "Stop" to this comment.</p>
author | screenname |
---|---|
permlink | re-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t130915 |
category | voting |
json_metadata | "{"replyto": "@biophil/the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated"}" |
created | 2016-12-16 13:09:15 |
last_update | 2016-12-16 13:09:15 |
depth | 1 |
children | 0 |
last_payout | 2017-01-16 00:36: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 | 763 |
author_reputation | 46,276,338,038,330 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,018,685 |
net_rshares | 0 |
This is very interesting. I'm reading your paper, "[Studies on Robust Social Influence Mechanisms.](http://www.ece.ucsb.edu/~pnbrown/papers/Brown2016c.pdf)" Fascinating, and very relevant to the Steemit platform obviously.
author | skypal |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161220t181915736z |
category | voting |
json_metadata | {"tags":["voting"],"links":["http://www.ece.ucsb.edu/~pnbrown/papers/Brown2016c.pdf"]} |
created | 2016-12-20 18:19:15 |
last_update | 2016-12-20 18:19:15 |
depth | 1 |
children | 3 |
last_payout | 2017-01-16 00:36: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 | 222 |
author_reputation | 16,350,129,952,399 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,050,067 |
net_rshares | 0 |
Yeah, that paper is a great place to start. Ever since I joined Steem I've been thinking about the incentives here. At first I was pretty worried that the incentives were going to push people to pile their votes on to only the most popular content, but since I've been running a voting bot, I'm becoming more and more convinced that the incentives actually push people *away* from piling onto popular stuff. Did you ever run into my "game theory of steem" series? Here's the article where I talk about this potential issue: https://steemit.com/money/@biophil/is-steem-paying-for-groupthink-the-game-theory-of-steem-part-3
author | biophil |
---|---|
permlink | re-skypal-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161220t195836600z |
category | voting |
json_metadata | {"tags":["voting"],"links":["https://steemit.com/money/@biophil/is-steem-paying-for-groupthink-the-game-theory-of-steem-part-3"]} |
created | 2016-12-20 19:58:36 |
last_update | 2016-12-20 19:58:36 |
depth | 2 |
children | 2 |
last_payout | 2017-01-16 00:36: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 | 622 |
author_reputation | 45,223,914,794,461 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,050,769 |
net_rshares | 0 |
That sounds promising. Yes, I saw the article but haven't read it yet.
author | skypal |
---|---|
permlink | re-biophil-re-skypal-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161220t212219525z |
category | voting |
json_metadata | {"tags":["voting"]} |
created | 2016-12-20 21:22:18 |
last_update | 2016-12-20 21:22:18 |
depth | 3 |
children | 1 |
last_payout | 2017-01-16 00:36: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 | 70 |
author_reputation | 16,350,129,952,399 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,051,302 |
net_rshares | 0 |
I know this isn't a recent post, but it's not "old" either. Thanks a lot for the explanation, I will be using it to factor how I do things here. I understand the premise you have presented vis a vis how much one uses vs how much regenerates, but a question @biophil .... Is there any difference in voting on posts with say smaller rewards....less votes....at specific times.....resteemed posts...etc? Thanks in advance from a newb.
author | stuntworksinc |
---|---|
permlink | re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20170821t034810029z |
category | voting |
json_metadata | {"tags":["voting"],"users":["biophil"],"app":"steemit/0.1"} |
created | 2017-08-21 03:48:30 |
last_update | 2017-08-21 03:48:30 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 03:48: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 | 434 |
author_reputation | 3,189,105,727,789 |
root_title | "The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,401,799 |
net_rshares | 0 |