STEEM Payment reward system demystified.

in #steemit7 years ago

In this post you will learn how the reward payment is calculated, how much do you receive and how much will the curator receive. You will also learn why and how the payment window works and how it is divided. You will also learn why the maximum curation reward is penalised. We will also decompose a reward payment on an example: the TOP #1 reward post from last week. You will see why it received more than 5k STEEM and what was the sequence of upvotes that made it to reach the top. I will not describe things myself and link to other important posts for reference.


STEEM

Payment reward ingredients

Payment reward ingredients are : Account's holdings of Vesting Shares (Vests), converted into STEEM Power, current Voting Power which gives Reward Shares value, votes' timing and Vote weight. All those things combined make a single VOTE reward and multiple votes that collectively sum up to a total reward for a post that is later split into three parts. Two parts go to the author and the third part of the reward goes to people that curated the post. Post curation is an activity of making a post popular by getting it noticed by other people and encourage them to add their upvotes that further increase total pending payout, making the post trending and even viral in extreme cases.


STEEM Vote state is kept inside of an object that has internal representation as:


struct vote_state {

      string         voter;

      uint64_t       weight = 0;

      int64_t        rshares = 0;

      int16_t        percent = 0;

      share_type     reputation = 0;

      time_point_sec time;

   };

Payment reward windows

The payment and how it is split depends on three payment reward windows:


First 30 minutes after a new post is submitted is called STEEMIT REVERSE AUCTION WINDOW. This is a time when the early votes receive a penalty. Please see below for the details.

30 minutes to 24 hours is the remaining time for the first payout window, the penalty for early voting is equal to 0.

30 days for the second payout window. Upvotes after 30 days do not bring any reward to the author anymore.

Note: Also votes in the last minute of the 24 hour window do not increase the reward in the first payout.


Curation

Curation algorithm was changed already, in the beginning 50% of the rewards went to curators, now it is 25% of the total payout to the curators.


Early vote penalty

During the first 30 minutes after post is published early votes get a penalty. Currently this penalty is calculated as a linear equation:


/// discount weight by time

uint128_t w(max_vote_weight);

uint64_t delta_t = std::min( 

      uint64_t((cv.last_update - comment.created).to_seconds()), 

      uint64_t(STEEMIT_REVERSE_AUCTION_WINDOW_SECONDS) );

      

w *= delta_t;

w /= STEEMIT_REVERSE_AUCTION_WINDOW_SECONDS;

cv.weight = w.to_uint64();

Here is the post that elaborates a bit more on it and gives a few examples.


Post reward vs Reward Pool

This paragraph will be the most interesting for you who want to learn how their reward is calculated. If you paid attention to my previous posts in the series you noticed how Reward Shares were calculated and converted.


How Much Share of Vesting Shares Your Account Has (how rich in STEEM POWER you are) * current Voting Power == Reward Shares


The crucial thing to understand is that the rewards are taken from a pool of shares. What does it mean?


The total rewards payout amount on STEEMIT.COM does not increase when the total number of upvotes increases. The reward pool is always the same. People with the most STEEM POWER decide how this pool is divided by bringing their votes. The more total votes weight the bigger piece of pie the author receives.


Where do the reward shares come from? They are mined by witnesses. A set of 21 witnesses provides a round of blocks that are added to the blockchain every 21 * 3 seconds for a block = 63 seconds. 19 of those witnesses are the ones selected by community, one witness is a miner and 21st witness is a backup witness.


The total pool of produced Vests is divided and part of it lands to reward shares pool. I was looking for a way to describe this and and think that a picture is worth 1000 words let's imagine that reward shares come from witness nodes like drops of water (vests) into the reward pool.

drops


If you would like to know how much goes to reward pool, compared to total STEEM supply imagine that daily reward pool increases with 2 bottles of fresh water (Vests) and the total supply is a whole bath of water.

Sort:  

So do you really think Steemit is not a waste of time?
Please see my post in this regard at
https://steemit.com/steemit/@csmit/steemitwaste-of-time-some-key-questions-you-need-to-be-honest-about

Thank you Abdo22!