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

View this thread on steempeak.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)
post_id11,722,536
authoroflyhigh
permlinkhow-to-calculate-estimated-account-value-part-two
categorysteemdev
json_metadata"{"app": "steemit/0.1", "format": "markdown", "links": ["https://steemit.com/steemdev/@oflyhigh/how-to-calculate-estimated-account-value-part-one", "https://github.com/steemit/steem"], "image": ["https://steemitimages.com/DQmbJsbAdBGz7L6r7nkrEuJjeZHGcpb3Lh2ABo7iei98v1S/image.png"], "tags": ["steemdev", "steemit", "wallet", "cn-programming", "cn"]}"
created2017-09-02 05:27:12
last_update2017-09-02 08:00:39
depth0
children61
net_rshares74,722,146,420,817
last_payout2017-09-09 05:27:12
cashout_time1969-12-31 23:59:59
total_payout_value238.745 SBD
curator_payout_value49.103 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4,373
author_reputation1,148,153,621,496,884
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (421)
@cointraveler ·
excellent post friend
properties (22)
post_id11,722,644
authorcointraveler
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t052909205z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 05:29:18
last_update2017-09-02 05:29:18
depth1
children0
net_rshares0
last_payout2017-09-09 05:29:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation21,765,957,547
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@agamsaia ·
nice post and i like read your post... thank you
properties (22)
post_id11,723,152
authoragamsaia
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t053948020z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 05:39:45
last_update2017-09-02 05:39:45
depth1
children0
net_rshares0
last_payout2017-09-09 05:39:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length48
author_reputation2,094,648,287,961
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@leyla5 ·
Step by step explanation...great work! 👍
properties (22)
post_id11,723,244
authorleyla5
permlinkre-oflyhigh-201792t94137547z
categorysteemdev
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-09-02 05:41:42
last_update2017-09-02 05:41:42
depth1
children1
net_rshares0
last_payout2017-09-09 05:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length40
author_reputation1,039,122,303,835
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
Thank you.
properties (22)
post_id11,743,431
authoroflyhigh
permlinkre-leyla5-re-oflyhigh-201792t94137547z-20170902t115925629z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 11:59:33
last_update2017-09-02 11:59:33
depth2
children0
net_rshares0
last_payout2017-09-09 11:59:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation1,148,153,621,496,884
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,723,439
authorhectorjoachim
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t054534916z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["oflyhigh"], "tags": ["steemdev"]}"
created2017-09-02 05:45:39
last_update2017-09-02 05:45:39
depth1
children0
net_rshares0
last_payout2017-09-09 05:45:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length298
author_reputation842,472,154,758
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@angela.ghkh ·
useful dear,,
thanks
# upvoted
properties (22)
post_id11,724,171
authorangela.ghkh
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t055803407z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 05:58:03
last_update2017-09-02 05:58:03
depth1
children0
net_rshares0
last_payout2017-09-09 05:58:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation2,891,419,536,579
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sylvia1997 ·
有些人说自己英语不好,我又被骗了
properties (22)
post_id11,724,409
authorsylvia1997
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060254155z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 06:02:30
last_update2017-09-02 06:02:30
depth1
children4
net_rshares0
last_payout2017-09-09 06:02:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation12,783,997,194,630
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jubi ·
o哥说喜欢美女 这个绝对错不了。:)
properties (22)
post_id11,724,483
authorjubi
permlinkre-sylvia1997-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060340710z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 06:03:42
last_update2017-09-02 06:03:42
depth2
children1
net_rshares0
last_payout2017-09-09 06:03:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation81,283,051,616,409
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
你知道的太多了!🔫
properties (22)
post_id11,743,499
authoroflyhigh
permlinkre-jubi-re-sylvia1997-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t120032914z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 12:00:42
last_update2017-09-02 12:00:42
depth3
children0
net_rshares0
last_payout2017-09-09 12:00:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation1,148,153,621,496,884
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
哪个骗子,揭发他!😡
properties (22)
post_id11,743,469
authoroflyhigh
permlinkre-sylvia1997-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t120008846z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 12:00:18
last_update2017-09-02 12:00:18
depth2
children1
net_rshares0
last_payout2017-09-09 12:00:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation1,148,153,621,496,884
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sylvia1997 ·
切,你还不知道吗
properties (22)
post_id11,753,049
authorsylvia1997
permlinkre-oflyhigh-re-sylvia1997-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t142433912z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 14:24:36
last_update2017-09-02 14:24:36
depth3
children0
net_rshares0
last_payout2017-09-09 14:24:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length8
author_reputation12,783,997,194,630
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mohdhaekal ·
permission to reblog again
because its very nice post
properties (22)
post_id11,724,430
authormohdhaekal
permlinkre-oflyhigh-201792t13250461z
categorysteemdev
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-09-02 06:02:54
last_update2017-09-02 06:02:54
depth1
children1
net_rshares0
last_payout2017-09-09 06:02:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length53
author_reputation2,374,409,141,035
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
Thank you.
properties (22)
post_id11,743,518
authoroflyhigh
permlinkre-mohdhaekal-re-oflyhigh-201792t13250461z-20170902t120053799z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 12:01:03
last_update2017-09-02 12:01:03
depth2
children0
net_rshares0
last_payout2017-09-09 12:01:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation1,148,153,621,496,884
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@padmakshi ·
very useful information thank you @oflyhigh for sharing
properties (22)
post_id11,724,501
authorpadmakshi
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060359881z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["oflyhigh"], "tags": ["steemdev"]}"
created2017-09-02 06:04:03
last_update2017-09-02 06:04:03
depth1
children0
net_rshares0
last_payout2017-09-09 06:04:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length55
author_reputation1,093,676,521,224
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@maestroq ·
Thanks for sharing!
properties (22)
post_id11,724,723
authormaestroq
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060837727z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 06:08:39
last_update2017-09-02 06:08:39
depth1
children0
net_rshares0
last_payout2017-09-09 06:08:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length19
author_reputation5,918,644,051,863
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,724,774
authormanishsingh9
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t060937805z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 06:09:36
last_update2017-09-02 06:09:36
depth1
children1
net_rshares0
last_payout2017-09-09 06:09:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length197
author_reputation11,452,199,077
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
You are welcome!
properties (22)
post_id11,743,553
authoroflyhigh
permlinkre-manishsingh9-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t120120352z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 12:01:27
last_update2017-09-02 12:01:27
depth2
children0
net_rshares0
last_payout2017-09-09 12:01:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation1,148,153,621,496,884
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,724,951
authorrejzons
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t061426448z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["oflyhigh"], "tags": ["steemdev"]}"
created2017-09-02 06:12:54
last_update2017-09-02 06:12:54
depth1
children1
net_rshares0
last_payout2017-09-09 06:12:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length183
author_reputation5,050,487,881,097
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
Welcome.
properties (22)
post_id11,743,568
authoroflyhigh
permlinkre-rejzons-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t120140081z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 12:01:48
last_update2017-09-02 12:01:48
depth2
children0
net_rshares0
last_payout2017-09-09 12:01:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length8
author_reputation1,148,153,621,496,884
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,725,302
authorgigpen
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t062059684z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 06:21:03
last_update2017-09-02 06:21:03
depth1
children0
net_rshares0
last_payout2017-09-09 06:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length174
author_reputation381,163,328,808
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sunrays ·
simplified but accurated detailed one. good post
👍  
properties (23)
post_id11,726,144
authorsunrays
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t064636832z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 06:38:30
last_update2017-09-02 06:38:30
depth1
children1
net_rshares1,143,213,709
last_payout2017-09-09 06:38:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length48
author_reputation7,262,917,501
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id11,735,970
authorjasonshick
permlinkre-sunrays-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t093938503z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 09:47:09
last_update2017-09-02 09:47:09
depth2
children0
net_rshares1,143,213,194
last_payout2017-09-09 09:47:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length100
author_reputation33,971,217,438,318
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@ogunlaja ·
thanks for sharing i will take my time to study this
👍  
properties (23)
post_id11,727,057
authorogunlaja
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t065811181z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 06:58:12
last_update2017-09-02 06:58:12
depth1
children0
net_rshares765,455,616
last_payout2017-09-09 06:58:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length52
author_reputation176,468,285,661
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@roronoazoro ·
Very complete and useful article.
Didn't had this view about the subject.
I'm sharing !
properties (22)
post_id11,727,805
authorroronoazoro
permlinkre-oflyhigh-201792t101224968z
categorysteemdev
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-09-02 07:12:27
last_update2017-09-02 07:12:27
depth1
children0
net_rshares0
last_payout2017-09-09 07:12:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length87
author_reputation58,284,832,879
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@erraji ·
Good post.
Good. Luck!
Follow me thanks!
properties (22)
post_id11,729,145
authorerraji
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t073851984z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 07:38:57
last_update2017-09-02 07:38:57
depth1
children0
net_rshares0
last_payout2017-09-09 07:38:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length40
author_reputation4,489,750,652
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nicejob ·
Great explanation!
Ty
properties (22)
post_id11,730,281
authornicejob
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t080005142z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 08:00:03
last_update2017-09-02 08:00:03
depth1
children0
net_rshares0
last_payout2017-09-09 08:00:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation0
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@holl.boll ·
wow nice job
properties (22)
post_id11,730,375
authorholl.boll
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t080144219z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 08:01:42
last_update2017-09-02 08:01:42
depth1
children0
net_rshares0
last_payout2017-09-09 08:01:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length12
author_reputation-30,354,439,797
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,730,651
authorsakshi1524
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t080705016z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 08:06:57
last_update2017-09-02 08:06:57
depth1
children2
net_rshares630,241,581
last_payout2017-09-09 08:06:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length115
author_reputation-62,293,745,530
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id11,771,959
authordwarrilow2002
permlinkre-sakshi1524-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t183248450z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 18:32:48
last_update2017-09-02 18:32:48
depth2
children1
net_rshares1,699,860,024
last_payout2017-09-09 18:32:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length493
author_reputation30,045,385,302,046
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@sakshi1524 · (edited)
thanks... and i wish u all the best
👍  
properties (23)
post_id11,854,299
authorsakshi1524
permlinkre-dwarrilow2002-201793t23478639z
categorysteemdev
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-09-03 18:17:12
last_update2017-09-03 18:17:36
depth3
children0
net_rshares365,599,407
last_payout2017-09-10 18:17:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length35
author_reputation-62,293,745,530
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id11,731,517
authorsid9999
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t082217956z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 08:22:21
last_update2017-09-02 08:22:21
depth1
children1
net_rshares222,149,783
last_payout2017-09-09 08:22:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length118
author_reputation1,063,326,571,637
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id11,755,870
authoroddnugget
permlinkre-sid9999-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t145955446z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["minnowsupport", "randowhale"], "tags": ["steemdev"]}"
created2017-09-02 15:00:03
last_update2017-09-02 15:00:03
depth2
children0
net_rshares0
last_payout2017-09-09 15:00:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length114
author_reputation640,717,618,867
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nantorious ·
Thanks for this detailed post!
👍  
properties (23)
post_id11,732,602
authornantorious
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t084320155z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 08:43:18
last_update2017-09-02 08:43:18
depth1
children0
net_rshares123,037,872
last_payout2017-09-09 08:43:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation29,892,040,056
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@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)
post_id11,732,871
authorfikarmalow
permlinkre-oflyhigh-201792t154814367z
categorysteemdev
json_metadata"{"app": "esteem/1.4.5", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-09-02 08:48:18
last_update2017-09-02 08:48:18
depth1
children1
net_rshares0
last_payout2017-09-09 08:48:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length163
author_reputation245,470,891,568
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
Thank you.
properties (22)
post_id11,743,629
authoroflyhigh
permlinkre-fikarmalow-re-oflyhigh-201792t154814367z-20170902t120228420z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 12:02:36
last_update2017-09-02 12:02:36
depth2
children0
net_rshares0
last_payout2017-09-09 12:02:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation1,148,153,621,496,884
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,740,810
authorrooneey
permlinkre-oflyhigh-201792t18125289z
categorysteemdev
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-09-02 11:13:03
last_update2017-09-02 11:13:03
depth1
children0
net_rshares0
last_payout2017-09-09 11:13:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length124
author_reputation8,867,021,832,214
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mhain ·
Gone over my head 🙄🙄
properties (22)
post_id11,747,524
authormhain
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t130506469z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 13:05:09
last_update2017-09-02 13:05:09
depth1
children0
net_rshares0
last_payout2017-09-09 13:05:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation1,995,262,314
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@beccadeals ·
Very detailed informative post. Thanks for all the information.
properties (22)
post_id11,748,563
authorbeccadeals
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t132105180z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 13:21:06
last_update2017-09-02 13:21:06
depth1
children0
net_rshares0
last_payout2017-09-09 13:21:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation1,685,259,044,750
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@thegoliath ·
Great post giving necessary information to understand your Steemit account, thanks for this!
properties (22)
post_id11,749,046
authorthegoliath
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t132900245z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 13:29:00
last_update2017-09-02 13:29:00
depth1
children0
net_rshares0
last_payout2017-09-09 13:29:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length92
author_reputation41,900,791,057,866
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@keks ·
I always visit your blog because you inspires me.   Do what you do. Thank you very much for sharing inspiring content.
properties (22)
post_id11,755,404
authorkeks
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t145424128z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 14:54:24
last_update2017-09-02 14:54:24
depth1
children0
net_rshares0
last_payout2017-09-09 14:54:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length118
author_reputation3,043,219,887,107
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oddnugget ·
Or... we could just take the account value estimation on the wallet as gospel :)

