create account

How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分 by oflyhigh

View this thread on: hive.blogpeakd.comecency.com
· @oflyhigh · (edited)
$287.85
How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分
In my [previous article](https://steemit.com/steemdev/@oflyhigh/how-to-calculate-estimated-account-value-part-one), we concluded that:
To calculate estimated account value, we need to get items from these four parts:
1) The assets in wallet( And in SAVINGS)
2) The assets in internal market
3) The assets(SBD) in conversion processes
4) The assets(rewards) to be claimed

I will explain how to get them in this article.

![](https://steemitimages.com/DQmbJsbAdBGz7L6r7nkrEuJjeZHGcpb3Lh2ABo7iei98v1S/image.png)

# The assets in wallet( And in SAVINGS)

The following assets need to be fetched.

* STEEM
* STEEM POWER
* STEEM DOLLARS
* STEEM in SAVINGS
* STEEM DOLLARS in SAVINGS

There is a API named **`get_accounts`** will retrieve the account information which contained the above items.
` vector< extended_account > get_accounts( vector< string > names ) const;`

To retrieve them we need to put the account name into list, and then call API with this list as arguments. We can read the item value from the result using the corresponding key.


Item | Key 
----|----
STEEM | balance
STEEM POWER | vesting_shares
STEEM DOLLARS| sbd_balance
STEEM in SAVINGS| savings_balance
STEEM DOLLARS in SAVINGS | savings_sbd_balance

![](https://steemitimages.com/DQmePGpEQhp6GcCRfqPrqWHop4eKarF4pmEZ77s21NprFLR/image.png)
![](https://steemitimages.com/DQmQETyNWCmG71g62JbedfCg58PZXiEjCtaMiD4FVYarFq2/image.png)
![](https://steemitimages.com/DQmNnnmDmmVpJ8hWjZieRdR6pEZmvLXS1JtQm4wwwdj4MB6/image.png)
![](https://steemitimages.com/DQmc6REL5iKYF6hDDxvMeFWvPEDNXcAHyaMmK3SnE6ZGNwX/image.png)

An additional note, STEEM POWER was expressed in the form of  VESTS, we need to convert it to equivalent STEEM.

# The assets in internal market

To simplify the problem, In order to simplify the problem, we define two type of operations: ***BUY*** and ***SELL***.
* **BUY**: We pay SBD, and want to receive STEEM
* **SELL**: We pay STEEM, and want to receive SBD

So, We get the following correspondence

Asset| How to calculate
---|----
STEEM in internal market |  Remaining STEEM in all opening SELL order
STEEM DOLLARS in internal market | Remaining SBD in all opening BUY order

There is a API named **`get_open_orders`**, will return all open orders in internal market for specified account.
`vector<extended_limit_order> get_open_orders( string owner )const;`

The example return information for my account.
![](https://steemitimages.com/DQmXaRGkLLRGHDviC7YUT6RtuNmAaiP4z4523ehkimF2oM5/image.png)

We can draw the results from above information: we have 0.586 STEEM and 2 SBD in internal market.

# The assets(SBD) in conversion processes

As I mentioned in previous article, if we try to convert some amount SBD to STEEM, it will disappear from the wallet. So to accurately calculate the estimated account value, we need to get this part of SBD.

Fortunately, there is a API called **`get_conversion_requests`**.
`vector<convert_request_api_obj> get_conversion_requests( const string& account_name )const;`

The result should like this one, We can work out the total amount of SBD easily.
![](https://steemitimages.com/DQmbQyo4FaENctoreWzudn9cEpfqp9U4ZZeCHNSziMf7omf/image.png)

# The assets(rewards) to be claimed

And after HF18, users need to claim their rewards manually, so to accurately calculate the estimated account value, we need to add this part: Rewards to be claim.

The good news is we can retrieval them directly from user info,  with same API  **`get_accounts`** and the same way.


Item | Key 
----|----
STEEM Reward to be claimed |  `reward_steem_balance`
STEEM DOLLARS to be claimed | `reward_sbd_balance`
STEEM POWER to be claimed | `reward_vesting_balance` / `reward_vesting_steem`

![](https://steemitimages.com/DQmTRx1tH8Cp7J2rQP5raa23fxB2iray8MDa6BkPc51ZhHd/image.png)
For STEEM POWER to be claimed, we can obtain it from **`reward_vesting_balance`** or **`reward_vesting_steem`**, but the previous one need to be converted, so the later one is better.

For detailed usage of APIs, Please refer to the [**steem source code** on Github](https://github.com/steemit/steem).

# 中文

上篇文章中我们得出结论,精确计算账户估值,我们需要读取:

* 钱包资产(包括存款账户)
* 内部市场资产
* 转换中的资产
* 待收取的资产

我们可以使用:
**`get_accounts`**读回钱包资产(包括存款账户)
**`get_open_orders`**读回并计算出内部市场资产
**`get_conversion_requests`**读回并计算出 转换中的资产
**`get_accounts`**读回待收取的资产

API的详细用法,请参考[Github上的steem源码](https://github.com/steemit/steem)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 356 others
👎  
properties (23)
authoroflyhigh
permlinkhow-to-calculate-estimated-account-value-part-two
categorysteemdev
json_metadata{"tags":["steemdev","steemit","wallet","cn-programming","cn"],"image":["https://steemitimages.com/DQmbJsbAdBGz7L6r7nkrEuJjeZHGcpb3Lh2ABo7iei98v1S/image.png","https://steemitimages.com/DQmePGpEQhp6GcCRfqPrqWHop4eKarF4pmEZ77s21NprFLR/image.png","https://steemitimages.com/DQmQETyNWCmG71g62JbedfCg58PZXiEjCtaMiD4FVYarFq2/image.png","https://steemitimages.com/DQmNnnmDmmVpJ8hWjZieRdR6pEZmvLXS1JtQm4wwwdj4MB6/image.png","https://steemitimages.com/DQmc6REL5iKYF6hDDxvMeFWvPEDNXcAHyaMmK3SnE6ZGNwX/image.png","https://steemitimages.com/DQmXaRGkLLRGHDviC7YUT6RtuNmAaiP4z4523ehkimF2oM5/image.png","https://steemitimages.com/DQmbQyo4FaENctoreWzudn9cEpfqp9U4ZZeCHNSziMf7omf/image.png","https://steemitimages.com/DQmTRx1tH8Cp7J2rQP5raa23fxB2iray8MDa6BkPc51ZhHd/image.png"],"links":["https://steemit.com/steemdev/@oflyhigh/how-to-calculate-estimated-account-value-part-one","https://github.com/steemit/steem"],"app":"steemit/0.1","format":"markdown"}
created2017-09-02 05:27:12
last_update2017-09-02 08:00:39
depth0
children61
last_payout2017-09-09 05:27:12
cashout_time1969-12-31 23:59:59
total_payout_value238.745 HBD
curator_payout_value49.103 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,373
author_reputation6,284,572,834,290,229
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,617,616
net_rshares74,722,146,420,817
author_curate_reward""
vote details (421)
@agamsaia ·
nice post and i like read your post... thank you
properties (22)
authoragamsaia
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t053948020z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 05:39:45
last_update2017-09-02 05:39:45
depth1
children0
last_payout2017-09-09 05:39:45
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_length48
author_reputation2,090,775,223,533
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,618,325
net_rshares0
@alexeyqian ·
Finally know how to calculation between all these assets, great post!
properties (22)
authoralexeyqian
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20180119t041155763z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-19 04:11:57
last_update2018-01-19 04:11:57
depth1
children0
last_payout2018-01-26 04:11:57
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_length69
author_reputation181,222,266
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,540,688
net_rshares0
@angela.ghkh ·
useful dear,,
thanks
# upvoted
properties (22)
authorangela.ghkh
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t055803407z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 05:58:03
last_update2017-09-02 05:58:03
depth1
children0
last_payout2017-09-09 05:58:03
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_length30
author_reputation2,888,077,605,665
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,619,488
net_rshares0
@applesspatrick ·
写的很清楚,看一次就能了解了。
谢谢
有空的话看下我的 post, 谢谢 :)
Please check out my post too if possible, Thanks :)
https://steemit.com/cn/@applesspatrick/saturday-photography-awesome-shot-in-a-rainy-day
properties (22)
authorapplesspatrick
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t183146756z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://steemit.com/cn/@applesspatrick/saturday-photography-awesome-shot-in-a-rainy-day"],"app":"steemit/0.1"}
created2017-09-02 18:31:48
last_update2017-09-02 18:31:48
depth1
children0
last_payout2017-09-09 18:31:48
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_length179
author_reputation1,315,638,110,417
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,673,728
net_rshares0
@arcange ·
Congratulations @oflyhigh!
Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170902) in the following category:

* Pending payout - Ranked 4 with $ 302,11
properties (22)
authorarcange
permlinkre-how-to-calculate-estimated-account-value-part-two-20170902t164318000z
categorysteemdev
json_metadata""
created2017-09-03 14:41:57
last_update2017-09-03 14:41:57
depth1
children0
last_payout2017-09-10 14:41:57
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_length208
author_reputation1,146,606,639,109,506
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,748,707
net_rshares0
@beccadeals ·
Very detailed informative post. Thanks for all the information.
properties (22)
authorbeccadeals
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t132105180z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 13:21:06
last_update2017-09-02 13:21:06
depth1
children0
last_payout2017-09-09 13:21:06
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_length63
author_reputation1,684,200,351,243
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,647,327
net_rshares0
@bigyellow ·
O哥这中文够简洁的。哈哈
properties (22)
authorbigyellow
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t155641229z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 15:56:30
last_update2017-09-02 15:56:30
depth1
children0
last_payout2017-09-09 15:56:30
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_length12
author_reputation7,347,169,841,366
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,660,506
net_rshares0
@chaofanjun ·
O哥,代理的SP能算入账户资产吗?
properties (22)
authorchaofanjun
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t233153644z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 23:31:54
last_update2017-09-02 23:31:54
depth1
children1
last_payout2017-09-09 23:31:54
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_length17
author_reputation3,294,852,863,443
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,693,105
net_rshares0
@oflyhigh ·
当然不能 😄
properties (22)
authoroflyhigh
permlinkre-chaofanjun-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t235139280z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 23:51:39
last_update2017-09-02 23:51:39
depth2
children0
last_payout2017-09-09 23:51:39
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_length6
author_reputation6,284,572,834,290,229
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,694,156
net_rshares0
@cointraveler ·
excellent post friend
properties (22)
authorcointraveler
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t052909205z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 05:29:18
last_update2017-09-02 05:29:18
depth1
children0
last_payout2017-09-09 05:29:18
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_length21
author_reputation21,756,488,559
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,617,737
net_rshares0
@cryptotrader2017 ·
I use https://steemd.com there all the info
properties (22)
authorcryptotrader2017
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t074046387z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://steemd.com"],"app":"steemit/0.1"}
created2017-09-03 07:40:51
last_update2017-09-03 07:40:51
depth1
children0
last_payout2017-09-10 07:40:51
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_length43
author_reputation7,902,886,759,634
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,719,652
net_rshares0
@davidrestrepo ·
$0.40
Super cool thanks!
👍  
properties (23)
authordavidrestrepo
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t005201445z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-03 00:51:51
last_update2017-09-03 00:51:51
depth1
children0
last_payout2017-09-10 00:51:51
cashout_time1969-12-31 23:59:59
total_payout_value0.393 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation757,119,534,433
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,697,276
net_rshares104,394,861,428
author_curate_reward""
vote details (1)
@edgaras123 ·
Very usefull information!
Thank you for sharing this great information. :)
properties (22)
authoredgaras123
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t092256738z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-03 09:22:54
last_update2017-09-03 09:22:54
depth1
children0
last_payout2017-09-10 09:22:54
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_length74
author_reputation10,891,883,384
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,725,549
net_rshares0
@elegente ·
Excellent tutorial! Resteemed!
properties (22)
authorelegente
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t224145402z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 22:41:42
last_update2017-09-02 22:41:42
depth1
children0
last_payout2017-09-09 22:41:42
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_length30
author_reputation-273,943,619,793
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,690,406
net_rshares0
@endless.drugs · (edited)
properties (23)
authorendless.drugs
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t003944824z
categorysteemdev
json_metadata{"app":"hiveblog/0.1"}
created2017-09-03 00:39:48
last_update2022-05-03 04:30:48
depth1
children0
last_payout2017-09-10 00:39:48
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_length1
author_reputation31,910,531,697,153
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,696,680
net_rshares426,684,947
author_curate_reward""
vote details (1)
@erraji ·
Good post.
Good. Luck!
Follow me thanks!
properties (22)
authorerraji
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t073851984z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 07:38:57
last_update2017-09-02 07:38:57
depth1
children0
last_payout2017-09-09 07:38:57
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_length40
author_reputation4,492,031,957
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,625,258
net_rshares0
@fhakrul ·
i hope u explain soon how to get payouts also.. and thanks for this one :) many of us needed to know all this..
properties (22)
authorfhakrul
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t163323806z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 16:33:24
last_update2017-09-02 16:33:24
depth1
children0
last_payout2017-09-09 16:33:24
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_length111
author_reputation307,725,527,834
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,663,867
net_rshares0
@fikarmalow ·
you always become useful when you start to write a post and share with us, somehow we should be grateful, because what you submit is really very easy to understand
properties (22)
authorfikarmalow
permlinkre-oflyhigh-201792t154814367z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-09-02 08:48:18
last_update2017-09-02 08:48:18
depth1
children1
last_payout2017-09-09 08:48:18
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_length163
author_reputation245,684,224,045
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,629,463
net_rshares0
@oflyhigh ·
Thank you.
properties (22)
authoroflyhigh
permlinkre-fikarmalow-re-oflyhigh-201792t154814367z-20170902t120228420z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 12:02:36
last_update2017-09-02 12:02:36
depth2
children0
last_payout2017-09-09 12:02:36
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_length10
author_reputation6,284,572,834,290,229
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,641,734
net_rshares0
@gigpen ·
This is an area that has always baffled me and I believe others too. You have made so clear even for new users. I recommend others to book mark the post for future reference.
properties (22)
authorgigpen
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t062059684z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 06:21:03
last_update2017-09-02 06:21:03
depth1
children0
last_payout2017-09-09 06:21:03
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_length174
author_reputation381,110,239,767
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,620,809
net_rshares0
@gostar ·
The method is streamlined but has great utility
Thank you for this useful article
We await your further information
properties (22)
authorgostar
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t205430906z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 20:54:15
last_update2017-09-02 20:54:15
depth1
children0
last_payout2017-09-09 20:54:15
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_length115
author_reputation27,511,165,434
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,683,554
net_rshares0
@hectorjoachim ·
Excellent post @oflyhigh, I agree with what you write, it's very interesting, thanks for sharing that information   , I follow you, we must support ourselves as a community, I appreciate it if you I would give me a look at my last post and give me your opinion, greetings and success in everything.
properties (22)
authorhectorjoachim
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t054534916z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["oflyhigh"],"app":"steemit/0.1"}
created2017-09-02 05:45:39
last_update2017-09-02 05:45:39
depth1
children0
last_payout2017-09-09 05:45:39
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_length298
author_reputation842,137,746,604
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,618,652
net_rshares0
@holl.boll ·
wow nice job
properties (22)
authorholl.boll
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t080144219z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 08:01:42
last_update2017-09-02 08:01:42
depth1
children0
last_payout2017-09-09 08:01:42
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_length12
author_reputation-30,357,862,109
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,626,634
net_rshares0
@imth3best1 · (edited)
thanks 4 such a nice post
👍  
properties (23)
authorimth3best1
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t110842599z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-03 11:08:45
last_update2017-09-03 11:09:18
depth1
children0
last_payout2017-09-10 11:08:45
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_length25
author_reputation21,088,747,939
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,732,237
net_rshares645,656,007
author_curate_reward""
vote details (1)
@jasonmunapasee ·
Good
Please apvote me. 
https://steemit.com/travel/@jasonmunapasee/travels-lake-fresh-water-treatment-201792t184242680z
properties (22)
authorjasonmunapasee
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t041351843z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://steemit.com/travel/@jasonmunapasee/travels-lake-fresh-water-treatment-201792t184242680z"],"app":"steemit/0.1"}
created2017-09-03 04:14:00
last_update2017-09-03 04:14:00
depth1
children0
last_payout2017-09-10 04:14:00
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_length119
author_reputation762,044,151,528,650
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,707,991
net_rshares0
@keks ·
I always visit your blog because you inspires me.   Do what you do. Thank you very much for sharing inspiring content.
properties (22)
authorkeks
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t145424128z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 14:54:24
last_update2017-09-02 14:54:24
depth1
children0
last_payout2017-09-09 14:54:24
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_length118
author_reputation3,120,009,340,054
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,655,100
net_rshares0
@leyla5 ·
Step by step explanation...great work! 👍
properties (22)
authorleyla5
permlinkre-oflyhigh-201792t94137547z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-02 05:41:42
last_update2017-09-02 05:41:42
depth1
children1
last_payout2017-09-09 05:41:42
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_length40
author_reputation1,040,285,308,040
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,618,429
net_rshares0
@oflyhigh ·
Thank you.
properties (22)
authoroflyhigh
permlinkre-leyla5-re-oflyhigh-201792t94137547z-20170902t115925629z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 11:59:33
last_update2017-09-02 11:59:33
depth2
children0
last_payout2017-09-09 11:59:33
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_length10
author_reputation6,284,572,834,290,229
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,641,503
net_rshares0
@maestroq ·
Thanks for sharing!
properties (22)
authormaestroq
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060837727z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 06:08:39
last_update2017-09-02 06:08:39
depth1
children0
last_payout2017-09-09 06:08:39
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_length19
author_reputation5,924,317,112,668
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,620,111
net_rshares0
@manishsingh9 ·
Thanks for sharing the Information of steemit account value, Really it helped a lot to understand basic mechanism of steemit.  Also I missed the part one, definitely will navigate and read it out..
properties (22)
authormanishsingh9
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060937805z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 06:09:36
last_update2017-09-02 06:09:36
depth1
children1
last_payout2017-09-09 06:09:36
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_length197
author_reputation11,449,295,224
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,620,166
net_rshares0
@oflyhigh ·
You are welcome!
properties (22)
authoroflyhigh
permlinkre-manishsingh9-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t120120352z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 12:01:27
last_update2017-09-02 12:01:27
depth2
children0
last_payout2017-09-09 12:01:27
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_length16
author_reputation6,284,572,834,290,229
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,641,647
net_rshares0
@mhain ·
Gone over my head 🙄🙄
properties (22)
authormhain
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t130506469z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 13:05:09
last_update2017-09-02 13:05:09
depth1
children0
last_payout2017-09-09 13:05:09
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_length20
author_reputation1,997,446,384
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,646,144
net_rshares0
@mohdhaekal ·
permission to reblog again
because its very nice post
properties (22)
authormohdhaekal
permlinkre-oflyhigh-201792t13250461z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-02 06:02:54
last_update2017-09-02 06:02:54
depth1
children1
last_payout2017-09-09 06:02:54
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_length53
author_reputation2,373,946,032,372
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,619,777
net_rshares0
@oflyhigh ·
Thank you.
properties (22)
authoroflyhigh
permlinkre-mohdhaekal-re-oflyhigh-201792t13250461z-20170902t120053799z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 12:01:03
last_update2017-09-02 12:01:03
depth2
children0
last_payout2017-09-09 12:01:03
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_length10
author_reputation6,284,572,834,290,229
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,641,606
net_rshares0
@nantorious ·
Thanks for this detailed post!
👍  
properties (23)
authornantorious
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t084320155z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 08:43:18
last_update2017-09-02 08:43:18
depth1
children0
last_payout2017-09-09 08:43:18
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_length30
author_reputation29,912,880,936
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,629,157
net_rshares123,037,872
author_curate_reward""
vote details (1)
@nicejob ·
Great explanation!
Ty
properties (22)
authornicejob
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t080005142z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 08:00:03
last_update2017-09-02 08:00:03
depth1
children0
last_payout2017-09-09 08:00:03
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_length21
author_reputation99,707,375
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,626,529
net_rshares0
@oddnugget ·
Or... we could just take the account value estimation on the wallet as gospel :)

Great post!
properties (22)
authoroddnugget
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t145906939z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 14:59:12
last_update2017-09-02 14:59:12
depth1
children0
last_payout2017-09-09 14:59:12
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_length93
author_reputation640,761,657,131
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,655,554
net_rshares0
@ogunlaja ·
thanks for sharing i will take my time to study this
👍  
properties (23)
authorogunlaja
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t065811181z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 06:58:12
last_update2017-09-02 06:58:12
depth1
children0
last_payout2017-09-09 06:58:12
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_length52
author_reputation176,684,260,841
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,622,869
net_rshares765,455,616
author_curate_reward""
vote details (1)
@padmakshi ·
very useful information thank you @oflyhigh for sharing
properties (22)
authorpadmakshi
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060359881z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["oflyhigh"],"app":"steemit/0.1"}
created2017-09-02 06:04:03
last_update2017-09-02 06:04:03
depth1
children0
last_payout2017-09-09 06:04:03
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_length55
author_reputation1,095,407,523,576
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,619,854
net_rshares0
@rappiro ·
Nice
properties (22)
authorrappiro
permlinkre-oflyhigh-201792t13148185z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-02 16:01:48
last_update2017-09-02 16:01:48
depth1
children0
last_payout2017-09-09 16:01:48
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_length4
author_reputation8,955,066,682,926
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,660,949
net_rshares0
@reinhardbaust ·
Vielen Dank für diesen sehr informativen Beitrag.....Auch ich bin über jegliche Unterstützung dankbar
properties (22)
authorreinhardbaust
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t112357149z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-03 11:23:57
last_update2017-09-03 11:23:57
depth1
children0
last_payout2017-09-10 11:23:57
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_length101
author_reputation3,411,826,005
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,733,214
net_rshares0
@rejzons ·
Thanks a lot for sharing this post @oflyhigh ^_^ you have feed our minds with a knowledge about calculating the estimated account value. This sure is worthy for sharing :) Keep it up!
properties (22)
authorrejzons
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t061426448z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["oflyhigh"],"app":"steemit/0.1"}
created2017-09-02 06:12:54
last_update2017-09-02 06:12:54
depth1
children1
last_payout2017-09-09 06:12:54
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_length183
author_reputation5,048,601,082,793
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,620,364
net_rshares0
@oflyhigh ·
Welcome.
properties (22)
authoroflyhigh
permlinkre-rejzons-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t120140081z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 12:01:48
last_update2017-09-02 12:01:48
depth2
children0
last_payout2017-09-09 12:01:48
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_length8
author_reputation6,284,572,834,290,229
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,641,666
net_rshares0
@rooneey ·
So clear....i just post and upvote on steemit but never know how to calculate it. But your post really elaborate it clearly.
properties (22)
authorrooneey
permlinkre-oflyhigh-201792t18125289z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-02 11:13:03
last_update2017-09-02 11:13:03
depth1
children0
last_payout2017-09-09 11:13:03
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_length124
author_reputation8,862,226,725,886
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,638,527
net_rshares0
@roronoazoro ·
Very complete and useful article.
Didn't had this view about the subject.
I'm sharing !
properties (22)
authorroronoazoro
permlinkre-oflyhigh-201792t101224968z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-02 07:12:27
last_update2017-09-02 07:12:27
depth1
children0
last_payout2017-09-09 07:12:27
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_reputation58,241,631,353
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,623,721
net_rshares0
@ruttydm ·
Thank you for part 2! Is there an online tool for this?
properties (22)
authorruttydm
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t145840731z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-03 14:58:39
last_update2017-09-03 14:58:39
depth1
children0
last_payout2017-09-10 14:58:39
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_length55
author_reputation173,804,565,165
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,750,266
net_rshares0
@saeedshaikh ·
your post is very nice, full pack of knowledge and very attractive :-)
properties (22)
authorsaeedshaikh
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t210959223z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 21:10:03
last_update2017-09-02 21:10:03
depth1
children0
last_payout2017-09-09 21:10:03
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_length70
author_reputation95,404,093,559
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,684,692
net_rshares0
@sakshi1524 ·
**i hope u explain soon how to get payouts also.. and thanks for this one :) many of us needed to know all this..**
👍  ,
properties (23)
authorsakshi1524
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t080705016z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 08:06:57
last_update2017-09-02 08:06:57
depth1
children2
last_payout2017-09-09 08:06:57
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_length115
author_reputation-62,326,817,280
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,626,960
net_rshares630,241,581
author_curate_reward""
vote details (2)
@dwarrilow2002 ·
There are many people who have strategies to get payouts. I think the biggest thing is participate. Create your own interesting posts, make well written and informed replies and up vote posts which you think deserve it. I believe the first 50 votes you make in the day are the most valuable. Check your wallet every day because I think it takes about a week for the steem to start fogging in (someone please correct me if I am wrong).  Of course I only make pennies but I take joy in learning.
👍  , ,
properties (23)
authordwarrilow2002
permlinkre-sakshi1524-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t183248450z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 18:32:48
last_update2017-09-02 18:32:48
depth2
children1
last_payout2017-09-09 18:32:48
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_length493
author_reputation3,266,337,977,991
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,673,808
net_rshares1,699,860,024
author_curate_reward""
vote details (3)
@sakshi1524 · (edited)
thanks... and i wish u all the best
👍  
properties (23)
authorsakshi1524
permlinkre-dwarrilow2002-201793t23478639z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-03 18:17:12
last_update2017-09-03 18:17:36
depth3
children0
last_payout2017-09-10 18:17:12
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_length35
author_reputation-62,326,817,280
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,767,786
net_rshares365,599,407
author_curate_reward""
vote details (1)
@sid9999 ·
Is there any technique for a post to come in trending section because I am feeling jealous seeing your payout money 🤣🤣
👍  
properties (23)
authorsid9999
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t082217956z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 08:22:21
last_update2017-09-02 08:22:21
depth1
children1
last_payout2017-09-09 08:22: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_length118
author_reputation1,063,603,177,392
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,627,919
net_rshares222,149,783
author_curate_reward""
vote details (1)
@oddnugget ·
We all would love a bone or two to be thrown our way haha.

Try joining @minnowsupport or giving @randowhale a go!
properties (22)
authoroddnugget
permlinkre-sid9999-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t145955446z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["minnowsupport","randowhale"],"app":"steemit/0.1"}
created2017-09-02 15:00:03
last_update2017-09-02 15:00:03
depth2
children0
last_payout2017-09-09 15:00:03
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_length114
author_reputation640,761,657,131
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,655,628
net_rshares0
@sunrays ·
simplified but accurated detailed one. good post
👍  
properties (23)
authorsunrays
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t064636832z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 06:38:30
last_update2017-09-02 06:38:30
depth1
children1
last_payout2017-09-09 06:38:30
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_length48
author_reputation7,261,177,118
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,621,835
net_rshares1,143,213,709
author_curate_reward""
vote details (1)
@jasonshick ·
If this is  the simplified version I would hate to see a detailed version. Valuable info nonetheless
👍  
properties (23)
authorjasonshick
permlinkre-sunrays-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t093938503z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 09:47:09
last_update2017-09-02 09:47:09
depth2
children0
last_payout2017-09-09 09:47:09
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_length100
author_reputation34,285,892,602,808
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,633,008
net_rshares1,143,213,194
author_curate_reward""
vote details (1)
@sylvia1997 ·
有些人说自己英语不好,我又被骗了
properties (22)
authorsylvia1997
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060254155z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 06:02:30
last_update2017-09-02 06:02:30
depth1
children4
last_payout2017-09-09 06:02:30
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_length16
author_reputation56,740,881,429,787
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,619,754
net_rshares0
@jubi ·
o哥说喜欢美女 这个绝对错不了。:)
properties (22)
authorjubi
permlinkre-sylvia1997-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060340710z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 06:03:42
last_update2017-09-02 06:03:42
depth2
children1
last_payout2017-09-09 06:03:42
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_length18
author_reputation82,406,494,254,467
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,619,835
net_rshares0
@oflyhigh ·
你知道的太多了!🔫
properties (22)
authoroflyhigh
permlinkre-jubi-re-sylvia1997-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t120032914z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 12:00:42
last_update2017-09-02 12:00:42
depth3
children0
last_payout2017-09-09 12:00:42
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_length9
author_reputation6,284,572,834,290,229
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,641,584
net_rshares0
@oflyhigh ·
哪个骗子,揭发他!😡
properties (22)
authoroflyhigh
permlinkre-sylvia1997-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t120008846z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 12:00:18
last_update2017-09-02 12:00:18
depth2
children1
last_payout2017-09-09 12:00:18
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_length10
author_reputation6,284,572,834,290,229
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,641,551
net_rshares0
@sylvia1997 ·
切,你还不知道吗
properties (22)
authorsylvia1997
permlinkre-oflyhigh-re-sylvia1997-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t142433912z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 14:24:36
last_update2017-09-02 14:24:36
depth3
children0
last_payout2017-09-09 14:24:36
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_length8
author_reputation56,740,881,429,787
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,652,463
net_rshares0
@tatimaryati ·
Thanks @oflyhigh for a very detàiled information about calculating estimated account. I am new in steemit and your post helped a lot.
Best regard
@tatimaryati
properties (22)
authortatimaryati
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t203303649z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["oflyhigh","tatimaryati"],"app":"steemit/0.1"}
created2017-09-02 20:33:09
last_update2017-09-02 20:33:09
depth1
children0
last_payout2017-09-09 20:33:09
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_length158
author_reputation236,817,667,758
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,682,043
net_rshares0
@thegoliath ·
Great post giving necessary information to understand your Steemit account, thanks for this!
properties (22)
authorthegoliath
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t132900245z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 13:29:00
last_update2017-09-02 13:29:00
depth1
children0
last_payout2017-09-09 13:29:00
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_length92
author_reputation251,393,288,295,570
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,647,878
net_rshares0