create account

Curation by Prediction Market Proposal by steemitblog

View this thread on: hive.blogpeakd.comecency.com
· @steemitblog ·
$204.13
Curation by Prediction Market Proposal
This is a proposal for a change in how Steem allocates curation rewards.  Instead of rewarding voting, we propose to reward accurate predictions of future payouts.

## The problem 

Curation is a difficult job, but someone has to do it. The problem we face with the existing curation reward system is that there is a feedback loop whereby upvoting rewards the upvoter.  This feedback loop is made worse by bandwagon effect and ultimately leads to people taking actions to earn rewards that do not produce quality curation as a side effect.

An upvote is an action that is currently rewarded to some degree no matter what. It is something that can be done without thought and even simplistic automation can return a modest profit. The existing algorithm rewards "speed" over "quality" of curation.  It rewards "large voters" more than "small voters".  In other words, paying people for upvoting is not really paying people for the information we want.

## You get what you pay for

Since we get what we pay for, then we must make sure we pay for what we want. In this case what we want to know is the value of a post. A value of a post is a function of the number and quality of the individuals who eventually up or down vote a post.

Rather than rewarding those who upvote, we should reward those who accurately predict the outcome of voting. Armed with this prediction, websites such as *steemit.com* can filter the low quality submissions from the high quality submissions as early as possible. 

We want people to tell us what posts are valuable to the community.  Then we want the community to confirm the prediction with their votes.  

## Prediction Market 

Under the proposed system we have two classes of people, paid curators and voters.  The job of curation would be entirely separate and independent from the act of voting. Voting will no longer be rewarded.  The only people who will qualify for curation rewards will be those who make the best predictions on the future payout.

When a curator sees a quality post they can press a button that will open the curation dialog. This dialog will allow them to quickly enter and submit the future payout value. It may optionally show a chart with existing predictions. 

When a post receives its payout, all curators who predicted a value between 90% and 100% of the the final payout qualify for a weighted share in the curation reward. This creates a price-is-right rule that discourages people from over-predicting.

The weighting algorithm used to divide the curation rewards needs to factor in the following information:

- Steem Power of individual making the prediction (prevent sybil attacks)
- Existing Predictions (copying someone else's prediction should not be rewarded)
- Time of Prediction (late predictions are no prediction at all)
- Reputation of Predictor 

### Proposed Weighting Algorithm

    let SP = Steem Power of Predictor 
    let P  = Prediction of Predictor 
    let EP = Closest Existing Prediction
    let CP = Closeness Penalty
    let N  = the number of predictions made by predictor + 1
    let R  = the number of times predictor was within 10%  
    let RP = Reputation Penalty = (R/N)^3
    CP = (1 - abs(EP-P) / EP)^2
 
    let Weight  =  RP * SP * CP 

Once the weight of each successful predictor has been calculated, the predictor would receive a pro-rata share in the curation rewards for that post.

### Justification for Math

All predictions must be entered within 30 minutes of posting. This encourages timely behavior with minimal ability to profit from knowledge of existing votes.  I would suggest preventing voting during the curation period, but that would discourage readers from voting in the moment.  

The *closeness penalty* heavily biases rewards toward the first person to stake out a position on the reward scale. This means that voting the same as someone before you will get you no reward. Voting 90% the same will get you just 1% of your potential reward.  

The *reputation penalty* is designed to filter out sybil attacks where by small accounts vote in increments of 10% to ensure they win and force everyone else to suffer a closeness penalty.  Ballot stuffing will result in a much lower predictive reputation than someone who uses human intuition to vote.

The *Steem Power* factor is designed to discourage sybil attacks and encourage predictions by whales.  This also encourages predictors to acquire more Steem Power to maximize their earning potential. A side effect is that they are risking more so they can earn more.  A whale that sets up a prediction bot will likely have very low prediction reputation.  

### Predicted Outcome
I predict that this algorithm will result in more opportunities for smaller players to earn larger curation rewards. The value that the blockchain will extract from the curators will be much greater than what can be extracted from a single upvote.   By improving the quality of information and curation we improve the value Steem can bring to readers and voters. 

This system will also gamify curation in a way that will become addictive and maximize the number of people reading all new content submitted to the network. This in turn should maximize the reach each submission receives. 

Those who make a prediction also have financial incentive to see the prediction come true. If you see a great article and predict it will receive a high payout, then it is in your interest to make sure that many people see and vote on the article.  This means sharing it via your social media.  

There is much less incentive to make predictions on low-value content. The highest rewards go to the first person to identify high value content and accurately predict its value. This should give Steem the most benefit possible from the rewards being distributed.
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
๐Ÿ‘Ž  
properties (23)
authorsteemitblog
permlinkcuration-by-prediction-market-proposal
categorysteem
json_metadata{"tags":["curation"]}
created2016-06-01 17:57:21
last_update2016-06-01 17:57:21
depth0
children49
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value102.159 HBD
curator_payout_value101.966 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,810
author_reputation332,472,558,821,177
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,792
net_rshares48,657,029,401,007
author_curate_reward""
vote details (66)
@arhag · (edited)
$1.71
Haven't had time to process it fully yet, but my initial thoughts are:

1. There should be a commit and reveal process. You are already complicating the actions required of curators so that is not for regular people anymore. Also the time periods involved are short. So it is not too much to ask of them to first make their commitment to the blockchain, and then when the first stage is over make the reveal in an appropriate time. If they do not reveal in time, their prediction is automatically considered wrong. Using commit-and-reveal means less information is available to other curators and I think this closeness penalty thing becomes less necessary.

2. The closeness penalty seems flawed and even if it was fixed I dislike it compared to something else, like commit-and-reveal. It seems like an attempt to prevent copy cat predictors, something commit-and-reveal would handle better. The formula provided `CP = (1 - abs(EP-P) / EP)^2` means there is no penalty  if someone votes exactly the same as someone else. Even if you meant `CP = 1 - max(0, (1 - abs(EP-P) / EP))^2`, it still seems like sacrificial sockpuppet bots could still easily ruin the prediction market system for others at virtually no cost. 

3. The time is so short. I understand that votes, which determine the outcomes, are coming in  early and so you want the curators to make their predictions before that. I think instead that each curator's reward should be based on what additional information they provide to the blockchain beyond what is already known from voters. So as of the time a curator makes their hidden prediction, the amount of `abs_rshares` voted for the post up to that point is recorded. Then, after the reveal stage is over, that number is divided by the total `abs_rshares` that ended up voting for the post, which gives the fraction that is used in modulating the curator's share of the curation rewards. Someone who makes a very accurate prediction after nearly everyone has voted should get nearly 0 rewards because such a prediction is easy to do and adds no value. Someone who makes a close prediction well before most votes arrived gets rewarded far more. This mechanism would still mean that curators would need to vote early to get the most value out of their predictions. But the time scale would no longer be hard-coded but instead dependent on how quickly the people who would eventually vote on the post actually do vote on the post relative to its creation time. So a post may be submitted at a time when the people who would most appreciate the post are sleeping. And perhaps those awake are not aware of the fact that people who will appreciate and upvote the post soon are still sleeping. Then when one of these people wakes up, they can see the post (which may have been submitted hours earlier), recognize the value, notice that there are currently both few votes on it and few predictions, and make the decision to make a prediction based on their knowledge that their peers in their timezone waking up will very likely be upvoting it soon. Or some post that is days old with few votes may suddenly become relevant because of some world event. Those who are quick to make predictions on that post before the votes start coming in can still make a nice profit if their prediction turns out to be true.

4. None of this addresses the issue that without a reward for voting (not curating, but voting), there is no financial incentive for voters to upvote other people's post (that they believe will be valued by the community) rather than just upvoting their own posts. The superlinear payout for voting rewards of a post means that voters can earn more money upvoting the successful posts (which ideally would be the *good* posts) rather than just voting their own posts to try to get a share of the rewards stream.

I'll add more thoughts and possible other recommendations after I think about the proposal more deeply.
๐Ÿ‘  , ,
properties (23)
authorarhag
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t185711403z
categorysteem
json_metadata{}
created2016-06-01 18:57:12
last_update2016-06-01 19:34:09
depth1
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.854 HBD
curator_payout_value0.855 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,938
author_reputation52,490,827,205,383
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,848
net_rshares3,042,149,765,298
author_curate_reward""
vote details (3)
@chitty ·
> The only people who will qualify for curation rewards will be those who make the best predictions on the future payout.

This will exclude ocasional users from being curators and may also frustate newcomers that dont get to be curators from using the platform.... steemit would become more like gambling site for a select few

I think steemit needs to be kept simple, I dont think bots will be an issue once steemit has 100.000 users because it is impossible to predict what contents may become viral,  however if @ned and @dan think upvote bots are distorting the curation process I think its best to remove the rewards all together.
๐Ÿ‘  
properties (23)
authorchitty
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t193904954z
categorysteem
json_metadata{"users":["ned","dan"]}
created2016-06-01 19:39:06
last_update2016-06-01 19:39:06
depth1
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length636
author_reputation86,901,300,608,582
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,896
net_rshares785,823,929
author_curate_reward""
vote details (1)
@cryptoctopus ·
$78.97
KISS (KEEP IT SIMPLE STUPID) is the name of the game. 

I am not that bright when it comes to details but in terms of adoption,  assume the average user has an IQ of 85. 

I personnaly know no one in real life that could tell me what a prediction market is. Every new behavior that need to be learned is additional friction to adoption.
๐Ÿ‘  , , , ,
properties (23)
authorcryptoctopus
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t195711810z
categorysteem
json_metadata{}
created2016-06-01 19:57:15
last_update2016-06-01 19:57:15
depth1
children3
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value39.486 HBD
curator_payout_value39.486 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length336
author_reputation365,406,972,531,657
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,919
net_rshares29,506,248,098,997
author_curate_reward""
vote details (5)
@radioactivities ·
Yes, I'm new here and read that then....tl;dr wtf? It's a bit hard to understand how the upvoting rewards work upon arrival as is
properties (22)
authorradioactivities
permlinkre-cryptoctopus-re-steemitblog-curation-by-prediction-market-proposal-20160602t134636597z
categorysteem
json_metadata{"tags":["steem"]}
created2016-06-02 13:46:30
last_update2016-06-02 13:46:30
depth2
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation12,328,337,528,865
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,623
net_rshares0
@smooth ·
Agree. A prediction market might be the underlying mechanism (and even the current voting system is doing that to an extent), but build it within the hidden scoring rules. Present it with a simple UI of voting.
properties (22)
authorsmooth
permlinkre-cryptoctopus-re-steemitblog-curation-by-prediction-market-proposal-20160601t211348600z
categorysteem
json_metadata{}
created2016-06-01 21:13:48
last_update2016-06-01 21:13:48
depth2
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation253,602,537,834,068
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,021
net_rshares0
@teamsteem ·
Only smart people would try to curate. That's a good thing.
properties (22)
authorteamsteem
permlinkre-cryptoctopus-re-steemitblog-curation-by-prediction-market-proposal-20160602t005007557z
categorysteem
json_metadata{"tags":["steem"]}
created2016-06-02 00:50:06
last_update2016-06-02 00:50:06
depth2
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation284,804,541,406,803
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,197
net_rshares0
@dana-edwards ·
Your hypothesis should be tested as a plugin for Steem. Let the current curation and this new prediction market form exist side by side. Have a "test" or "alpha" version of the site for the extremely new features sort of like how Slashdot has it's beta site tested. Gather real usage statistics and feedback from the users of the new system and compare it with the old.

But I don't support any change which takes away from the old model without first testing and proving the new model through an A/B test or hypothesis test of some sort at least. If the data supports the new model then conduct a poll to see if the users prefer the new model and if more do then switch over.
properties (22)
authordana-edwards
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t195506351z
categorysteem
json_metadata{}
created2016-06-01 19:55:06
last_update2016-06-01 19:55:06
depth1
children3
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length676
author_reputation353,623,611,191,427
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,917
net_rshares0
@dantheman ·
What about changes that simply reduce curation payouts under the current model while we test new models. 

Also we suggested a simple rule that curation rewards are only paid out when an author makes an "above average" post (for that author).
๐Ÿ‘  
properties (23)
authordantheman
permlinkre-dana-edwards-re-steemitblog-curation-by-prediction-market-proposal-20160601t203237285z
categorysteem
json_metadata{"tags":["steem"]}
created2016-06-01 20:32:36
last_update2016-06-01 20:32:36
depth2
children2
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length242
author_reputation240,292,002,602,347
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,962
net_rshares11,334,315,650
author_curate_reward""
vote details (1)
@abit ·
In regards to the "above average" suggestion, most likely an author's "replies" to other posts would be much less valuable, but her "blogs" would be more valuable, so a strategy for bots would be: up-vote "blogs", ignore "replies".

Another example: an author is good at writing "funny" posts but not good at writing "serious" posts, so bots vote for her "funny" posts and ignore "serious" posts.

My 2 cents.
properties (22)
authorabit
permlinkre-dantheman-re-dana-edwards-re-steemitblog-curation-by-prediction-market-proposal-20160601t211730527z
categorysteem
json_metadata{}
created2016-06-01 21:17:30
last_update2016-06-01 21:17:30
depth3
children1
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length409
author_reputation141,171,499,037,785
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,023
net_rshares0
@hcf27 · (edited)
IMO this will make it more complex for the regular Joe, steemit main value proposition is being a decentralized social network, not a social prediction market... I think the bot problem its being exaggerated and instead of implementing this complex prediction market idea I would prefer if voting rewards are reduced or even eliminated.
๐Ÿ‘  
properties (23)
authorhcf27
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t190216934z
categorysteem
json_metadata{}
created2016-06-01 19:02:18
last_update2016-06-01 19:03:48
depth1
children1
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length336
author_reputation6,434,093,816,548
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,850
net_rshares8,624,514,510
author_curate_reward""
vote details (1)
@dantheman ·
$0.20
I agree that adding a prediction market would complicate the protocol.
๐Ÿ‘  ,
properties (23)
authordantheman
permlinkre-hcf27-re-steemitblog-curation-by-prediction-market-proposal-20160601t191010769z
categorysteem
json_metadata{}
created2016-06-01 19:10:09
last_update2016-06-01 19:10:09
depth2
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.098 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation240,292,002,602,347
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,855
net_rshares542,835,685,987
author_curate_reward""
vote details (2)
@james-show ·
So the question  is : how we fix the fucked up system and we still keep our huge stake untouched?
The answer is:  there is no such way... but you can keep on trying.
properties (22)
authorjames-show
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t185345222z
categorysteem
json_metadata{}
created2016-06-01 18:53:48
last_update2016-06-01 18:53:48
depth1
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation5,698,866,469,447
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,846
net_rshares0
@liondani · (edited)
How would be the user experience?
Reddit style experience would gone! Which user want to type numbers for each post (predict)... only professional curators... and what will be the interaction with the rest majority of users? Just reading quality pre-prepared content?

I think the average user should participate simply just with his upvote OR  downvote ... else he can go to AUGUR and have the same experience...

PS I upvoted the post because of the brainstorming and not because I want this change!
properties (22)
authorliondani
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t203040718z
categorysteem
json_metadata{}
created2016-06-01 20:30:39
last_update2016-06-01 20:45:18
depth1
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length501
author_reputation95,095,146,236,111
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,961
net_rshares0
@markopaasila · (edited)
$35.03
Three questions:
1. Would the curation reward be the same size as currently? This would result in people predicting mostly hight-quality content and omitting low-quality posts.
2. Could I reduce my accumulated penalty by posting low quality content and predicting the outcome to my own vote?
3. Would it matter if whales could adjust the outcome?
๐Ÿ‘  , , ,
properties (23)
authormarkopaasila
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t183555180z
categorysteem
json_metadata{}
created2016-06-01 18:35:54
last_update2016-06-01 18:36:45
depth1
children1
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value17.514 HBD
curator_payout_value17.513 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length346
author_reputation32,771,884,740,822
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,826
net_rshares19,035,825,052,623
author_curate_reward""
vote details (4)
@dan ·
Good questions:
1. I could see keeping rewards the same size they are now.
2. it is easy to predict content with 0 value, hard to predict content with high value.  It is also easier to manipulate low-value predictions for accuracy because it requires less total Steem Power.  It seems clear that predictions below a certain threshold should not count toward your reputation. You can still earn rewards for making those predictions.  As a bot you could predict everything to earn $10 and be right some fraction of the time.  It may be the case that there is no value in predicting low-value payouts.  Either predict high or go home.   I would say that predicting things that would claim more than 0.1% of the daily rewards.  In other words, predicting the top 1000 posts each day will provide the most value to the readers.
๐Ÿ‘  
properties (23)
authordan
permlinkre-markopaasila-re-steemitblog-curation-by-prediction-market-proposal-20160601t185105586z
categorysteem
json_metadata{}
created2016-06-01 18:51:06
last_update2016-06-01 18:51:06
depth2
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length822
author_reputation155,470,101,136,708
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,843
net_rshares8,568,647,899
author_curate_reward""
vote details (1)
@nextgencrypto ·
$0.06
If predictions must be entered within 30 minutes of posting, what happens when one of your favorite content creators is on the opposite side of the world and consistently posts in the middle of the night while you're sleeping?
๐Ÿ‘  , ,
๐Ÿ‘Ž  
properties (23)
authornextgencrypto
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t180532582z
categorysteem
json_metadata{}
created2016-06-01 18:05:33
last_update2016-06-01 18:05:33
depth1
children8
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length226
author_reputation29,794,444,891,592
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,803
net_rshares193,065,429,284
author_curate_reward""
vote details (4)
@dan ·
Why do you have to make money curating his content? By the time you wake up everyone will already know the expected value of his post. In fact, others will have made their prediction *expecting* your vote to be added 12 hours later. The purpose of curation rewards is to quickly filter content as it is submitted.
properties (22)
authordan
permlinkre-nextgencrypto-re-steemitblog-curation-by-prediction-market-proposal-20160601t182729868z
categorysteem
json_metadata{}
created2016-06-01 18:27:30
last_update2016-06-01 18:27:30
depth2
children1
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length313
author_reputation155,470,101,136,708
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,818
net_rshares0
@smooth · (edited)
The purpose is also to endorse earlier votes. Early votes are voting on the post. Later votes are voting on the post and on earlier votes. That's why I suggest rewards for downvoting, but even the lack of an endorsement is sort of a punishment. The system is effectively zero sum to a large extent. If your early upvote fails to gain endorsements and other upvotes gain endorsements, then you are losing value even without having downvotes (facebook like or nothing model).
properties (22)
authorsmooth
permlinkre-dan-re-nextgencrypto-re-steemitblog-curation-by-prediction-market-proposal-20160601t210746300z
categorysteem
json_metadata{}
created2016-06-01 21:07:45
last_update2016-06-01 21:09:06
depth3
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length473
author_reputation253,602,537,834,068
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,011
net_rshares0
@ned ·
$2.44
A bot could allow you to up-vote and make a prediction.
๐Ÿ‘  
properties (23)
authorned
permlinkre-nextgencrypto-re-steemitblog-curation-by-prediction-market-proposal-20160601t180723701z
categorysteem
json_metadata{}
created2016-06-01 18:07:24
last_update2016-06-01 18:07:24
depth2
children1
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value1.218 HBD
curator_payout_value1.219 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation94,449,026,656,258
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,806
net_rshares3,876,125,928,015
author_curate_reward""
vote details (1)
@dan ·
In this case you would be risking your reputation when your bot increases your miss-prediction rate. This will hurt your potential curation rewards for things you are personally predicting.
properties (22)
authordan
permlinkre-ned-re-nextgencrypto-re-steemitblog-curation-by-prediction-market-proposal-20160601t182902744z
categorysteem
json_metadata{}
created2016-06-01 18:29:03
last_update2016-06-01 18:29:03
depth3
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length189
author_reputation155,470,101,136,708
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,820
net_rshares0
@samupaha ·
My initial thought is that something like two hours might be optimal time. 30 minutes is little bit too short.
๐Ÿ‘  
properties (23)
authorsamupaha
permlinkre-nextgencrypto-re-steemitblog-curation-by-prediction-market-proposal-20160601t182440217z
categorysteem
json_metadata{}
created2016-06-01 18:24:39
last_update2016-06-01 18:24:39
depth2
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation43,637,433,899,367
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,817
net_rshares8,777,639,312
author_curate_reward""
vote details (1)
@smooth · (edited)
Q: what happens if you are sleeping

Change your sleep schedule (or be a passive reader). Look everyone can't be everywhere all the time. People on the same side of the earth will tend to vote on each others stuff more than people on the other side. That is unavoidable and not a problem.

BTW: I had to paraphrase the question because quoting it using markdown is broken.
properties (22)
authorsmooth
permlinkre-nextgencrypto-re-steemitblog-curation-by-prediction-market-proposal-20160601t211109100z
categorysteem
json_metadata{}
created2016-06-01 21:11:09
last_update2016-06-01 21:12:24
depth2
children2
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length372
author_reputation253,602,537,834,068
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,016
net_rshares0
@arhag ·
> BTW: I had to paraphrase the question because quoting it using markdown is broken.

How is it broken? Looks fine to me.
properties (22)
authorarhag
permlinkre-smooth-re-nextgencrypto-re-steemitblog-curation-by-prediction-market-proposal-20160601t211807695z
categorysteem
json_metadata{}
created2016-06-01 21:18:06
last_update2016-06-01 21:18:06
depth3
children1
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation52,490,827,205,383
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,024
net_rshares0
@smooth ·
$0.21
I'm not sure whether a reputation score is needed and I'm increasing;y unsure whether there is even a problem at all that needs fixing. The allocation of rewards among participants is largely zero sum and the system is inflationary (and will likely be inflationary in practice even for SP holders) which means anyone who gains less-than-average rewards (including dumb bots, at least relative to smarter bots) is actually losing.

I guess the idea of a reputation is to penalize those who participate but make bad predictions more than those who don't participate at all, but I'm not sure that is even desirable from first principles. I suppose you could say that people who don't even have any SP are also spectators but aren't penalized, so that would be an argument for it.
๐Ÿ‘  ,
properties (23)
authorsmooth
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t212422600z
categorysteem
json_metadata{}
created2016-06-01 21:24:21
last_update2016-06-01 21:24:21
depth1
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.105 HBD
curator_payout_value0.105 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length776
author_reputation253,602,537,834,068
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,026
net_rshares577,280,562,275
author_curate_reward""
vote details (2)
@tuck-fheman ·
I can't spend all of my time here reading these long well thought out post! I have too many titles and authors to skim within seconds and upvote as fast as possible. Could you please reduce your post to one sentence from now on so I can get on with securing a lifestyle of the rich and famous by clicking my mouse button? ;)
๐Ÿ‘  , ,
properties (23)
authortuck-fheman
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t185049481z
categorysteem
json_metadata{}
created2016-06-01 18:50:51
last_update2016-06-01 18:50:51
depth1
children3
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length324
author_reputation345,778,813,561,569
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,842
net_rshares12,081,927,594
author_curate_reward""
vote details (3)
@dana-edwards ·
Now if we could see how many votes you got for "funny" we would know how funny you are.
properties (22)
authordana-edwards
permlinkre-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t200000373z
categorysteem
json_metadata{}
created2016-06-01 20:00:00
last_update2016-06-01 20:00:00
depth2
children1
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation353,623,611,191,427
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,931
net_rshares0
@teamsteem ·
I'd go along with what the data mining bot had determine.
properties (22)
authorteamsteem
permlinkre-dana-edwards-re-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160602t020001802z
categorysteem
json_metadata{"tags":["steem"]}
created2016-06-02 02:00:00
last_update2016-06-02 02:00:00
depth3
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation284,804,541,406,803
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,244
net_rshares0
@markopaasila ·
Funny. I also skip some high-quality posts to read the popular ones. I guess time will fix this
properties (22)
authormarkopaasila
permlinkre-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t185730090z
categorysteem
json_metadata{}
created2016-06-01 18:57:30
last_update2016-06-01 18:57:30
depth2
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation32,771,884,740,822
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,849
net_rshares0
@tuck-fheman · (edited)
$2.09
It sounds like the best way to play this game is to just continue doing what most bots are currently doing ... focus on dan, ned and any business tied to Steem and only upvote their post. Only now you get to play a game of predicting the monetary value of their post.

Why would anyone, that wants to earn for curating, waste their time on any other accounts? We all know (my assumption) going in that things will continue in this fashion. We're told that 20 votes is best to prevent from diluting our voting power and that creates a situation where the curator will/should focus on only 20 accounts/post they know will consistently be upvoted (dan, ned and steem related service accounts).

Why would a curator waste time on upvoting the new guy who just made a great post if they risk not only a financial gain from doing so, because other "curators" are only focusing on the "Big 20", and also give up one of their precious votes (assuming a 20 vote dilution limit) on the new guy?

Risk taking by actually attempting to curate good content, from new users or lesser known users, is not beneficial in this scenario afaict. I simply don't see most "curators" branching out to take risk like this very often when you can continue doing what works and make a steady income. 

I'm not very bright (and it shows), but I simply don't see this changing human behavior one bit. I think it will eliminate most unsophisticated bots, but it will do very little to change the human desire to maximize their own rewards using the easiest method possible. And the easiest method is to continue doing what's been proven to work ... upvote dan, ned and any steem related service account.

That's my 2 STEEM.

Edit: grammar.
๐Ÿ‘  , , , , , , , ,
properties (23)
authortuck-fheman
permlinkre-steemitblog-curation-by-prediction-market-proposal-20160601t192028124z
categorysteem
json_metadata{}
created2016-06-01 19:20:30
last_update2016-06-01 19:49:00
depth1
children18
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value1.044 HBD
curator_payout_value1.043 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,710
author_reputation345,778,813,561,569
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,865
net_rshares3,505,154,953,551
author_curate_reward""
vote details (9)
@arhag · (edited)
$56.65
I think the very calculation of reward payouts for curation (not just on how it is distributed to curators, but the amount of the curation payout itself), needs to be adjusted by which account is the author of the post in question, and how consistently their posts have been upvoted in the recent past. I think the system should give boosts to curation payouts (not content payouts) for underdog winners relative to consistent winners, since it is much more difficult for curators to consistently predict the underdog winners.

Like you said, if we all know that @dan and @ned's posts will get highly upvoted (based on historical data from the recent past) what value are curators (those collectively voting for that post) adding by confirming that? Certainly not as much as that added by the curators accurately predicting the success of an underdog post. And yet, because a post's curation rewards is equal to its content rewards (in the current system and seemingly in this proposal as well) the former set of curators would earn a much larger payout than the latter set.
๐Ÿ‘  , , , , , , , , ,
properties (23)
authorarhag
permlinkre-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t195832596z
categorysteem
json_metadata{"users":["dan","ned"]}
created2016-06-01 19:58:33
last_update2016-06-01 20:06:12
depth2
children9
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value28.324 HBD
curator_payout_value28.324 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,074
author_reputation52,490,827,205,383
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,922
net_rshares24,705,226,119,740
author_curate_reward""
vote details (10)
@dana-edwards ·
So can you and Dan work together on an algorithm and then come up with a way so users can opt-in to test it? I think curation is important as it is. Maybe it's not earning a whole lot of money for the average person right now but it's the feeling of playing a game which really matters here and these small wins each day keeps a person playing. 

If certain players are consistently big winners for long periods of time but you want to figure out how to encourage underdogs then figure out some bonuses for underdogs?  Prediction markets are a bit complicated I think and even less players can play that game.
๐Ÿ‘  
properties (23)
authordana-edwards
permlinkre-arhag-re-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t202749875z
categorysteem
json_metadata{}
created2016-06-01 20:27:48
last_update2016-06-01 20:27:48
depth3
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length609
author_reputation353,623,611,191,427
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,957
net_rshares8,986,630,724
author_curate_reward""
vote details (1)
@dantheman ·
$4.60
I think this is a huge insight. Something that could easily be implemented.  A simple rule could be that curation rewards are only paid if a post's author receives a final reward greater than their average reward. In this way half of the time curators get nothing for upvoting consistent winners. This would also mean that authors make more from their lessor posts when they maintain a high average.  Authors would have no incentive to spam low value posts because it would lower their average reward and in turn cause them to lose more to curators when they create something great.
๐Ÿ‘  , , , ,
properties (23)
authordantheman
permlinkre-arhag-re-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t202719047z
categorysteem
json_metadata{"tags":["steem"]}
created2016-06-01 20:27:18
last_update2016-06-01 20:27:18
depth3
children6
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value2.300 HBD
curator_payout_value2.300 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length582
author_reputation240,292,002,602,347
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,956
net_rshares5,848,957,446,409
author_curate_reward""
vote details (5)
@smooth ·
$1.74
Won't this tend to destroy the rewards received by consistently good authors? With no incentive to upvote, these authors will get fewer upvotes and and less rewards). Yes, they will still get some from the joy of rewarding but in a competitive system you will get what you pay for which is a lot less participation in voting for these authors.
๐Ÿ‘  
properties (23)
authorsmooth
permlinkre-arhag-re-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t215029700z
categorysteem
json_metadata{}
created2016-06-01 21:50:30
last_update2016-06-01 21:50:30
depth3
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.870 HBD
curator_payout_value0.870 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length343
author_reputation253,602,537,834,068
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,052
net_rshares3,078,210,304,915
author_curate_reward""
vote details (1)
@dana-edwards · (edited)
I just voted your post up and I doubt it's going to offer much in terms of curation. People tend to vote for what is valuable but I think one problem with voting is it's STRICTLY UP AND DOWN. If it were more detailed so you could communicate more like insightful, interesting, sad, funny, then maybe people would be able to vote up and curate in more creative and diversified ways. This way people would vote more and you'd have more granular curation.

Up or down doesn't communicate much. It doesn't tell the world why a particular post is valuable. This means people trying to figure out what to curate cannot for example decide to vote up the most funny posts on Steemit with their bot because they will have no way to determine what is or isn't funny according to quantified means. Only a human can detect funny but a bot could then vote up everything initial human curators voted as funny.
๐Ÿ‘  ,
properties (23)
authordana-edwards
permlinkre-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t195727528z
categorysteem
json_metadata{}
created2016-06-01 19:57:27
last_update2016-06-01 19:59:09
depth2
children3
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length895
author_reputation353,623,611,191,427
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,921
net_rshares5,134,749,973
author_curate_reward""
vote details (2)
@chitty ·
> If it were more detailed so you could communicate more like insightful, interesting, sad, funny, then maybe people would be able to vote up and curate in more creative and diversified ways.

Yes, I like where you are going with this..... we could have more than one way to vote and reward voters who voted as most people did, for example if your bot voted "funny" but most people voted "angry" then your bots gets nothing and its fair since you didnยดt actually read the post.
๐Ÿ‘  
properties (23)
authorchitty
permlinkre-dana-edwards-re-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t200525056z
categorysteem
json_metadata{}
created2016-06-01 20:05:24
last_update2016-06-01 20:05:24
depth3
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length477
author_reputation86,901,300,608,582
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,939
net_rshares785,823,929
author_curate_reward""
vote details (1)
@pheonike ·
Maybe this something where the use of Emoji's can be used to vote on content.  You have a range of emojis, most likely 5 at most that people can choose from. This help give a more granular response and eliminate the binary option that computers are good at.
properties (22)
authorpheonike
permlinkre-dana-edwards-re-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t203954914z
categorysteem
json_metadata{}
created2016-06-01 20:39:54
last_update2016-06-01 20:39:54
depth3
children1
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length257
author_reputation13,601,091,311,745
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,971
net_rshares0
@dantheman ·
$0.05
So as someone who is interested in growing the value of Steem, not collecting sycophants, we need to shift the reward structure for voting.  One way for us to do that is to downvote our own posts.  This will create a scenario where our own content gets ignored and harder to find even though it is what is of interest to many users.
๐Ÿ‘  ,
properties (23)
authordantheman
permlinkre-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t193232117z
categorysteem
json_metadata{}
created2016-06-01 19:32:30
last_update2016-06-01 19:32:30
depth2
children2
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length332
author_reputation240,292,002,602,347
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,885
net_rshares149,301,345,437
author_curate_reward""
vote details (2)
@smooth ·
If it is of interest to many users then it is good that it gets votes. There is no reason for you to downvote it, and no actual problem here.

If you really want to punish the bots for assuming your posts are valuable, go ahead and post "dont upvote this post" occasionally and downvote that after the bots upvote it. You could even create a bot to do it!
๐Ÿ‘  
properties (23)
authorsmooth
permlinkre-dantheman-re-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t212814200z
categorysteem
json_metadata{}
created2016-06-01 21:28:15
last_update2016-06-01 21:28:15
depth3
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length355
author_reputation253,602,537,834,068
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,030
net_rshares8,986,630,724
author_curate_reward""
vote details (1)
@tuck-fheman ·
I didn't want to be the one to say it, and I'm impressed and pleased that you did. :)
properties (22)
authortuck-fheman
permlinkre-dantheman-re-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t194647827z
categorysteem
json_metadata{}
created2016-06-01 19:46:51
last_update2016-06-01 19:46:51
depth3
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation345,778,813,561,569
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,910
net_rshares0
@smooth · (edited)
> focus on dan, ned and any business tied to Steem and only upvote their post

That is actually correct curation given the current userbase.

It might even be correct curation later because, well, what else do _all_ steem users have in common besides steem? The diference is that later ned, dan, etc. will likely make much less frequent steem-related posts, or their posts will be technical and nature and not appeal to all steem users, so probably _only_ voting for their posts won't work. For now all their posts are of interest to nearly all system users, so it shouldn't be a surprise (or viewed as a failure) that they attract the most votes.
properties (22)
authorsmooth
permlinkre-tuck-fheman-re-steemitblog-curation-by-prediction-market-proposal-20160601t220847900z
categorysteem
json_metadata{}
created2016-06-01 22:08:48
last_update2016-06-01 22:18:36
depth2
children0
last_payout2016-08-24 00:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length647
author_reputation253,602,537,834,068
root_title"Curation by Prediction Market Proposal"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,075
net_rshares0