## The problem I believe most people would agree that it would be fair if curation rewards were roughly proportional to user's steem power. E.g. suppose one user has 1000 SP and another has 1 SP, then in an identical situation the first one should receive a reward which is approximately 1000 times bigger. But that's not how it works in Steem. Steem [squares percent increase](https://steem.io/getinvolved/paid-to-curate/) and thus a user with 1000 SP will have roughly 1,000,000 bigger reward than a user with 1 SP in the otherwise identical situation. Let's convert it to dollars to get a better understanding. Suppose Alice has $3500 worth of SP, while Bob has $3.5 (which is around what new steemit users get now). Whenever Alice gets $10 curation reward, Bob gets $10/1000000 = $0.00001, or 0.001 cents. In other words, Bob gets no reward at all, the number if negligible. I believe this is a problem, because users with non-negligible Steem Power get negligible rewards and cannot accumulate power & money even if they do stellar curation job. So normal users (i.e. those who don't have a large amounts of SP) have no financial incentive to curate content. Another way to formulate the problem: Suppose there is a hundred Bob1...Bob1000 users each having 1 SP. Their combine influence on content curation will be equal to influence of a single Alice user with 1000 SP. But their **combined** reward will be a tiny fraction of Alice's reward for curation. Influence is the same, but reward isn't, that's not right. (This happens because a square of a sum of positive numbers is bigger than sum of squares of same numbers.) In the next section I will demonstrate the effect using the precise computations taken directly from Steem code. In the section after that I will explain why this effect is unnecessary and can be easily fixed. ## Details Calculations related to vote weight are performed in [vote_evaluator::do_apply](https://github.com/steemit/steem/blob/ae6d87cc00b685aadaa027745d25e4b59af7c190/libraries/chain/steem_evaluator.cpp#L533). Let's consider a concrete example. Suppose we have three users: Alice with 1000k vesting shares, Bob with 1k vesting shares and Claire with 1000k vesting shares. Suppose that their current voting power is equal (e.g. they are casting their first vote after a 24h wait) and they all vote for a single post. Claire votes first, then Bob and then Alice. If voting power is 100%, then for 1k vesting shares we have 50 rshares added to the post. Thus Claire adds 50000 rshares. Her weight is 50000. Post's total weight and total rshares is also 50000. Then Bob adds 50 rshares. His weight is `50 * (50/50050)^2 = 0.00005`. (This will actually be rounded down to 0, in code as calculations are done on integers, but for our purposes we can continue calculations with decimal numbers.) Now total weight is 50000.00005 and total rshares is 50050. (Note that Bob's contribution to post's total rshares is **not** negligible, even though his weight is.) Then Alice adds 50000 rshares. Her weight is `50000 * (50000/100050)^2 = 12487`, and total weight at that point is around 62487. Code which calculates payout is in [database::pay_curators](https://github.com/steemit/steem/blob/ae6d87cc00b685aadaa027745d25e4b59af7c190/libraries/chain/database.cpp#L1625). The formula is simple `(max_rewards * weight) / c.total_vote_weight`. Thus is max reward is $1000, then Claire will get $800, Bob will get $0.0000008 and Alice will get $200. Thus Bob's reward is 250,000,000 time's smaller than Alice's, even though Bob voted before Alice. (The exact ratio heavily depends on total weight at time of Bob's vote, the ratio can be between 1/1000 and 1/1,000,000,000.) Note that Bob's contribution to post's rshares^2 (and thus to post's total reward) is 0.1%, but his reward is only 0.00000008% of post's reward. If you don't trust my computations you can look up the actual weight displayed on steemd.com block explorer. E.g. [let's go to some random post](http://steemd.com/introduceyourself/@killerstorm/why-im-really-excited-about-steem) on steemd and open vote details. Killerstorm's weight is 18 while xeldal's weight is 2,189,025,913,558. killerstorm has ~10 SP while xeldal has 104197 SP. So killerstorm will get 121,612,550,753 smaller reward even though his SP is only 10419 times smaller. You can check any other post and find the same situation: users who don't get a lot of SP get negligible weight. The only way for a small-SP user to get a tiny reward is to be the first to vote. ## Design Now one might ask: is there a deep reason for this effect? I mean, it wasn't done just to deprive low-SP user from rewards altogether? (If curation reward was proportional to rshares^2 contribution low-SP users would at least get some dollars or pennies.) The reason is state in [the documentation](https://steem.io/getinvolved/paid-to-curate/): Reward Vote Concentration. It is done to make sure that splitting one's Steem Power into multiple accounts would be unprofitable. Rewards are structured in such a way that user gets biggest reward if he votes using a single account which has all his SP. But the formula which is used by Steem now is not the only one possible! It is possible to design a formula which will BOTH incentivize concentration and give people a fair reward roughly proportional to their SP. Most likely devs tried a naive formula `contribution/total contribution` formula first, and when that didn't work well they just squared the percentage, which did the trick. But squaring is not the only thing you can do to a formula. I'd say that the actual problem with the naive formula above is that it has no financial sense. If you square it, it doesn't start to make sense either: it works better in one way (disincentivizes splitting) but worse in other way (disincentivizes voting when you don't have a lot of SP). The cure is actually worse than the disease: the vast majority of users (i.e. all people who got free 10 SP upon registering on steemit) have NO incentive to vote. A simple way to fix it is to use a formula which actually makes a financial sense. When user votes for a post, an exchange happens: user contributes rshares, and gets weight in return. Later he receives a reward proportional to weight. Thus we can model it as a process of buying weight for rshares. What is a price of weight then? A fair price at which new voter doesn't dilute existing voters is `total shares/total weight`. Thus the amount of weight one gets is `rshares * (total weight/total rshares)` where `total weight` and `total shares` are computed before the vote is cast. However, in this case early voters get no advantage. We want new voter to buy weight at a price _above_ the current price. Thus we arrive to a formula `weight = rshares * (1/k) * (total_weight/total rshares)` where k is a price increase factor, it should be >= 1. High k will result in quickly diminishing voting rewards, while low k will result in smoother reward distribution. k = 2 will result in a fast reward decay similar to what Steem has now, but without the disproportionate distortion for low-SP voters. This formula also discourages users from splitting their SP into multiple accounts: each time somebody votes, weight's price increases, thus casting multiple votes is an inferior strategy. Let's try it with numbers for k = 2: 1. User#1 casts a vote with 1 rshare, he gets 1 weight in return (this is a special case). 2. User#2 casts a vote with 1 rshare, he gets 1 * (1/2) * 1/1 = 0.5 weight in return 3. User#3 casts a vote with 1 rshare, he gets 1 * (1/2) * (1.5/2) = 0.375 weight Total weight after 3 votes is 1.875 and payout percentages are 53%, 27% and 20%. Now suppose user#2 and user#3 are actually the same person. In that case by casting a vote with 2 rshares he could get a weight of 1, and his payout would be 50% rather than 47%. Thus splitting votes isn't profitable.
author | killerstorm |
---|---|
permlink | why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steem.io/getinvolved/paid-to-curate/","https://github.com/steemit/steem/blob/ae6d87cc00b685aadaa027745d25e4b59af7c190/libraries/chain/steem_evaluator.cpp#L533","https://github.com/steemit/steem/blob/ae6d87cc00b685aadaa027745d25e4b59af7c190/libraries/chain/database.cpp#L1625","http://steemd.com/introduceyourself/@killerstorm/why-im-really-excited-about-steem"]} |
created | 2016-06-12 19:15:06 |
last_update | 2016-06-12 21:25:15 |
depth | 0 |
children | 22 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1,598.353 HBD |
curator_payout_value | 1,598.346 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,960 |
author_reputation | 6,569,496,027,413 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,979 |
net_rshares | 198,071,689,362,146 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dantheman | 0 | 19,016,383,458,441 | 100% | ||
barrie | 0 | 0 | 100% | ||
smooth | 0 | 28,361,216,411,641 | 100% | ||
berniesanders | 0 | 25,931,675,925,369 | 100% | ||
berkah | 0 | 413,274,064,318 | 100% | ||
summon | 0 | 13,978,352,479,549 | 100% | ||
ned | 0 | 44,947,200,000,000 | 100% | ||
wackou | 0 | 4,638,955,797,609 | 100% | ||
badassmother | 0 | 3,143,481,459,602 | 100% | ||
xeldal | 0 | 3,426,574,636,179 | 100% | ||
pharesim | 0 | 5,880,020,472,777 | 100% | ||
lafona-miner | 0 | 2,859,476,360,000 | 100% | ||
enki | 0 | 4,973,010,560,182 | 100% | ||
hr1 | 0 | 2,267,577,970,000 | 100% | ||
lafona | 0 | 221,811,281,382 | 100% | ||
fuzzyvest | 0 | 5,560,696,291,835 | 100% | ||
ihashfury | 0 | 977,703,083,272 | 100% | ||
liondani | 0 | 567,348,391,690 | 100% | ||
roadscape | 0 | 3,722,953,905,184 | 100% | ||
jabbasteem | 0 | 701,962,652,782 | 100% | ||
wang | 0 | 3,762,585,444,230 | 100% | ||
steemit200 | 0 | 6,663,562,544,353 | 100% | ||
ozmaster | 0 | 71,890,344,000 | 100% | ||
xeroc | 0 | 884,917,544,305 | 100% | ||
testz | 0 | 15,183,580,000 | 100% | ||
complexring | 0 | 3,680,355,307,026 | 100% | ||
clayop | 0 | 3,858,606,768,843 | 100% | ||
arhag | 0 | 3,340,829,499,839 | 100% | ||
ajvest | 0 | 367,100,343,200 | 100% | ||
joseph | 0 | 654,883,391,665 | 100% | ||
boombastic | 0 | 963,594,863,213 | 100% | ||
mrs.agsexplorer | 0 | 0 | 100% | ||
bingo-0 | 0 | 0 | 100% | ||
bingo-1 | 0 | 0 | 100% | ||
boatymcboatface | 0 | 242,153,875,386 | 100% | ||
pfunk | 0 | 85,465,700,318 | 100% | ||
pheonike | 0 | 115,183,602,835 | 100% | ||
idol | 0 | 8,532,043,039 | 100% | ||
tuck-fheman | 0 | 157,119,660,512 | 100% | ||
donkeypong | 0 | 253,937,257,589 | 100% | ||
hcf27 | 0 | 3,439,348,790 | 100% | ||
modeprator | 0 | 1,965,969,739 | 100% | ||
jbradford | 0 | 686,641,705 | 100% | ||
ash | 0 | 8,196,857,546 | 100% | ||
chitty | 0 | 5,714,129,639 | 100% | ||
urdawg | 0 | 621,754,044 | 100% | ||
gardenlady | 0 | 1,864,308,131 | 100% | ||
linouxis9 | 0 | 7,713,659,312 | 100% | ||
pnc | 0 | 7,472,619,135 | 100% | ||
alexgr | 0 | 421,186,467 | 100% | ||
anonimau5 | 0 | 1,160,299,573 | 100% | ||
pstrident | 0 | 935,723,576 | 100% | ||
gregory-f | 0 | 4,174,672,933 | 100% | ||
chryspano | 0 | 302,053,203,274 | 100% | ||
edge | 0 | 547,280,871 | 100% | ||
ppitonak | 0 | 3,246,044,442 | 100% | ||
vato | 0 | 130,560,389,849 | 100% | ||
pextdr | 0 | 3,097,247,844 | 100% | ||
fkn | 0 | 482,067,443 | 100% | ||
hipster | 0 | 469,674,098,807 | 100% | ||
madmekmazgruk | 0 | 462,226,277 | 100% | ||
james-show | 0 | 3,641,001,398 | 100% | ||
teamsteem | 0 | 6,399,149,059 | 100% | ||
cryptoctopus | 0 | 14,016,012,990 | 100% | ||
bbqbear | 0 | 2,005,445,017 | 100% | ||
nanzo-scoop | 0 | 35,662,017,629 | 100% | ||
elriel | 0 | 439,004,919 | 100% | ||
jerome-colley | 0 | 438,780,434 | 100% | ||
john-kimmel | 0 | 6,835,821,166 | 100% | ||
psylains | 0 | 62,677,099,085 | 100% | ||
cassyo | 0 | 427,832,649 | 100% | ||
vadimberkut8 | 0 | 417,240,875 | 100% | ||
pigeons | 0 | 433,658,150 | 100% | ||
hannixx42 | 0 | 10,308,319,815 | 100% | ||
arkanaprotego | 0 | 577,837,770 | 100% | ||
xav | 0 | 4,239,508,583 | 100% | ||
klye | 0 | 410,134,909 | 100% | ||
aem | 0 | 20,732,992,030 | 100% | ||
stino-san | 0 | 415,279,662 | 100% | ||
murh | 0 | 0 | 33.01% | ||
tie-warutho | 0 | 412,202,179 | 100% | ||
dmitry | 0 | 131,093,809 | 100% | ||
adiron | 0 | 14,343,360,704 | 100% | ||
alyssas | 0 | 427,366,709 | 100% | ||
tinfoilfedora | 0 | 37,257,808 | 100% | ||
ranko-k | 0 | 379,478,931 | 100% | ||
pixellated | 0 | 758,225,726 | 100% | ||
noganoo | 0 | 2,975,827,785 | 100% | ||
taoteh1221 | 0 | 192,345,462,817 | 100% | ||
bakh-domalak | 0 | 386,451,417 | 100% | ||
applecrisp | 0 | 345,477,932 | 100% | ||
kagetoki-1 | 0 | 345,263,940 | 100% | ||
syadastinasti | 0 | 341,059,726 | 100% | ||
killerstorm | 0 | 347,299,278 | 100% | ||
gsus | 0 | 346,121,734 | 100% | ||
juanmiguelsalas | 0 | 1,236,295,509 | 100% | ||
will-zewe | 0 | 325,771,126 | 100% | ||
asperger514 | 0 | 339,060,118 | 100% | ||
kaylinart | 0 | 301,122,318 | 100% | ||
sohail-ali | 0 | 327,146,896 | 100% | ||
everythink | 0 | 326,407,422 | 100% | ||
hulu | 0 | 331,635,664 | 100% | ||
timur-yusupov | 0 | 188,355,381 | 100% | ||
peezaroni | 0 | 242,200,655 | 100% | ||
press-release | 0 | 66,618,485 | 100% | ||
herethengone | 0 | 159,982,743 | 100% | ||
vovaha | 0 | 278,513,258 | 100% | ||
sonyanka | 0 | 280,311,189 | 100% | ||
fishappear | 0 | 243,049,031 | 100% | ||
bryan-kho | 0 | 2,076,039,006 | 100% | ||
steemtest | 0 | 4,756,941 | 100% | ||
lordmord | 0 | 242,435,112 | 100% | ||
bittrx | 0 | 75,471,841 | 100% | ||
bittrex.com | 0 | 61,262,894 | 100% | ||
arcange | 0 | 11,193,938 | 0% | ||
rd7783 | 0 | 113,106,751 | 100% | ||
shannon1566 | 0 | 120,688,241 | 100% | ||
aaleks | 0 | 55,354,003 | 100% | ||
nomorealex | 0 | 10,162,951,370 | 100% | ||
blockkontrol | 0 | 53,844,057 | 100% | ||
steemalf | 0 | 0 | 100% | ||
acidpanda | 0 | 0 | 100% | ||
cardboard | 0 | 0 | 100% | ||
fairground | 0 | 0 | 100% | ||
rulevink | 0 | 0 | 100% | ||
haiyangdeperci | 0 | 0 | 100% | ||
antoniojesvs | 0 | 0 | 100% |
I don't think it solves the voting problem entirely. Looks like the proposed approach encourages people to vote on already popular contents rather than to look for new & good contents. For example, if there is a post with already `total_weight = 10` and `rshares = 10` and `reward = 100`, when a new voter up-vote with `1` r_shares, she will get * `weight = 1*0.5*10/10 = 0.5`, so * `new_total_weight = 10.5`, and * `new_total_rshares = 11`, and * `new_total_reward = 121`, so the new voter will get * `reward = 121*0.5/10.5/2 ~= 2.9`, which is much higher than voting on a new post (so `reward = 1/2 = 0.5`).
author | abit |
---|---|
permlink | re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t122121686z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-13 12:21:33 |
last_update | 2016-06-13 12:21:33 |
depth | 1 |
children | 6 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.978 HBD |
curator_payout_value | 4.979 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 618 |
author_reputation | 141,171,499,037,785 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,760 |
net_rshares | 9,343,148,498,742 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 5,726,298,066,291 | 100% | ||
abit | 0 | 3,616,690,449,708 | 100% | ||
herethengone | 0 | 159,982,743 | 100% |
Above example is voting after a whale. Here is another example of voting after crowd: * assume that a post which already got some up-votes have `total_weight = 10` and `rshares = 20` and `reward = 400`, then a new voter up-vote with 1 rshare, so her * `weight = 1 * 0.5 * 10 / 20 = 0.25`, so * `new_total_weight = 10.25`, and * `new_total_rshares = 21`, and * `new_total_reward = 21*21 = 441`, so the new voter will get * `reward = 441*0.25/10.25/2 ~= 5.4`, which is even higher than above example.
author | abit |
---|---|
permlink | re-abit-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t123556907z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-13 12:36:06 |
last_update | 2016-06-13 12:36:06 |
depth | 2 |
children | 1 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 498 |
author_reputation | 141,171,499,037,785 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,785 |
net_rshares | 0 |
Above examples are based on using `rshares * rshares` as weight for reward distribution among posts. That said, if post A has `2x` of `rshares` in comparison to post B, then total reward to post A is `4x` of reward to post B. While one's `weight%` to a post is near linear to current `rshares` of the post if she votes late, the reward she can get is also near linear to current `rshares` of the post. That said, by adding a vote to post A the voter will get around `2x` reward in return in comparison to voting on post B. This is the reason why the algorithm described in OP encourages voting on already popular posts. If we want to encourage people to find new quality post, it's likely we need to make the weight for reward distribution among posts linear to current `rshares` or less.
author | abit |
---|---|
permlink | re-abit-re-abit-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160616t030242849z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-16 03:03:00 |
last_update | 2016-06-16 03:03:00 |
depth | 3 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 791 |
author_reputation | 141,171,499,037,785 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,696 |
net_rshares | 0 |
can you not add to the equations "time weight"?
author | liondani |
---|---|
permlink | re-abit-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160614t224248978z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-14 22:42:48 |
last_update | 2016-06-14 22:42:48 |
depth | 2 |
children | 3 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 95,095,146,236,111 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,428 |
net_rshares | 0 |
What's "time weight"?
author | abit |
---|---|
permlink | re-liondani-re-abit-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160614t224742497z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-14 22:48:03 |
last_update | 2016-06-14 22:48:03 |
depth | 3 |
children | 2 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 141,171,499,037,785 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,432 |
net_rshares | 0 |
@killerstorm on behalf of all low-SP users, I thank you! This is a brilliant post that actually deserves a massive payout, I hope you get it :)
author | anonimau5 |
---|---|
permlink | re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160612t202337970z |
category | steem |
json_metadata | {"tags":["steem"],"users":["killerstorm"]} |
created | 2016-06-12 20:23:42 |
last_update | 2016-06-12 20:24:30 |
depth | 1 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.872 HBD |
curator_payout_value | 4.871 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 143 |
author_reputation | 1,020,848,013,839 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,025 |
net_rshares | 9,224,087,570,868 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lafona-miner | 0 | 2,859,476,360,000 | 100% | ||
lafona | 0 | 221,811,281,382 | 100% | ||
fuzzyvest | 0 | 5,439,811,589,838 | 100% | ||
liondani | 0 | 556,223,913,421 | 100% | ||
tuck-fheman | 0 | 144,571,619,499 | 100% | ||
anonimau5 | 0 | 1,224,787,500 | 100% | ||
killerstorm | 0 | 340,489,488 | 100% | ||
kaylinart | 0 | 301,122,318 | 100% | ||
everythink | 0 | 326,407,422 | 100% |
Ahhhh! http://i.giphy.com/V0IdVIIW1y5d6.gif
author | cryptoctopus |
---|---|
permlink | re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160612t201527904z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-12 20:15:09 |
last_update | 2016-06-12 20:15:09 |
depth | 1 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.210 HBD |
curator_payout_value | 4.210 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 365,406,972,531,657 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,018 |
net_rshares | 8,460,981,077,243 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lafona-miner | 0 | 2,802,286,832,800 | 100% | ||
lafona | 0 | 217,375,055,754 | 100% | ||
fuzzyvest | 0 | 5,439,811,589,838 | 100% | ||
anonimau5 | 0 | 1,160,299,573 | 100% | ||
killerstorm | 0 | 347,299,278 | 100% |
You have me convinced, this is a superior strategy. Will look into it more closely.
author | dantheman |
---|---|
permlink | re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160612t195101786z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-12 19:51:00 |
last_update | 2016-06-12 19:51:00 |
depth | 1 |
children | 3 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.896 HBD |
curator_payout_value | 3.836 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 240,292,002,602,347 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,998 |
net_rshares | 8,035,529,820,196 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fuzzyvest | 0 | 5,439,811,589,838 | 100% | ||
liondani | 0 | 556,223,913,421 | 100% | ||
jabbasteem | 0 | 688,198,679,198 | 100% | ||
xeroc | 0 | 884,917,544,305 | 100% | ||
testz | 0 | 15,183,580,000 | 100% | ||
tuck-fheman | 0 | 157,119,660,512 | 100% | ||
anonimau5 | 0 | 1,160,299,573 | 100% | ||
gregory-f | 0 | 4,258,166,392 | 100% | ||
vato | 0 | 127,949,182,052 | 100% | ||
idealist | 0 | 53,975,012,907 | 100% | ||
psylains | 0 | 63,956,223,556 | 100% | ||
hannixx42 | 0 | 10,308,319,815 | 100% | ||
kagetoki-1 | 0 | 345,263,940 | 100% | ||
killerstorm | 0 | 347,299,278 | 100% | ||
fatboy | 0 | 31,775,085,409 | 100% | ||
claudiop63 | 0 | 0 | 100% | ||
jaredandanissa | 0 | 0 | 100% |
@dantheman it's not good enough, as it encourages people to vote on already popular contents but not new contents. See [the examples](https://steemit.com/steem/@killerstorm/why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it#@abit/re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t122121686z) I posted around.
author | abit |
---|---|
permlink | re-dantheman-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160614t094023491z |
category | steem |
json_metadata | {"tags":["steem"],"users":["dantheman"],"links":["https://steemit.com/steem/@killerstorm/why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it#@abit/re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t122121686z"]} |
created | 2016-06-14 09:40:42 |
last_update | 2016-06-14 09:40:42 |
depth | 2 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 361 |
author_reputation | 141,171,499,037,785 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,842 |
net_rshares | 243,049,031 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fuzzyvest | 0 | 0 | 100% | ||
fishappear | 0 | 243,049,031 | 100% |
steemit will succeed first of all because their founders are open-minded and accept others opinions and ideas if they are fairly reasonable ...
author | liondani |
---|---|
permlink | re-dantheman-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t024126132z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-13 02:41:27 |
last_update | 2016-06-13 02:41:27 |
depth | 2 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.258 HBD |
curator_payout_value | 0.258 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 144 |
author_reputation | 95,095,146,236,111 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,313 |
net_rshares | 1,254,368,840,049 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xeroc | 0 | 884,917,544,305 | 100% | ||
chryspano | 0 | 296,130,591,445 | 100% | ||
gavvet | 0 | 3,155,687,954 | 100% | ||
idealist | 0 | 53,975,012,907 | 100% | ||
djleo | 0 | 15,946,954,407 | 100% | ||
fishappear | 0 | 243,049,031 | 100% |
Allelujah! This thing seems likes it's mostly solve. We pretty much all knew something was wrong with curation reward or at least could be a lot better. It great to see you agree Dan. I hope this or something inspired out of it will be implemented soon.
author | teamsteem |
---|---|
permlink | re-dantheman-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160612t205603989z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-12 20:56:00 |
last_update | 2016-06-12 20:56:00 |
depth | 2 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 253 |
author_reputation | 284,804,541,406,803 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,046 |
net_rshares | 364,299,773 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ranko-k | 0 | 364,299,773 | 100% |
Hi @killerstorm , this post is really helpful. Do you know if there have been any changes to the curation payout calculations since your analysis and proposal? I am trying to replicate some of the manually, but I'm running into some issues and I'm wondering if it's because the underlying logic has been updated. One issue is that the `total_vote_weight` value is not equal to the sum of the individual vote weights. For example, if you look at this random post: https://steemd.com/steemit/@chitty/if-you-have-the-votes-that-is-all-that-matters You'll see that the `total_vote_weight` value is 17,372,172,123,681,100,000 but the sum of the weights associated with each vote is only 11,883,041,865,956,000,000. So `total_vote_weight` is almost 50% higher than the sum of the individual vote weights. The `wgt%` values on each vote appear to be using the `total_vote_weight` as the denominator, so the sum of all the `wgt%` values isn't 100% (as I think is reasonable to expect). If anyone else votes on that post, or it goes past the 12h payout threshold, the numbers won't line up with this post, but any other <12h old post should have the same pattern. Sorry if this is slightly off-topic, but this is the clearest post that I've found on the mechanics (and issues) with the curation rewards calculations. Any thoughts would be appreciated. Thanks!
author | gmurph |
---|---|
permlink | re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160728t025406989z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-28 02:54:06 |
last_update | 2016-07-28 02:54:06 |
depth | 1 |
children | 2 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,364 |
author_reputation | 1,751,717,743 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 423,767 |
net_rshares | 0 |
After typing out that long comment, I've been looking at the numbers some more and think I've figured out the `total_vote_weight` issue. It looks like that total is scaled up by the `author_curate_amount` so that `total_vote_weight = (sum of vote weights)/(1 - author_curate_amount)`. Then the numbers seem to work out. Hopefully this comment and reply can save someone else some time. I'm still curious if you know of any changes to the curation calculations since this post ~2 months ago. Thanks again.
author | gmurph |
---|---|
permlink | re-gmurph-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160728t030109243z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-28 03:01:09 |
last_update | 2016-07-28 03:01:09 |
depth | 2 |
children | 1 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 509 |
author_reputation | 1,751,717,743 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 423,949 |
net_rshares | 112,109,935,581 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
djleo | 0 | 112,109,935,581 | 100% |
Curation reward formula was changed about a month ago, see here: https://steemit.com/steem/@dantheman/changes-to-curation-reward-allocation It's a bit too thin on details, though.
author | killerstorm |
---|---|
permlink | re-gmurph-re-gmurph-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160730t104954942z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steem/@dantheman/changes-to-curation-reward-allocation"]} |
created | 2016-07-30 10:49:54 |
last_update | 2016-07-30 10:49:54 |
depth | 3 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.076 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 180 |
author_reputation | 6,569,496,027,413 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 485,862 |
net_rshares | 118,044,529,276 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
djleo | 0 | 114,352,134,293 | 100% | ||
gmurph | 0 | 3,692,394,983 | 100% |
That's how I always thought curation rewards worked. I guess have accumulated nothing... Thanks for your effort! I hope it gets fixed.
author | idealist |
---|---|
permlink | re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t105431376z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-13 10:54:33 |
last_update | 2016-06-13 10:54:33 |
depth | 1 |
children | 1 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 3,482,305,647,602 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,680 |
net_rshares | 1,137,093,581 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonimau5 | 0 | 1,137,093,581 | 100% |
Yes, I fear low-SP holders (i.e. most new users) might be disappointed with their curation payout 7/4 and leave. It is imperative we fix this asap!
author | anonimau5 |
---|---|
permlink | re-idealist-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t172416531z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-13 17:24:15 |
last_update | 2016-06-13 17:38:45 |
depth | 2 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 147 |
author_reputation | 1,020,848,013,839 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,096 |
net_rshares | 1,137,093,581 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonimau5 | 0 | 1,137,093,581 | 100% |
Is there a chance that the system is designed this way in order to foster steem tokens Demand, that for an increased price against the $, e.g.? I mean users have an incentive to power up, buying on exchanges or "mining" by setting up nodes. I may be wrong, but this is how it looks like where I am standing.
author | skriptroid |
---|---|
permlink | re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160614t124158428z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-14 12:42:06 |
last_update | 2016-06-14 12:42:06 |
depth | 1 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 307 |
author_reputation | 563,630,330,217 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,975 |
net_rshares | 0 |
> A simple way to fix it is to use a formula which actually makes a financial sense. When user votes for a post, an exchange happens: user contributes rshares, and gets weight in return. Later he receives a reward proportional to weight. Thus we can model it as a process of buying weight for rshares. This is a brilliant idea and is **way** easier to market!!
author | xeroc |
---|---|
permlink | re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t061950683z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-13 06:19:51 |
last_update | 2016-06-13 06:19:51 |
depth | 1 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.100 HBD |
curator_payout_value | 0.101 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 361 |
author_reputation | 118,819,064,085,695 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,464 |
net_rshares | 558,263,727,692 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
liondani | 0 | 558,263,727,692 | 100% |
I looked into it a little more close and must say: **brilliant** idea! ## Pics ### Unique voting power I have made a little script to look into rewards when you have voters with unique voting powers: [](https://i.imgsafe.org/e5635d037f.png) (click pic to enlarge) ### Code ``` powers = ones(1, 20); #[ 1e6 1e3 1e6 ]; votingpercentage = 5; max_payout = 1e3; rshares = powers .* (votingpercentage/100); weights = rshares .* (rshares./cumsum(rshares)).^2; payouts = (max_payout * weights) ./ sum(weights); stem(payouts); hold all; k = 2; weights = zeros(size(rshares)); for i=1:length(rshares) if i > 1 weights(i) = rshares(i) .* 1/k * (sum(weights(1:i-1))/sum(rshares(1:i-1))); else weights(i) = rshares(i); end end payouts = (max_payout * weights) ./ sum(weights); stem(payouts) xlabel('unique (equal) voters') ylabel('$ Payout') legend('quadratic weights', 'proposal') print('payouts.png') ``` ## Whales first Next pic shows how people can make a higher reward even if they vote after the big whales! [](https://i.imgsafe.org/e5769d9b9c.png) (click pic to enlarge) ``` powers = [10 9 8 7 6 5 4 3 2 1] * 1e6 ```
author | xeroc |
---|---|
permlink | re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t065052722z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://i.imgsafe.org/e5635d037f.png"],"links":["https://i.imgsafe.org/e5769d9b9c.png"]} |
created | 2016-06-13 06:50:51 |
last_update | 2016-06-13 06:50:51 |
depth | 1 |
children | 1 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.310 HBD |
curator_payout_value | 0.310 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,220 |
author_reputation | 118,819,064,085,695 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,486 |
net_rshares | 1,434,843,010,776 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berkah | 0 | 405,008,583,032 | 100% | ||
xeroc | 0 | 884,917,544,305 | 100% | ||
tuck-fheman | 0 | 144,571,619,499 | 100% | ||
kagetoki-1 | 0 | 345,263,940 | 100% |
After saw these pictures, I think the proposed idea is still somehow flawed. See [my comment](https://steemit.com/steem/@killerstorm/why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it#@abit/re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t122121686z).
author | abit |
---|---|
permlink | re-xeroc-re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t122348997z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steem/@killerstorm/why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it#@abit/re-killerstorm-why-steem-curation-reward-is-needlessly-unfair-and-how-to-fix-it-20160613t122121686z"]} |
created | 2016-06-13 12:24:00 |
last_update | 2016-06-13 12:24:00 |
depth | 2 |
children | 0 |
last_payout | 2016-08-22 16:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 305 |
author_reputation | 141,171,499,037,785 |
root_title | "Why Steem curation reward is needlessly unfair and how to fix it" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,765 |
net_rshares | 0 |