You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As an applocation developer, I would like to know more about each component involved in calculating an upvote so that I can understand what I'm calculating.
For example, instead of just saying "calculating value of each vote depends on multiple factors", more details should be added, like:
We use delegated_vesting_shares but why? If you do not account for this, the caclulation will be thrown off because delegated_vesting_shares is STEEM Power that has been delegated to someone else and cannot be included as part of total_vests. If it's not accounted for in the calculation (and it's non-zero), the estimated upvote would be higher than it should be.
As an applocation developer, I would like to know more about each component involved in calculating an upvote so that I can understand what I'm calculating.
Specifically, the final calculation:
https://github.com/steemit/devportal/blame/88368fe89f62759edd37ea5efd0dce4e20345066/_tutorials-recipes/estimate_upvote.md#L200-L204
For example, instead of just saying "calculating value of each vote depends on multiple factors", more details should be added, like:
(extends: #157)
AC
final_vest
...vesting_shares
?received_vesting_shares
?delegated_vesting_shares
?total_vests
by1e6
power
...voting_power
?weight
?10000
?50
?rshares
...rshares
and why do we multiplypower
withfinal_vests
then divide it all by10000
?estimate
...rshares / recent_claims * reward_balance * sbd_median_price
The text was updated successfully, but these errors were encountered: