create account

Calculate the amount of seized assets in STEEM HF 23 by holger80

View this thread on: hive.blogpeakd.comecency.com
· @holger80 · (edited)
$90.31
Calculate the amount of seized assets in STEEM HF 23
Here is a small script for calculating the total sum of all seized assets in the Steem HF 23 (accounts are copied from [github](https://github.com/steemhardfork/steemhf/blob/hf0.23/libraries/protocol/hardfork.d/0_23.hf) that will be activated on 20 May 2020 14:00:00 UTC.

You can read more about this [here](https://steempeak.com/witness-category/@softfork22888/steem-consensus-witness-statement-hardfork-0-23-codename-new-steem).
```
#!/usr/bin/python
from beem import Steem
from beem.account import Account

if __name__ == "__main__":

    stm = Steem(node="https://api.steemit.com")
    accounts = {
      "abusereports",
      "berniesanders",
      "kingdong",
      "nextgencrypto",
      "ngc",
      "ozchartart",
      "sirvotesalot",
      "sockpuppet",
      "thecyclist",
      "xx0xx",
      "xxxxxxxxxx",
      "z8teyb289qav9z",
      "agent14",
      "curatorhulk",
      "dhenz",
      "drbanner",
      "gokuisreal",
      "johnmadden",
      "realself",
      "theycallmedan",
      "arsahk",
      "blocktrades",
      "darthknight",
      "kevtorin",
      "kriborin",
      "lessys",
      "acidyo",
      "ats-david",
      "ausbitbank",
      "bittrix",
      "clappy",
      "drakos",
      "fefemz",
      "freedom",
      "gtg",
      "howo",
      "jawnz",
      "klobu",
      "likwid",
      "liondani",
      "neoxian",
      "netuoso",
      "ocd-witness",
      "pfunk",
      "pharesim",
      "roelandp",
      "roundbeargames",
      "sooty",
      "steempress",
      "themarkymark",
      "therealwolf",
      "timetickertickin",
      "transisto",
      "znnuksfe",
      "mottler",
      "mottler-1",
      "smooth",
      "smooth.witness",
      "smooth-a",
      "smooth-b",
      "smooth-c",
      "smooth-d",
      "smooth-e",
      "smooth-f",
      "safari"
    }

    null = Account("null", blockchain_instance=stm)
    seized_assets = null.balances
    for account_name in accounts:
        account = Account(account_name, blockchain_instance=stm)
        for asset_type in ['available', 'savings', 'rewards', 'total']:
            for index in range(len(seized_assets[asset_type])):
                seized_assets[asset_type][index] += account.balances[asset_type][index]
        
    USD_STEEM = 0.212018
    USD_SBD = 1.05
    print("Seized assets:")
    print("| asset type | Token | USD value")
    print("| --- | --- | --- |")
    print("| STEEM | %.3f STEEM | %.2f $ |" % (float(seized_assets["available"][0]), float(seized_assets["available"][0]) * USD_STEEM))
    print("| SBD | %.3f SBD | %.2f $ |" % (float(seized_assets["available"][1]), float(seized_assets["available"][1])* USD_SBD))
    print("| STEEM POWER | %.3f STEEM | %.2f $ |" % (stm.vests_to_sp(float(seized_assets["available"][2])), stm.vests_to_sp(float(seized_assets["available"][2])) * USD_STEEM))
    print("| STEEM in savings | %.3f STEEM | %.2f $ |" % (float(seized_assets["savings"][0]), float(seized_assets["savings"][0]) * USD_STEEM))
    print("| SBD in savings | %.3f SBD | %.2f $ |" % (float(seized_assets["savings"][1]), float(seized_assets["savings"][1])* USD_SBD))
    print("| Pending STEEM | %.3f STEEM | %.2f $ |" % (float(seized_assets["rewards"][0]), float(seized_assets["rewards"][0]) * USD_STEEM))
    print("| Pending SBD | %.3f SBD | %.2f $ |" % (float(seized_assets["rewards"][1]), float(seized_assets["rewards"][1])* USD_SBD))
    print("| Pending STEEM POWER | %.3f STEEM | %.2f $ |" % (stm.vests_to_sp(float(seized_assets["rewards"][2])), stm.vests_to_sp(float(seized_assets["rewards"][2])) * USD_STEEM))
    print("| Total STEEM | %.3f STEEM | %.2f $ |" % (float(seized_assets["total"][0]), float(seized_assets["total"][0]) * USD_STEEM))
    print("| Total SBD | %.3f SBD | %.2f $ |" % (float(seized_assets["total"][1]), float(seized_assets["total"][1])* USD_SBD))
    print("| Total STEEM POWER | %.3f STEEM | %.2f $ |" % (stm.vests_to_sp(float(seized_assets["total"][2])), stm.vests_to_sp(float(seized_assets["total"][2])) * USD_STEEM))

    total_sum_usd = float(seized_assets["total"][0]) * USD_STEEM
    total_sum_usd += float(seized_assets["total"][1]) * USD_SBD
    total_sum_usd += stm.vests_to_sp(float(seized_assets["total"][2])) * USD_STEEM
    print("Total sum in USD: %.2f $ " % total_sum_usd)

```

The results are:

| asset type | Token | USD value |
| --- | --- | --- |
| STEEM | 1454787.735 STEEM | 308441.19 $ |
| SBD | 738.021 SBD | 774.92 $ |
| STEEM POWER | 22235913.287 STEEM | 4714413.86 $ |
| STEEM in savings | 0.099 STEEM | 0.02 $ |
| SBD in savings | 26.283 SBD | 27.60 $ |
| Pending STEEM | 15.532 STEEM | 3.29 $ |
| Pending SBD | 362.621 SBD | 380.75 $ |
| Pending STEEM POWER | 13486.216 STEEM | 2859.32 $ |

| asset type | Token | USD value |
| --- | --- | --- |
| Total STEEM | 1454803.366 STEEM | 308444.50 $ |
| Total SBD | 1126.925 SBD | 1183.27 $ |
| Total STEEM POWER | 22249399.503 STEEM | 4717273.18 $ |

This means that in total Steem assets worth 5026900.96 $ will be seized on 20 May 2020 14:00:00 UTC and moved to https://steemd.com/@community321
(When the Steem HF is applied by the majority of Steem witnesses).

👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 419 others
properties (23)
authorholger80
permlinkcalculate-the-amount-of-seized-assets-in-steem-hf-23
categorysteem
json_metadata{"app":"peakd/2020.05.3","format":"markdown","links":["https://github.com/steemhardfork/steemhf/blob/hf0.23/libraries/protocol/hardfork.d/0_23.hf","https://steempeak.com/witness-category/@softfork22888/steem-consensus-witness-statement-hardfork-0-23-codename-new-steem","https://steemd.com/@community321"],"tags":["steem","hardfork"],"users":["softfork22888","community321"],"image":[]}
created2020-05-19 15:35:15
last_update2020-05-19 15:44:21
depth0
children52
last_payout2020-05-26 15:35:15
cashout_time1969-12-31 23:59:59
total_payout_value50.148 HBD
curator_payout_value40.160 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,107
author_reputation358,857,509,568,825
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,468,334
net_rshares174,561,734,135,029
author_curate_reward""
vote details (483)
@abitcoinskeptic ·
Thank you for making a detailed account of their proposed crime. This may come in very handy for compensation lawsuits.
properties (22)
authorabitcoinskeptic
permlinkre-holger80-qalp2p
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 22:56:51
last_update2020-05-19 22:56:51
depth1
children0
last_payout2020-05-26 22:56: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_length119
author_reputation335,387,091,612,941
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,474,911
net_rshares0
@bobinson ·
The story goes on and on ... Where you is your HF 23.1 script ;-) 
properties (22)
authorbobinson
permlinkre-holger80-qaqj1i
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.4"}
created2020-05-22 13:34:30
last_update2020-05-22 13:34:30
depth1
children0
last_payout2020-05-29 13:34: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_length66
author_reputation54,895,169,242,350
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,522,232
net_rshares0
@brianoflondon ·
$0.06
$27.62 in Savings. I always wondered what the point of Savings on Steem was!
👍  
properties (23)
authorbrianoflondon
permlinkre-holger80-qal83y
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 16:50:24
last_update2020-05-19 16:50:24
depth1
children2
last_payout2020-05-26 16:50:24
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation709,129,571,728,062
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,528
net_rshares192,653,743,158
author_curate_reward""
vote details (1)
@holger80 ·
Ironously protection against thief when the active key was leaked.
👍  , ,
properties (23)
authorholger80
permlinkre-brianoflondon-qaladu
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:39:30
last_update2020-05-19 17:39:30
depth2
children1
last_payout2020-05-26 17:39: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_length66
author_reputation358,857,509,568,825
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,223
net_rshares40,048,555,610
author_curate_reward""
vote details (3)
@brianoflondon ·
Lol when someone stole the owner key to the chain. 
properties (22)
authorbrianoflondon
permlinkre-holger80-2020519t224538770z
categorysteem
json_metadata{"tags":["esteem"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-05-19 19:45:39
last_update2020-05-19 19:45:39
depth3
children0
last_payout2020-05-26 19: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_length51
author_reputation709,129,571,728,062
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,472,097
net_rshares0
@cmplxty ·
This all seems to me to just be an angry man-child stomping his feet screaming NO NO NO NO!!11. I have a little solace, that the people who he's doing this do can start a class action lawsuit but knowing how shitty and corrupt courts and stuff are, I unfortunately think it may not lead anywhere. I would love to be wrong about that though!
properties (22)
authorcmplxty
permlinkre-holger80-qalb0e
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:53:03
last_update2020-05-19 17:53:03
depth1
children0
last_payout2020-05-26 17:53: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_length340
author_reputation564,183,427,888,459
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,380
net_rshares0
@codingdefined ·
$0.06
We should show this to the world that who is a scammer.
👍  
properties (23)
authorcodingdefined
permlinkre-holger80-2020519t21567134z
categorysteem
json_metadata{"tags":["steem","hardfork"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-05-19 16:26:09
last_update2020-05-19 16:26:09
depth1
children0
last_payout2020-05-26 16:26:09
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation389,878,764,835,854
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,142
net_rshares193,224,444,360
author_curate_reward""
vote details (1)
@creativetruth ·
$0.37
Who, or what is @community321? What is their statement on this action?
👍  , ,
👎  
properties (23)
authorcreativetruth
permlinkre-holger80-qal9kg
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:21:54
last_update2020-05-19 17:21:54
depth1
children1
last_payout2020-05-26 17:21:54
cashout_time1969-12-31 23:59:59
total_payout_value0.184 HBD
curator_payout_value0.184 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation118,090,431,716,981
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,974
net_rshares1,124,462,795,745
author_curate_reward""
vote details (4)
@holger80 ·
$0.42
This account was created anonymously using anonsteem. Nobody knows who has control about it. 
👍  , , , , , ,
properties (23)
authorholger80
permlinkre-creativetruth-qala9f
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:36:51
last_update2020-05-19 17:36:51
depth2
children0
last_payout2020-05-26 17:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.212 HBD
curator_payout_value0.212 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation358,857,509,568,825
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,196
net_rshares1,277,918,382,757
author_curate_reward""
vote details (7)
@dkid14 ·
$0.06
Wow. Just wow. Sad day. 
👍  
👎  
properties (23)
authordkid14
permlinkre-holger80-qal5up
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 16:01:39
last_update2020-05-19 16:01:39
depth1
children0
last_payout2020-05-26 16:01:39
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation190,272,141,752,297
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,468,751
net_rshares193,605,864,585
author_curate_reward""
vote details (2)
@fbslo ·
$0.08
Great work. I was just thinking about calculating this.
👍  ,
properties (23)
authorfbslo
permlinkqal83d
categorysteem
json_metadata{"app":"hiveblog/0.1"}
created2020-05-19 16:50:06
last_update2020-05-19 16:50:06
depth1
children0
last_payout2020-05-26 16:50:06
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.040 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation163,373,705,640,602
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,518
net_rshares269,085,088,970
author_curate_reward""
vote details (2)
@fingolfin ·
$0.30
Figured I would share this here, its the closest thing I could find to an official statement from the steemit witnesses about the hardfork. You could be excused for not seeing it because its on an account that has 21 followers and 8 steempower and declined payout.

https://steemit.com/witness-category/@softfork22888/steem-consensus-witness-statement-hardfork-0-23-codename-new-steem
👍  ,
properties (23)
authorfingolfin
permlinkre-holger80-qalix4
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 20:43:54
last_update2020-05-19 20:43:54
depth1
children0
last_payout2020-05-26 20:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.152 HBD
curator_payout_value0.152 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length384
author_reputation15,735,446,572,469
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,473,017
net_rshares948,994,530,272
author_curate_reward""
vote details (2)
@forykw ·
Is this on purpose?
![image.png](https://files.peakd.com/file/peakd-hive/forykw/gqvG6Mby-image.png)

properties (22)
authorforykw
permlinkre-holger80-qam7lh
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-20 05:36:54
last_update2020-05-20 05:36:54
depth1
children0
last_payout2020-05-27 05:36: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_length101
author_reputation71,880,485,682,033
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,479,499
net_rshares0
@fw206 ·
I just watched https://steemd.com/witnesses , @gtg, @therealwolf and others also run HF 23. Wouldn’t it be bad for a lawsuit, if you support the HF yourself? or is this the Hive version of HF 23? 
properties (22)
authorfw206
permlinkre-holger80-qalcnl
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 18:28:36
last_update2020-05-19 18:28:36
depth1
children2
last_payout2020-05-26 18:28: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_length196
author_reputation6,769,057,445,170
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,974
net_rshares0
@cadawg ·
$0.16
When they upgraded, they used their Steem nodes, therefore displaying Hive (0.23.0) as their version number. They do not support "New Steem" 0.23.0
👍  
properties (23)
authorcadawg
permlinkre-fw206-qalhg9
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 20:12:12
last_update2020-05-19 20:12:12
depth2
children0
last_payout2020-05-26 20:12:12
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.082 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation96,031,694,625,116
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,472,487
net_rshares529,833,672,035
author_curate_reward""
vote details (1)
@gtg ·
$0.16
HF23, the original one, was one where Hive was born. We are running `v0.23.0` so my node on Steem was just saying - this guy is running a Hive node.
To avoid confusion I generated block on obsolete, broken and centralized Steem network with `v0.22.1` version to avoid confusion.
👍  
👎  
properties (23)
authorgtg
permlinkqaneqx
categorysteem
json_metadata{"app":"hiveblog/0.1"}
created2020-05-20 21:08:57
last_update2020-05-20 21:08:57
depth2
children0
last_payout2020-05-27 21:08:57
cashout_time1969-12-31 23:59:59
total_payout_value0.080 HBD
curator_payout_value0.081 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length278
author_reputation387,318,388,700,625
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,492,669
net_rshares533,187,284,886
author_curate_reward""
vote details (2)
@goldrooster ·
$0.06
Do you mean that these people can/could not get to their steemwallets anymore ?
👍  
properties (23)
authorgoldrooster
permlinkqal6y0
categorysteem
json_metadata{"app":"hiveblog/0.1"}
created2020-05-19 16:25:18
last_update2020-05-19 16:25:18
depth1
children1
last_payout2020-05-26 16:25:18
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation203,260,828,437,204
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,115
net_rshares193,415,059,070
author_curate_reward""
vote details (1)
@holger80 ·
It means that all assets of the listed account are moved to @community321. After HF23, the wallet will be empty for them... 
👍  , ,
properties (23)
authorholger80
permlinkre-goldrooster-qalabh
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:38:06
last_update2020-05-19 17:38:06
depth2
children0
last_payout2020-05-26 17:38: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_length124
author_reputation358,857,509,568,825
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,206
net_rshares40,851,562,975
author_curate_reward""
vote details (3)
@hatoto ·
$0.06
This is incredible. Justin Sun is such a scammer. That must never be forgotten
👍  
👎  
properties (23)
authorhatoto
permlinkre-holger80-qal4v9
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 15:40:21
last_update2020-05-19 15:40:21
depth1
children1
last_payout2020-05-26 15:40:21
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation72,844,244,618,201
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,468,418
net_rshares194,370,998,523
author_curate_reward""
vote details (2)
@papa-pepper ·
And people thought that @ned was bad.... wow!
properties (22)
authorpapa-pepper
permlinkre-hatoto-qam1tn
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-20 03:32:24
last_update2020-05-20 03:32:24
depth2
children0
last_payout2020-05-27 03:32: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_length45
author_reputation1,924,270,574,582,327
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,478,044
net_rshares0
@hivebuzz ·
Congratulations @holger80! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) :

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@holger80/upvoted.png?202005192045"></td><td>You received more than 50000 upvotes. Your next target is to reach 55000 upvotes.</td></tr>
</table>

<sub>_You can view [your badges on your board](https://hivebuzz.me/@holger80) and compare to others on the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @hivebuzz:**
<table><tr><td><a href="/hivebuzz/@hivebuzz/proposal-2020"><img src="https://images.hive.blog/64x128/https://i.imgur.com/qYidoDJ.jpg"></a></td><td><a href="/hivebuzz/@hivebuzz/proposal-2020">The Hive Gamification Proposal</a></td></tr></table>

###### Support the HiveBuzz project. [Vote for our proposal](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22109%22%5D&approve=true)!
properties (22)
authorhivebuzz
permlinkhivebuzz-notify-holger80-20200519t210226000z
categorysteem
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2020-05-19 21:02:24
last_update2020-05-19 21:02:24
depth1
children0
last_payout2020-05-26 21:02: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_length1,066
author_reputation368,413,799,797,710
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,473,319
net_rshares0
@holger80 ·
$0.04
#posh:
https://twitter.com/holger80_/status/1262770320265674760
👍  , , , , ,
properties (23)
authorholger80
permlinkre-holger80-qal4xk
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 15:41:45
last_update2020-05-19 15:41:45
depth1
children0
last_payout2020-05-26 15:41:45
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation358,857,509,568,825
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,468,449
net_rshares121,639,640,013
author_curate_reward""
vote details (6)
@hypexals-spiral ·
$0.06
*Goes to bank*
I'd like to access my funds, thank you.
*look of confusion*
Sorry, your funds have been deposited into the CEO's 'friends' account. You have nothing to withdrawl.
*anger*
By who's authority?!
*smug*
He cast a vote. 17 of his 20 other accounts voted for the transfer.
*anger intensifies*
That is theft!
*smugness intensifies*
No, that is centralised consensus!
👍  
👎  
properties (23)
authorhypexals-spiral
permlinkre-holger80-qal8i2
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 16:58:48
last_update2020-05-19 16:58:48
depth1
children2
last_payout2020-05-26 16:58:48
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length374
author_reputation14,816,573,690,677
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,671
net_rshares192,274,226,224
author_curate_reward""
vote details (2)
@hypexals-spiral ·
*files complaint*
Sorry, it appears you no longer have an account at this establishment. The complaint cannot be filed.
properties (22)
authorhypexals-spiral
permlinkre-hypexals-spiral-qal8ko
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:00:24
last_update2020-05-19 17:00:24
depth2
children1
last_payout2020-05-26 17:00: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_length119
author_reputation14,816,573,690,677
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,692
net_rshares0
@cmplxty ·
lol wouldn't that be salt in the wound to disable the accounts completely as well?
properties (22)
authorcmplxty
permlinkre-hypexals-spiral-qalaxq
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:51:27
last_update2020-05-19 17:51:27
depth3
children0
last_payout2020-05-26 17:51: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_length82
author_reputation564,183,427,888,459
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,362
net_rshares0
@naha ·
![image.png](https://images.hive.blog/DQmcRiDKrW6PsoCTAhJToZuCw8Uu5qbP1BeZk4Sk9FgpLfM/image.png)

The Hive Witnesses moved the Hive Token in 300 wallets to the @steem.dao account.
properties (22)
authornaha
permlinkqamsqg
categorysteem
json_metadata{"users":["steem.dao"],"image":["https://images.hive.blog/DQmcRiDKrW6PsoCTAhJToZuCw8Uu5qbP1BeZk4Sk9FgpLfM/image.png"],"app":"hiveblog/0.1"}
created2020-05-20 13:13:27
last_update2020-05-20 13:13:27
depth1
children0
last_payout2020-05-27 13:13: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_length179
author_reputation306,922,556,728,617
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,485,154
net_rshares0
@peakd-witness ·
![image.png](https://files.peakd.com/file/peakd-hive/peakd-witness/N9PMpilY-image.png)

👎  , , , , , , , , , , , , , , , ,
properties (23)
authorpeakd-witness
permlinkre-holger80-qalb7x
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:57:51
last_update2020-05-19 17:57:51
depth1
children0
last_payout2020-05-26 17:57: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_length88
author_reputation-870,003,083,944
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,440
net_rshares-46,644,505,080,227
author_curate_reward""
vote details (17)
@pfunk ·
On the next episode of Steemy Idiots...


![tenor.gif](https://images.hive.blog/DQmVk39ycmKMBeXDYsZbhzJbXp8z6MRW9cyPfATS89NJ3hg/tenor.gif)
properties (22)
authorpfunk
permlinkqaq3sl
categorysteem
json_metadata{"image":["https://images.hive.blog/DQmVk39ycmKMBeXDYsZbhzJbXp8z6MRW9cyPfATS89NJ3hg/tenor.gif"],"app":"hiveblog/0.1"}
created2020-05-22 08:05:09
last_update2020-05-22 08:05:09
depth1
children0
last_payout2020-05-29 08: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_length138
author_reputation221,632,045,904,452
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,518,263
net_rshares0
@sepracore ·
$0.06
Ignoring the fact that this is just plan wrong to steal people’s property, they are doing this all wrong. By burning these coins, they are deciding to reduce their market cap by ~6% for no real purpose. Talk about shooting yourself in the foot. 
👍  
👎  
properties (23)
authorsepracore
permlinkre-holger80-qal5qs
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 15:59:18
last_update2020-05-19 15:59:18
depth1
children10
last_payout2020-05-26 15:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length245
author_reputation19,850,143,429,858
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,468,706
net_rshares193,796,861,096
author_curate_reward""
vote details (2)
@gtg ·
Who said anything about burning? That goes to a privately owned account.
properties (22)
authorgtg
permlinkqal6nc
categorysteem
json_metadata{"app":"hiveblog/0.1"}
created2020-05-19 16:18:48
last_update2020-05-19 16:18:48
depth2
children9
last_payout2020-05-26 16:18: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_length72
author_reputation387,318,388,700,625
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,016
net_rshares0
@jaybird ·
Exactly!
properties (22)
authorjaybird
permlinkqalq85
categorysteem
json_metadata{"app":"hiveblog/0.1"}
created2020-05-19 23:21:42
last_update2020-05-19 23:21:42
depth3
children0
last_payout2020-05-26 23:21: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_length8
author_reputation381,381,900,170,110
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,475,247
net_rshares0
@rishi556 ·
$1.94
And account doesn't have null keys, nor do I see it in the code to change it to null keys. So 1 bad actor can take all the money and run.
👍  
properties (23)
authorrishi556
permlinkre-gtg-qal7sv
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 16:43:42
last_update2020-05-19 16:43:42
depth3
children2
last_payout2020-05-26 16:43:42
cashout_time1969-12-31 23:59:59
total_payout_value0.972 HBD
curator_payout_value0.973 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation111,989,694,102,178
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,415
net_rshares4,834,286,217,818
author_curate_reward""
vote details (1)
@sepracore ·
Ohhhhhhh. I just realized that. 
properties (22)
authorsepracore
permlinkre-gtg-qal7ch
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 16:33:54
last_update2020-05-19 16:33:54
depth3
children0
last_payout2020-05-26 16:33: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_length32
author_reputation19,850,143,429,858
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,258
net_rshares0
@tarazkp ·
After this move, wouldn't the exchanges delist them?
properties (22)
authortarazkp
permlinkqal72h
categorysteem
json_metadata{"app":"hiveblog/0.1"}
created2020-05-19 16:27:54
last_update2020-05-19 16:27:54
depth3
children3
last_payout2020-05-26 16:27: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_length52
author_reputation4,754,944,622,151,180
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,166
net_rshares0
@slider2990 ·
$0.06
Is this the twilight zone... how does JS have any credibility?  Looking forward to the class action lawsuits.  !popcorn
👍  
👎  
properties (23)
authorslider2990
permlinkqal5di
categorysteem
json_metadata{"app":"hiveblog/0.1"}
created2020-05-19 15:51:21
last_update2020-05-19 15:51:21
depth1
children0
last_payout2020-05-26 15:51:21
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation51,197,598,741,247
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,468,593
net_rshares193,988,048,796
author_curate_reward""
vote details (2)
@steemflow ·
$0.06
Wondering, if ever we get back the lost Steem ??
👍  
👎  
properties (23)
authorsteemflow
permlinkre-holger80-2020519t222637197z
categorysteem
json_metadata{"tags":["steem","hardfork"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-05-19 16:56:39
last_update2020-05-19 16:56:39
depth1
children2
last_payout2020-05-26 16:56:39
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation939,111,209,519,924
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,627
net_rshares192,463,889,764
author_curate_reward""
vote details (2)
@holger80 ·
$0.02
Good question, the assets are moved to @community321, a newly created account, which is controlled by one or more persons. 
👍  , , , ,
properties (23)
authorholger80
permlinkre-steemflow-qala4j
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:33:54
last_update2020-05-19 17:33:54
depth2
children1
last_payout2020-05-26 17:33:54
cashout_time1969-12-31 23:59:59
total_payout_value0.011 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation358,857,509,568,825
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,153
net_rshares82,167,087,333
author_curate_reward""
vote details (5)
@steemflow ·
So does not matter what it is a home case and for our good interest we must forget that
properties (22)
authorsteemflow
permlinkre-holger80-2020520t12028946z
categorysteem
json_metadata{"tags":["esteem"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-05-20 06:30:30
last_update2020-05-20 06:30:30
depth3
children0
last_payout2020-05-27 06:30: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_length87
author_reputation939,111,209,519,924
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,479,947
net_rshares0
@theguruasia · (edited)
@holger80,
This is a very bad move. Like invest at North Korea :D It's time to start powering down process at STEEM chain.

Cheers~
properties (22)
authortheguruasia
permlinkre-holger80-qam9i4
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-20 06:18:06
last_update2020-05-20 06:18:36
depth1
children0
last_payout2020-05-27 06:18: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_length131
author_reputation72,530,773,206,248
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,479,854
net_rshares0
@titusfrost ·
$0.38
That's crazy, alot of these accounts are people I consider supporters of my work. I will be calling out Justin on this on dlive to thousands of people live on his own platform as I am growing quickly on there.
👍  , , , , , ,
👎  
properties (23)
authortitusfrost
permlinkqal950
categorysteem
json_metadata{"app":"hiveblog/0.1"}
created2020-05-19 17:12:36
last_update2020-05-19 17:12:36
depth1
children2
last_payout2020-05-26 17:12:36
cashout_time1969-12-31 23:59:59
total_payout_value0.193 HBD
curator_payout_value0.185 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation577,855,779,640,686
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,863
net_rshares1,177,219,132,126
author_curate_reward""
vote details (8)
@fulltimegeek · (edited)
$0.02
> I will be calling out Justin on this on dlive to thousands of people live on his own platform



Have you noticed that China/CCP have been busy buying up the West before the USD collapses?
👍  ,
properties (23)
authorfulltimegeek
permlinkre-titusfrost-qalayn
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:52:03
last_update2020-05-19 17:57:06
depth2
children0
last_payout2020-05-26 17:52:03
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length190
author_reputation82,538,309,206,805
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,369
net_rshares75,060,378,364
author_curate_reward""
vote details (2)
@marki99 ·
I love that you're doing this, without people like you, actions go unnoticed. 
properties (22)
authormarki99
permlinkre-titusfrost-qalaro
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 17:47:48
last_update2020-05-19 17:47:48
depth2
children0
last_payout2020-05-26 17:47: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_length78
author_reputation11,400,723,818,181
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,311
net_rshares0
@tobetada ·
$0.06
the only good thing that I see coming out of this is that Hive in turn becomes more decentralized as whales can't double their stake... But this is completely illegitimate and I hope that everyone effected by this will sue Sun's ass...
👍  
properties (23)
authortobetada
permlinkre-holger80-qal7ze
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 16:47:39
last_update2020-05-19 16:47:39
depth1
children0
last_payout2020-05-26 16:47:39
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length235
author_reputation522,381,487,361,875
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,469,480
net_rshares193,034,020,266
author_curate_reward""
vote details (1)
@ura-soul ·
Ah, there's that community spirit again we've come to know and love from the man of the Chinese communist party people. Such a delight he is - always raising smiles and talking absolute sense.
properties (22)
authorura-soul
permlinkre-holger80-qalu5i
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-20 00:46:33
last_update2020-05-20 00:46:33
depth1
children0
last_payout2020-05-27 00:46: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_length192
author_reputation771,027,386,591,357
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,476,235
net_rshares0
@yintercept ·
$0.15
The list includes an account used by an exchange:  blocktrades.

I would highlight this in communications with exchanges. Most exchanges use the technique where transferring STEEM to a steemit account held by the exchange puts crypto on the exchange.

The willingness of Justin Sun to seize the assets of accounts used by exchanges should raise the eyebrow of anyone running an exchange. Clearly this shows Sun's willingness to hold the assets of exchanges hostage when he wants to force his way.
👍  , , , ,
properties (23)
authoryintercept
permlinkqalbpd
categorysteem
json_metadata{"app":"hiveblog/0.1"}
created2020-05-19 18:08:15
last_update2020-05-19 18:08:15
depth1
children0
last_payout2020-05-26 18:08:15
cashout_time1969-12-31 23:59:59
total_payout_value0.076 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length496
author_reputation24,114,572,761,148
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,470,599
net_rshares498,000,867,600
author_curate_reward""
vote details (5)
@zemiatin ·
$0.06
This is just insane. It seems like a bad joke.
👍  ,
👎  
properties (23)
authorzemiatin
permlinkre-holger80-qal54w
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-19 15:46:09
last_update2020-05-19 15:46:09
depth1
children1
last_payout2020-05-26 15:46:09
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation16,082,589,690,767
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,468,521
net_rshares213,262,223,897
author_curate_reward""
vote details (3)
@papa-pepper ·
A mess everywhere...
properties (22)
authorpapa-pepper
permlinkre-zemiatin-qam2k9
categorysteem
json_metadata{"tags":["steem"],"app":"peakd/2020.05.3"}
created2020-05-20 03:48:24
last_update2020-05-20 03:48:24
depth2
children0
last_payout2020-05-27 03:48: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_length20
author_reputation1,924,270,574,582,327
root_title"Calculate the amount of seized assets in STEEM HF 23"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,478,235
net_rshares0