Curation sure is complicated, isn't it? You may have heard something about the square root curation rewards curve, e.g. [here](https://steemit.com/steemit/@steemitguide/steemit-hardfork-19-equality-overview-linear-rewards-curation-weight-curve-and-increased-vote-impact). In this post we will walk through where this is implemented, and look at some scenarios. [This](https://github.com/steemit/steem/blob/56c4d8991622541381df4658bae4b90157690bf4/libraries/chain/steem_evaluator.cpp#L1357) is the part of the code that that assigns the weight of a vote. uint64_t old_weight = util::evaluate_reward_curve( old_vote_rshares.value, curve, reward_fund.content_constant ).to_uint64(); uint64_t new_weight = util::evaluate_reward_curve( comment.vote_rshares.value, curve, reward_fund.content_constant ).to_uint64(); cv.weight = new_weight - old_weight; If you look now at [evaluate_reward_curve](https://github.com/steemit/steem/blob/65b38d022ade5ab461750f978325ca5517485767/libraries/chain/util/reward.cpp#L90), it simply takes the square root of the value, since curve is set to square root for hardfork 19, which is done [here](https://github.com/steemit/steem/blob/57451b80d2cf480dcce9b399e48e56aa7af1d818/libraries/chain/database.cpp#L3851). Note that this weight gets [tallied up](https://github.com/steemit/steem/blob/56c4d8991622541381df4658bae4b90157690bf4/libraries/chain/steem_evaluator.cpp#L1396) into the comment's total vote weight, and the fraction of the curation rewards pool you will get is given by [this weight divided by the total vote weight](https://github.com/steemit/steem/blob/57451b80d2cf480dcce9b399e48e56aa7af1d818/libraries/chain/database.cpp#L1466). If you voted earlier than 30 minutes, then the amount you get is discounted further, as discussed [in this post](https://steemit.com/steem/@eonwarped/the-first-30-minutes). Now *rshares* is simply the number of VESTS assigned to the post. If OV is the old value on the post before your vote, and YV is the value you assign to the post, and TV is the total value assigned at payout, then we have  as the fraction of the curation rewards that goes to you. But note that as in the [last post](https://steemit.com/steem/@eonwarped/the-first-30-minutes) we can translate from VESTS to STEEM using the *steem_per_mvests* parameter, and then to the $ amount shown in the UI by multiplying by *feed_price* everywhere, but these factors cancel out in the numerator and denominator. Thus, the formula above applies to the $ vote value as well! If that last part didn't make sense to you, just take the last formula to be in terms of the $ value of the post before your vote, the $ value of your vote, and the total $ value of the post. # Full Formula Now putting it all together, the amount of curation rewards for a given vote is  where OV is the old value of the post before your vote, YV is the value of your vote, TV is the total value of the post at payout, and r is the discount due to voting early (as a reminder, r=0 if you vote at 0 minutes, r=0.5 if you vote at 15 minutes, and r=1 if you vote after 30 minutes). # Sample Scenario #1 Now for some sample scenarios to run through. Say you cast the first vote after 30 minutes, and your vote is worth 1$, and your vote comes before a 99$ whale vote, and then that's all. Then OV=0, YV=1, TV=99 and you get 1/10th of the curation rewards, and the whale gets the other 9/10ths, of 25$ in curation rewards. So author gets 75$, you get 2.5$, and the whale gets 22.5$. (These are again not in SBD or USD, see e.g. [how payout works](https://steemit.com/steemit/@eonwarped/a-note-about-payout-numbers).) # The Square Root Property Here's an interesting property of the square root function: taking the square root (or any root, really) of a particular value will pull that value towards 1. For instance, the square root of 0.01 is 0.1 and the square root of 100 is 10. This property actually allows even minnows to get a "good" chunk of the curation for voting first on a post that eventually blows up in value. And if you're lucky while browsing the bot tracker for posts that you might be able to front run, you may be able to find one that can get you a little more curation. # Curation for lower SP folks? Let's say that your vote is worth 0.005, which would be common when just starting. And let's say you vote on a fresh post with no votes (admittedly rare, because most people self-vote at 0 minutes), and that you get lucky or are stalking a bot-- that post eventually gets 100 total value. According to the formula, OV=0, YV=0.005, TV=100, and if you voted after 30 minutes, you would get 0.177 of that value in rewards (half of that to SBD, the other half divide by price feed and goes to SP). It's not much, but not bad considering your stake is very low! However, if the author self-votes at 1$ worth say (or the post already has 1$ worth of votes), then this quickly disappears. OV=1, and you'd get (sqrt(1.005) - sqrt(1)) * 10 / 4 = 0.006 in rewards. # Summary There is no summary, curation rewards are complicated. However, you now have a formula to estimate what you would get in curation rewards if you were to front run a bot vote that you know is coming. Also, I suspect I may have messed something up, so I will be testing out my computations on real bot votes soon just to see how it goes. Will record any updates I make to this post in an Addendum section, if there are any. Let me know below if you want to run through some examples perhaps! # Addendum @yabapmatt has a tool for doing this computation, and you can find out more [in his post](https://steemit.com/utopian-io/@yabapmatt/curation-reward-estimation-tool) here. The same tool that lets you stalk upcoming bids let's you find what your curation possibilities are. ----- [](https://steemit.com/introduceyourself/@thesteemengine/introducing-the-steem-engine-initiative) [](https://discord.gg/ymFyEwE)
author | eonwarped |
---|---|
permlink | breaking-curation-down |
category | steemit |
json_metadata | {"community":"busy","app":"steemit/0.1","format":"markdown","users":["yabapmatt"],"links":["https://steemit.com/steemit/@steemitguide/steemit-hardfork-19-equality-overview-linear-rewards-curation-weight-curve-and-increased-vote-impact","https://github.com/steemit/steem/blob/56c4d8991622541381df4658bae4b90157690bf4/libraries/chain/steem_evaluator.cpp#L1357","https://github.com/steemit/steem/blob/65b38d022ade5ab461750f978325ca5517485767/libraries/chain/util/reward.cpp#L90","https://github.com/steemit/steem/blob/57451b80d2cf480dcce9b399e48e56aa7af1d818/libraries/chain/database.cpp#L3851","https://github.com/steemit/steem/blob/56c4d8991622541381df4658bae4b90157690bf4/libraries/chain/steem_evaluator.cpp#L1396","https://github.com/steemit/steem/blob/57451b80d2cf480dcce9b399e48e56aa7af1d818/libraries/chain/database.cpp#L1466","https://steemit.com/steem/@eonwarped/the-first-30-minutes","https://steemit.com/steemit/@eonwarped/a-note-about-payout-numbers","https://steemit.com/utopian-io/@yabapmatt/curation-reward-estimation-tool","https://steemit.com/introduceyourself/@thesteemengine/introducing-the-steem-engine-initiative","https://discord.gg/ymFyEwE"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1517454130/uui0v2hedbjnqcopdbsz.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517456333/rgh2utdj2lar2gogtql1.png","https://steemitimages.com/DQmXa3zVXJVYtacu5692MePMJTj35yZX7LKub8WUR4c91Mt/steemengineBanner.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517457787/h21pkrxsgflxznb0rjbe.png"],"tags":["steemit","steemiteducation","busy"]} |
created | 2018-02-01 04:07:15 |
last_update | 2018-02-01 14:06:27 |
depth | 0 |
children | 24 |
last_payout | 2018-02-08 04:07:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 11.168 HBD |
curator_payout_value | 1.457 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,387 |
author_reputation | 88,102,208,706,615 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,027,574 |
net_rshares | 2,043,340,605,515 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
litrbooh | 0 | 163,329,964,057 | 100% | ||
brimax | 0 | 887,659,310 | 1% | ||
oleg326756 | 0 | 502,891,283 | 1.56% | ||
busy.org | 0 | 45,889,921,114 | 0.5% | ||
ethandsmith | 0 | 42,586,428,292 | 10% | ||
leongkhan | 0 | 376,061,279,649 | 51% | ||
panql1979 | 0 | 4,933,395,378 | 100% | ||
gmichelbkk | 0 | 679,906,626 | 3% | ||
dickturpin | 0 | 23,252,701,767 | 100% | ||
scrooger | 0 | 372,907,864 | 3% | ||
sumatranate | 0 | 1,214,724,144 | 2% | ||
linuslee0216 | 0 | 11,958,269,251 | 100% | ||
wealthy-easily | 0 | 3,858,974,865 | 100% | ||
onejwells13 | 0 | 1,642,069,073 | 100% | ||
shaffrimohd | 0 | 6,363,949,679 | 100% | ||
saywha | 0 | 52,391,363,225 | 51% | ||
coffeedrinker51 | 0 | 3,801,337,092 | 100% | ||
adambarratt | 0 | 10,484,040,509 | 100% | ||
blazing | 0 | 770,121,245 | 100% | ||
amymya | 0 | 13,998,150,705 | 59% | ||
fates | 0 | 82,000,888 | 3% | ||
twodollars | 0 | 67,734,701,598 | 100% | ||
michaelcj | 0 | 17,767,850,117 | 100% | ||
rubiztech | 0 | 310,140,554 | 100% | ||
theleapingkoala | 0 | 5,609,175,031 | 50% | ||
enchantedspirit | 0 | 9,033,947,378 | 20% | ||
randyw | 0 | 413,578,033 | 2% | ||
buildawhale | 0 | 751,214,487,404 | 0.92% | ||
clicketyclick | 0 | 571,172,356 | 100% | ||
qurator | 0 | 83,801,367,937 | 2.6% | ||
swissrose1993 | 0 | 479,650,462 | 100% | ||
blocknload | 0 | 8,965,185,754 | 100% | ||
turtlegurl | 0 | 292,296,450 | 51% | ||
fknmayhem | 0 | 6,475,899,927 | 50% | ||
eonwarped | 0 | 47,431,947,708 | 100% | ||
solomonogene | 0 | 128,899,587 | 100% | ||
maverickinvictus | 0 | 5,292,963,104 | 14% | ||
steempageantshow | 0 | 134,550,470 | 100% | ||
not-a-bird | 0 | 7,552,955,353 | 100% | ||
dawnsheree | 0 | 2,709,871,823 | 84% | ||
beauknows | 0 | 22,897,758,732 | 100% | ||
larrymax | 0 | 487,979,370 | 100% | ||
curtis3388 | 0 | 615,566,064 | 100% | ||
evilest-fiend | 0 | 1,355,670,463 | 100% | ||
acdevan | 0 | 1,116,648,596 | 100% | ||
aaronlab | 0 | 1,009,246,807 | 100% | ||
snowydunes | 0 | 581,042,700 | 100% | ||
antonsteemit | 0 | 4,469,998,443 | 100% | ||
danielwong | 0 | 16,160,960,895 | 100% | ||
bustami83 | 0 | 52,183,933 | 100% | ||
crookshanks | 0 | 14,923,749,524 | 100% | ||
wig319 | 0 | 4,354,610,664 | 100% | ||
lifeaef | 0 | 353,776,693 | 87% | ||
ryacha21 | 0 | 11,237,926,458 | 100% | ||
geekorner | 0 | 10,761,382,440 | 100% | ||
mental-extract | 0 | 548,237,837 | 46% | ||
anjkara | 0 | 30,209,320,483 | 100% | ||
interfecto | 0 | 5,790,843,290 | 100% | ||
thesteemengine | 0 | 116,121,938,938 | 87% | ||
lunaticpandora | 0 | 584,910,245 | 100% | ||
holger80 | 0 | 18,116,255,427 | 50% | ||
bringolo | 0 | 92,071,579 | 50% | ||
nantha473 | 0 | 448,304,989 | 100% | ||
milan009 | 0 | 67,523,883 | 100% |
An illuminating post for those of us who are stumped by the computation of the rewards. Thank you! Resteemed.
author | acdevan |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180201t043718337z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 04:37:18 |
last_update | 2018-02-01 04:37:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 04:37:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 4,592,237,017,337 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,033,241 |
net_rshares | 565,833,378 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 565,833,378 | 1% |
It's a complicated subject, thanks for the explanation!
author | adambarratt |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180201t165820005z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 16:59:36 |
last_update | 2018-02-01 16:59:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 16:59:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 108,238,376,250,657 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,177,858 |
net_rshares | 13,534,470,881 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adambarratt | 0 | 12,968,637,503 | 100% | ||
eonwarped | 0 | 565,833,378 | 1% |
Great job, Eon! These things are like some magical secret world to me. Thanks for trying to bring some understanding. cheers Anj x
author | anjkara |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180201t171100759z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 17:11:00 |
last_update | 2018-02-01 17:11:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 17:11:00 |
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 | 131 |
author_reputation | 2,670,835,568,240 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,180,149 |
net_rshares | 565,833,378 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 565,833,378 | 1% |
understanding maths be like hehe sorry 
author | blazing |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180201t133028081z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["https://steemitimages.com/DQmXKtUn3Lc7dkoM3eEbM1h7K7uyoYx5fqfudhoMTpgssJD/maths.gif"],"app":"steemit/0.1"} |
created | 2018-02-01 13:30:30 |
last_update | 2018-02-01 13:30:30 |
depth | 1 |
children | 2 |
last_payout | 2018-02-08 13:30: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 | 137 |
author_reputation | 117,662,220,860,076 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,134,843 |
net_rshares | 2,744,353,153 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitaldruid | 0 | 1,438,982,069 | 100% | ||
anjkara | 0 | 1,305,371,084 | 4% |
Ha! Glad someone posted this gif. At the end of the day I'm hoping more people focus on creating better content and a more engaged community rather than trying to mathematically game the system for a profit.
author | digitaldruid |
---|---|
permlink | re-blazing-re-eonwarped-breaking-curation-down-20180201t165124332z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 16:51:27 |
last_update | 2018-02-01 16:51:27 |
depth | 2 |
children | 1 |
last_payout | 2018-02-08 16:51:27 |
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 | 208 |
author_reputation | 320,081,229,619 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,176,126 |
net_rshares | 0 |
Agreed on content and community. However I think it will be important to understand what are all the pieces in terms of incentives built into the system, to figure out if there's anything to be done that can push people towards better behavior. Because if there are gaps or loopholes, you can be sure someone is using it.
author | eonwarped |
---|---|
permlink | re-digitaldruid-re-blazing-re-eonwarped-breaking-curation-down-20180201t191519188z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 19:15:21 |
last_update | 2018-02-01 19:15:21 |
depth | 3 |
children | 0 |
last_payout | 2018-02-08 19:15:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 321 |
author_reputation | 88,102,208,706,615 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,204,052 |
net_rshares | 0 |
Your effort at bringing some clarity here surely deserved my still tiny li'll contribution @eonwarped!
author | clicketyclick |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180205t120034347z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["eonwarped"],"app":"steemit/0.1"} |
created | 2018-02-05 12:00:42 |
last_update | 2018-02-05 12:00:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-12 12:00: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 | 102 |
author_reputation | 212,713,793,908 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,129,355 |
net_rshares | 0 |
I'm like really looking at those numbers and formulas and..........**cricket sound** I'm just amazed how you can do this Evan. Well, I'll leave it to you and I look forward on how much you'd really get on curation. Aja!
author | dawnsheree |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180201t105152095z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-01 10:51:51 |
last_update | 2018-02-01 10:52:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 10:51: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 | 220 |
author_reputation | 4,834,455,235,447 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,103,116 |
net_rshares | 565,833,378 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 565,833,378 | 1% |
I'm glad you wrote this. I hope you got it out of your system. (Please don't hurt me anymore.)
author | enchantedspirit |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180204t200555774z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-04 20:05:57 |
last_update | 2018-02-04 20:05:57 |
depth | 1 |
children | 1 |
last_payout | 2018-02-11 20:05:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 41,165,555,289,578 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,967,798 |
net_rshares | 1,446,177,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,446,177,672 | 5% |
I'll alternate! :S
author | eonwarped |
---|---|
permlink | re-enchantedspirit-re-eonwarped-breaking-curation-down-20180204t220256672z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-04 22:02:57 |
last_update | 2018-02-04 22:02:57 |
depth | 2 |
children | 0 |
last_payout | 2018-02-11 22:02:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 88,102,208,706,615 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,987,987 |
net_rshares | 0 |
Thank you for the formulas, very usefull!
author | holger80 |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180202t000155485z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-02 00:01:45 |
last_update | 2018-02-02 00:01:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 00:01:45 |
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 | 41 |
author_reputation | 358,857,509,568,825 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,255,565 |
net_rshares | 2,263,333,513 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 2,263,333,513 | 5% |
Another impressive post explaining the inner workings of steemit :-D
author | lunaticpandora |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180201t041756628z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 04:18:06 |
last_update | 2018-02-01 04:18:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 04:18: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 | 68 |
author_reputation | 103,012,459,262,850 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,029,598 |
net_rshares | 565,833,378 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 565,833,378 | 1% |
Just take my tax and don't kill my few remaining braincells that still accept math haha.
author | maverickinvictus |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180201t205149942z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 20:51:48 |
last_update | 2018-02-01 20:51:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 20:51:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 49,890,876,340,190 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,222,289 |
net_rshares | 1,131,666,756 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,131,666,756 | 2% |
Going thru this much to calculate, just reminds me to sit and wait, there is no changing it, why obsess. I could reap more rewards by jumping back on the comments, yeah?
author | mental-extract |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180201t190614722z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 19:06:06 |
last_update | 2018-02-01 19:06:06 |
depth | 1 |
children | 2 |
last_payout | 2018-02-08 19:06: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 | 169 |
author_reputation | 310,223,259,157 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,202,332 |
net_rshares | 1,980,416,823 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,980,416,823 | 4% |
Probably make more by writing good comments on other people's post, agreed. Though with the tool, it doesn't take much to compute now :)
author | eonwarped |
---|---|
permlink | re-mental-extract-re-eonwarped-breaking-curation-down-20180201t190733313z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 19:07:33 |
last_update | 2018-02-01 19:07:33 |
depth | 2 |
children | 1 |
last_payout | 2018-02-08 19:07:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 136 |
author_reputation | 88,102,208,706,615 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,202,598 |
net_rshares | 927,172,557 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mental-extract | 0 | 927,172,557 | 100% |
True :)
author | mental-extract |
---|---|
permlink | re-eonwarped-re-mental-extract-re-eonwarped-breaking-curation-down-20180205t172113362z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-05 17:21:12 |
last_update | 2018-02-05 17:21:12 |
depth | 3 |
children | 0 |
last_payout | 2018-02-12 17:21: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 | 7 |
author_reputation | 310,223,259,157 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,193,233 |
net_rshares | 0 |
I've experimented with front running the bidding bots, and the reward (for me at least) simply wasn't worth the effort. I can do far better using my time to write a new post or to read others posts and engage in a useful commentary. I'm not saying it can't work, just satin' it hasn't worked for me.
author | moneyinfant |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180201t121001185z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 12:10:03 |
last_update | 2018-02-01 12:10:03 |
depth | 1 |
children | 2 |
last_payout | 2018-02-08 12:10: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 | 299 |
author_reputation | 3,314,768,419,669 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,118,204 |
net_rshares | 3,112,083,580 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 3,112,083,580 | 7% |
It's probably not worth it, but have you tried out the curation reward estimator I put at the bottom of the post?
author | eonwarped |
---|---|
permlink | re-moneyinfant-re-eonwarped-breaking-curation-down-20180201t211923846z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 21:19:24 |
last_update | 2018-02-01 21:19:24 |
depth | 2 |
children | 1 |
last_payout | 2018-02-08 21:19:24 |
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 | 113 |
author_reputation | 88,102,208,706,615 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,227,514 |
net_rshares | 0 |
Oh that's cool. I'll have to put aside some time to play with that and see if it would help.
author | moneyinfant |
---|---|
permlink | re-eonwarped-re-moneyinfant-re-eonwarped-breaking-curation-down-20180201t212657149z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-01 21:26:57 |
last_update | 2018-02-01 21:26:57 |
depth | 3 |
children | 0 |
last_payout | 2018-02-08 21:26:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 3,314,768,419,669 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,228,853 |
net_rshares | 0 |
Interesting ! So how much more curation rewards do you get with more steem power? I'm just wondering what qualifies as a whale vote. I made the mistake of powering down early on so I could invest in other crypto asserts (rather than put my own money in), and I'm wondering if it would me more profitable to just power up and have a bunch of steem power. As an experiment, it would be interesting to just put a crap ton of money into steem power and see what happens when you upvote or resteem something. Do you have any experience with this?
author | onejwells13 |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180204t220200139z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-04 22:02:00 |
last_update | 2018-02-04 22:02:00 |
depth | 1 |
children | 3 |
last_payout | 2018-02-11 22:02:00 |
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 | 548 |
author_reputation | 1,883,427,013,069 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,987,844 |
net_rshares | 2,169,266,508 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 2,169,266,508 | 8% |
Well, I don't know about that. Certainly resteeming does nothing for you. Upvoting and curation rewards in general is not so lucrative unless you maybe program a bot to seek out the good curation opportunities (which is hard to figure out... unless possibly you look at the bottracker for opportunities). In terms of author rewards, STEEM POWER just helps you with self-vote, so you do get some value there. Ah! And you can sell your vote with services like minnowbooster and smartsteem, which seems to be pretty lucrative. Otherwise, it seems feasible just to keep making good posts and try to get exposure to gain more STEEM. In other words, I don't really have experience with what you are asking, but I have a few ideas.
author | eonwarped |
---|---|
permlink | re-onejwells13-re-eonwarped-breaking-curation-down-20180204t220637861z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-04 22:06:36 |
last_update | 2018-02-04 22:06:36 |
depth | 2 |
children | 2 |
last_payout | 2018-02-11 22:06:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 726 |
author_reputation | 88,102,208,706,615 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,988,621 |
net_rshares | 0 |
Hmm interesting, so do you usually power up, and send all your steem to steem power or do you cash out?
author | onejwells13 |
---|---|
permlink | re-eonwarped-re-onejwells13-re-eonwarped-breaking-curation-down-20180204t221229260z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-04 22:12:30 |
last_update | 2018-02-04 22:12:30 |
depth | 3 |
children | 1 |
last_payout | 2018-02-11 22:12: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 | 103 |
author_reputation | 1,883,427,013,069 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,989,622 |
net_rshares | 0 |
Congratulations! This post has been chosen as one of the daily Whistle Stops for The STEEM Engine! <center>[](https://steemit.com/@thesteemengine)</center> You can see your post's place along the track here: [The Daily Whistle Stops, Issue # 36 (2/4/18)](https://steemit.com/curation/@thesteemengine/the-daily-whistle-stops-issue-36-2-4-18) The STEEM Engine is an initiative dedicated to promoting meaningful engagement across Steemit. [Find out more about us and join us](https://steemit.com/introduceyourself/@thesteemengine/introducing-the-steem-engine-initiative) today!
author | thesteemengine |
---|---|
permlink | re-eonwarped-breaking-curation-down-20180205t081933336z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["https://ethandsmith.com/wp-content/uploads/2017/12/commentSTEEMengine.jpg"],"links":["https://steemit.com/@thesteemengine","https://steemit.com/curation/@thesteemengine/the-daily-whistle-stops-issue-36-2-4-18","https://steemit.com/introduceyourself/@thesteemengine/introducing-the-steem-engine-initiative"],"app":"steemit/0.1"} |
created | 2018-02-05 08:19:33 |
last_update | 2018-02-05 08:19:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-12 08:19:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 655 |
author_reputation | 29,011,027,184,792 |
root_title | "Breaking Curation Down!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,089,081 |
net_rshares | 0 |