Great post!
properties (22)
post_id11,755,802
authoroddnugget
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t145906939z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 14:59:12
last_update2017-09-02 14:59:12
depth1
children0
net_rshares0
last_payout2017-09-09 14:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length93
author_reputation640,717,618,867
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bigyellow ·
O哥这中文够简洁的。哈哈
properties (22)
post_id11,760,191
authorbigyellow
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t155641229z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 15:56:30
last_update2017-09-02 15:56:30
depth1
children0
net_rshares0
last_payout2017-09-09 15:56:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length12
author_reputation7,337,625,723,461
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rappiro ·
Nice
properties (22)
post_id11,760,595
authorrappiro
permlinkre-oflyhigh-201792t13148185z
categorysteemdev
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-09-02 16:01:48
last_update2017-09-02 16:01:48
depth1
children0
net_rshares0
last_payout2017-09-09 16:01:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation8,958,230,280,187
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,763,182
authorfhakrul
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t163323806z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 16:33:24
last_update2017-09-02 16:33:24
depth1
children0
net_rshares0
last_payout2017-09-09 16:33:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length111
author_reputation307,452,322,299
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,771,890
authorapplesspatrick
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t183146756z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/cn/@applesspatrick/saturday-photography-awesome-shot-in-a-rainy-day"], "tags": ["steemdev"]}"
created2017-09-02 18:31:48
last_update2017-09-02 18:31:48
depth1
children0
net_rshares0
last_payout2017-09-09 18:31:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length179
author_reputation1,314,888,384,444
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,779,247
authortatimaryati
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t203303649z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["oflyhigh", "tatimaryati"], "tags": ["steemdev"]}"
created2017-09-02 20:33:09
last_update2017-09-02 20:33:09
depth1
children0
net_rshares0
last_payout2017-09-09 20:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length158
author_reputation236,834,215,077
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gostar ·
The method is streamlined but has great utility
Thank you for this useful article
We await your further information
properties (22)
post_id11,780,537
authorgostar
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t205430906z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 20:54:15
last_update2017-09-02 20:54:15
depth1
children0
net_rshares0
last_payout2017-09-09 20:54:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length115
author_reputation27,542,287,033
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@saeedshaikh ·
your post is very nice, full pack of knowledge and very attractive :-)
properties (22)
post_id11,781,493
authorsaeedshaikh
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t210959223z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 21:10:03
last_update2017-09-02 21:10:03
depth1
children0
net_rshares0
last_payout2017-09-09 21:10:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length70
author_reputation95,499,258,602
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@elegente ·
Excellent tutorial! Resteemed!
properties (22)
post_id11,786,474
authorelegente
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t224145402z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 22:41:42
last_update2017-09-02 22:41:42
depth1
children0
net_rshares0
last_payout2017-09-09 22:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation-274,017,170,680
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@chaofanjun ·
O哥,代理的SP能算入账户资产吗?
properties (22)
post_id11,788,822
authorchaofanjun
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t233153644z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 23:31:54
last_update2017-09-02 23:31:54
depth1
children1
net_rshares0
last_payout2017-09-09 23:31:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length17
author_reputation3,260,868,859,118
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
当然不能 😄
properties (22)
post_id11,789,724
authoroflyhigh
permlinkre-chaofanjun-re-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170902t235139280z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-02 23:51:39
last_update2017-09-02 23:51:39
depth2
children0
net_rshares0
last_payout2017-09-09 23:51:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation1,148,153,621,496,884
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@endless.drugs ·
A very well made post, the value of my account is just under five dollars, I will anyways continue with this website as I enjoy the community not the payout. Also this is just my starting point as I joined Steem It on August, 2017! Thanks for the post, it is very well made and quite interesting to read...
👍  
properties (23)
post_id11,791,848
authorendless.drugs
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t003944824z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-03 00:39:48
last_update2017-09-03 00:39:48
depth1
children0
net_rshares426,684,947
last_payout2017-09-10 00:39:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length306
author_reputation32,359,365,692,962
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@davidrestrepo ·
$0.40
Super cool thanks!
👍  
properties (23)
post_id11,792,377
authordavidrestrepo
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t005201445z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-03 00:51:51
last_update2017-09-03 00:51:51
depth1
children0
net_rshares104,394,861,428
last_payout2017-09-10 00:51:51
cashout_time1969-12-31 23:59:59
total_payout_value0.393 SBD
curator_payout_value0.010 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation756,639,289,550
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@jasonmunapasee ·
Good
Please apvote me. 
https://steemit.com/travel/@jasonmunapasee/travels-lake-fresh-water-treatment-201792t184242680z
properties (22)
post_id11,801,778
authorjasonmunapasee
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t041351843z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/travel/@jasonmunapasee/travels-lake-fresh-water-treatment-201792t184242680z"], "tags": ["steemdev"]}"
created2017-09-03 04:14:00
last_update2017-09-03 04:14:00
depth1
children0
net_rshares0
last_payout2017-09-10 04:14:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length119
author_reputation323,593,656,929,629
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptotrader2017 ·
I use https://steemd.com there all the info
properties (22)
post_id11,811,921
authorcryptotrader2017
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t074046387z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "links": ["https://steemd.com"], "tags": ["steemdev"]}"
created2017-09-03 07:40:51
last_update2017-09-03 07:40:51
depth1
children0
net_rshares0
last_payout2017-09-10 07:40:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation7,902,741,526,413
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@edgaras123 ·
Very usefull information!
Thank you for sharing this great information. :)
properties (22)
post_id11,817,026
authoredgaras123
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t092256738z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-03 09:22:54
last_update2017-09-03 09:22:54
depth1
children0
net_rshares0
last_payout2017-09-10 09:22:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length74
author_reputation10,880,946,292
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@imth3best1 · (edited)
thanks 4 such a nice post
👍  
properties (23)
post_id11,822,992
authorimth3best1
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t110842599z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-03 11:08:45
last_update2017-09-03 11:09:18
depth1
children0
net_rshares645,656,007
last_payout2017-09-10 11:08:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length25
author_reputation21,053,937,692
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@reinhardbaust ·
Vielen Dank für diesen sehr informativen Beitrag.....Auch ich bin über jegliche Unterstützung dankbar
properties (22)
post_id11,823,862
authorreinhardbaust
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t112357149z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-03 11:23:57
last_update2017-09-03 11:23:57
depth1
children0
net_rshares0
last_payout2017-09-10 11:23:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length101
author_reputation3,414,548,873
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id11,837,463
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
net_rshares0
last_payout2017-09-10 14:41:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length208
author_reputation231,443,210,169,699
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ruttydm ·
Thank you for part 2! Is there an online tool for this?
properties (22)
post_id11,838,825
authorruttydm
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20170903t145840731z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-09-03 14:58:39
last_update2017-09-03 14:58:39
depth1
children0
net_rshares0
last_payout2017-09-10 14:58:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length55
author_reputation173,780,082,874
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@alexeyqian ·
Finally know how to calculation between all these assets, great post!
properties (22)
post_id26,552,155
authoralexeyqian
permlinkre-oflyhigh-how-to-calculate-estimated-account-value-part-two-20180119t041155763z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2018-01-19 04:11:57
last_update2018-01-19 04:11:57
depth1
children0
net_rshares0
last_payout2018-01-26 04:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length69
author_reputation0
root_title"How to calculate estimated account value: Part Two / 如何计算账户估值:第二部分"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000