radiator 0.4.7 → 0.4.8.pre.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -7
  3. data/Rakefile +50 -20
  4. data/lib/radiator.rb +3 -1
  5. data/lib/radiator/api.rb +83 -10
  6. data/lib/radiator/bridge.rb +34 -0
  7. data/lib/radiator/chain_config.rb +9 -2
  8. data/lib/radiator/database_api.rb +1 -1
  9. data/lib/radiator/follow_api.rb +1 -1
  10. data/lib/radiator/market_history_api.rb +1 -1
  11. data/lib/radiator/operation.rb +3 -2
  12. data/lib/radiator/operation_types.rb +43 -27
  13. data/lib/radiator/ssc/base_steem_smart_contract_rpc.rb +1 -1
  14. data/lib/radiator/stream.rb +15 -6
  15. data/lib/radiator/transaction.rb +28 -1
  16. data/lib/radiator/type/amount.rb +26 -51
  17. data/lib/radiator/type/price.rb +2 -2
  18. data/lib/radiator/version.rb +1 -1
  19. data/radiator.gemspec +13 -11
  20. data/test/fixtures/empty.json +1 -0
  21. data/test/fixtures/error.json +29 -0
  22. data/test/fixtures/follow_api_get_followers.json +1 -0
  23. data/test/fixtures/get_account.json +165 -0
  24. data/test/fixtures/get_account_count.json +1 -0
  25. data/test/fixtures/get_account_references.json +1 -0
  26. data/test/fixtures/get_block.json +193 -0
  27. data/test/fixtures/get_dynamic_global_properties.json +32 -0
  28. data/test/fixtures/get_feed_history.json +684 -0
  29. data/test/fixtures/get_hardfork_version.json +1 -0
  30. data/test/fixtures/get_key_references.json +14 -0
  31. data/test/fixtures/get_stats_for_time.json +57 -0
  32. data/test/fixtures/get_vesting_delegation.json +936 -0
  33. data/test/fixtures/golos_get_dynamic_global_properties.json +32 -0
  34. data/test/fixtures/market_history_api_get_market_history_buckets.json +1 -0
  35. data/test/fixtures/market_history_api_get_order_book.json +109 -0
  36. data/test/fixtures/market_history_api_get_recent_trades.json +55 -0
  37. data/test/fixtures/market_history_api_get_ticker.json +11 -0
  38. data/test/fixtures/market_history_api_get_volume.json +1 -0
  39. data/test/fixtures/null.json +1 -0
  40. data/test/fixtures/vcr_cassettes/account_by_key_api_all_methods.yml +525 -0
  41. data/test/fixtures/vcr_cassettes/account_by_key_api_jsonrpc.yml +52 -0
  42. data/test/fixtures/vcr_cassettes/all_methods.yml +18155 -0
  43. data/test/fixtures/vcr_cassettes/api_all_methods.yml +13254 -0
  44. data/test/fixtures/vcr_cassettes/base_per_debt.yml +4946 -0
  45. data/test/fixtures/vcr_cassettes/base_per_mvest.yml +3969 -0
  46. data/test/fixtures/vcr_cassettes/block_time.yml +3322 -0
  47. data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +1186 -0
  48. data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +13297 -0
  49. data/test/fixtures/vcr_cassettes/expiration_initialize.yml +3428 -0
  50. data/test/fixtures/vcr_cassettes/find_account.yml +3681 -0
  51. data/test/fixtures/vcr_cassettes/find_block.yml +3589 -0
  52. data/test/fixtures/vcr_cassettes/find_comment.yml +11464 -0
  53. data/test/fixtures/vcr_cassettes/follow_api_jsonrpc.yml +52 -0
  54. data/test/fixtures/vcr_cassettes/get_account_count.yml +575 -0
  55. data/test/fixtures/vcr_cassettes/get_account_references.yml +608 -0
  56. data/test/fixtures/vcr_cassettes/get_accounts.yml +674 -0
  57. data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +608 -0
  58. data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +661 -0
  59. data/test/fixtures/vcr_cassettes/get_feed_history.yml +1106 -0
  60. data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +577 -0
  61. data/test/fixtures/vcr_cassettes/get_key_references.yml +987 -0
  62. data/test/fixtures/vcr_cassettes/get_market_history.yml +1043 -0
  63. data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +1043 -0
  64. data/test/fixtures/vcr_cassettes/get_order_book.yml +1091 -0
  65. data/test/fixtures/vcr_cassettes/get_recent_trades.yml +1043 -0
  66. data/test/fixtures/vcr_cassettes/get_ticker.yml +1047 -0
  67. data/test/fixtures/vcr_cassettes/get_trade_history.yml +1049 -0
  68. data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +523 -0
  69. data/test/fixtures/vcr_cassettes/get_volume.yml +1051 -0
  70. data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +575 -0
  71. data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +523 -0
  72. data/test/fixtures/vcr_cassettes/market_history_api_all_methods.yml +4373 -0
  73. data/test/fixtures/vcr_cassettes/network_broadcast_api_all_methods.yml +1288 -0
  74. data/test/fixtures/vcr_cassettes/properties.yml +3627 -0
  75. data/test/fixtures/vcr_cassettes/recover_transaction.yml +1099 -0
  76. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info.yml +92 -0
  77. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info_invalid.yml +90 -0
  78. data/test/fixtures/vcr_cassettes/ssc_blockchain_latest_block_info.yml +91 -0
  79. data/test/fixtures/vcr_cassettes/ssc_blockchain_transaction_info.yml +92 -0
  80. data/test/fixtures/vcr_cassettes/ssc_contracts_contract.yml +366 -0
  81. data/test/fixtures/vcr_cassettes/ssc_contracts_find.yml +91 -0
  82. data/test/fixtures/vcr_cassettes/ssc_contracts_find_one.yml +89 -0
  83. data/test/fixtures/vcr_cassettes/stream_jsonrpc.yml +8253 -0
  84. data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +3176 -0
  85. data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +151 -0
  86. data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +3343 -0
  87. data/test/fixtures/vcr_cassettes/valid_chains.yml +3124 -0
  88. data/test/radiator/account_by_key_api_test.rb +46 -0
  89. data/test/radiator/api_test.rb +135 -0
  90. data/test/radiator/chain_stats_api_test.rb +49 -0
  91. data/test/radiator/chain_test.rb +153 -0
  92. data/test/radiator/condenser_api_test.rb +48 -0
  93. data/test/radiator/follow_api_test.rb +48 -0
  94. data/test/radiator/market_history_api_test.rb +100 -0
  95. data/test/radiator/network_broadcast_api_test.rb +48 -0
  96. data/test/radiator/operation_test.rb +117 -0
  97. data/test/radiator/ssc/blockchain_test.rb +58 -0
  98. data/test/radiator/ssc/contracts_test.rb +65 -0
  99. data/test/radiator/stream_test.rb +48 -0
  100. data/test/radiator/tag_api_test.rb +40 -0
  101. data/test/radiator/transaction_test.rb +755 -0
  102. data/test/test_helper.rb +66 -0
  103. metadata +182 -73
  104. data/.codeclimate.yml +0 -19
  105. data/.gitignore +0 -52
  106. data/.travis.yml +0 -23
  107. data/gource.sh +0 -8
  108. data/images/Anthony Martin.png +0 -0
  109. data/images/Marvin Hofmann.jpg +0 -0
  110. data/images/Marvin Hofmann.png +0 -0
  111. data/lib/steem.rb +0 -17
@@ -0,0 +1,3627 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.justyy.com/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"jsonrpc":"2.0","id":82,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
9
+ headers:
10
+ Content-Type:
11
+ - application/json; charset=utf-8
12
+ User-Agent:
13
+ - steem-ruby/0.9.4
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - "*/*"
18
+ Host:
19
+ - api.steemit.com
20
+ Content-Length:
21
+ - '92'
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Server:
28
+ - nginx/1.14.0 (Ubuntu)
29
+ Date:
30
+ - Sat, 17 Oct 2020 04:07:59 GMT
31
+ Content-Type:
32
+ - application/json
33
+ Content-Length:
34
+ - '17993'
35
+ Connection:
36
+ - keep-alive
37
+ X-Jussi-Cache-Hit:
38
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
39
+ X-Jussi-Request-Id:
40
+ - '000469129060745119'
41
+ X-Amzn-Trace-Id:
42
+ - ''
43
+ Access-Control-Allow-Origin:
44
+ - "*"
45
+ Access-Control-Allow-Methods:
46
+ - GET, POST, OPTIONS
47
+ Access-Control-Allow-Headers:
48
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
49
+ Strict-Transport-Security:
50
+ - max-age=31557600; includeSubDomains; preload
51
+ Content-Security-Policy:
52
+ - upgrade-insecure-requests
53
+ body:
54
+ encoding: UTF-8
55
+ string: '{"id":82,"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
56
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
57
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
58
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
59
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
60
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
61
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
62
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
63
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
64
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
65
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
66
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
67
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
68
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
69
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
70
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
71
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
72
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
73
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
74
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
75
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
76
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
77
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
78
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
79
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
80
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
81
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
82
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
83
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
84
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
85
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
86
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
87
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
88
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
89
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
90
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
91
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
92
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
93
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
94
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
95
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
96
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
97
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
98
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
99
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
100
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
101
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
102
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
103
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
104
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
105
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
106
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
107
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
108
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
109
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
110
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
111
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
112
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
113
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
114
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
115
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
116
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
117
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
118
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
119
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
120
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
121
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
122
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
123
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
124
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
125
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
126
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
127
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
128
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
129
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
130
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
131
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
132
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
133
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
134
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
135
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
136
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
137
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
138
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
139
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
140
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
141
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
142
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
143
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
144
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
145
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
146
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
147
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
148
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
149
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
150
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
151
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
152
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
153
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
154
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
155
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
156
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
157
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
158
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
159
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
160
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
161
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
162
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
163
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
164
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
165
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
166
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
167
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
168
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
169
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
170
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
171
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
172
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
173
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
174
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
175
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
176
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
177
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
178
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
179
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
180
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
181
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
182
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
183
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
184
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
185
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
186
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
187
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
188
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
189
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
190
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
191
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
192
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
193
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
194
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
195
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
196
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
197
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
198
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
199
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
200
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
201
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
202
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
203
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
204
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
205
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
206
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
207
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
208
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
209
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
210
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
211
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
212
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
213
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
214
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
215
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
216
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
217
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
218
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
219
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
220
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
221
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
222
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
223
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
224
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
225
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
226
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
227
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
228
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
229
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
230
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
231
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
232
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
233
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
234
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
235
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
236
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
237
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
238
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
239
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
240
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
241
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
242
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
243
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
244
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
245
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
246
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
247
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
248
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
249
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
250
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
251
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
252
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
253
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
254
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
255
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
256
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
257
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
258
+ recorded_at: Sat, 17 Oct 2020 04:08:00 GMT
259
+ - request:
260
+ method: post
261
+ uri: https://api.steemit.com/
262
+ body:
263
+ encoding: UTF-8
264
+ string: '{"jsonrpc":"2.0","id":83,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
265
+ headers:
266
+ Content-Type:
267
+ - application/json; charset=utf-8
268
+ User-Agent:
269
+ - steem-ruby/0.9.4
270
+ Accept-Encoding:
271
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
272
+ Accept:
273
+ - "*/*"
274
+ Host:
275
+ - api.steemit.com
276
+ Content-Length:
277
+ - '93'
278
+ response:
279
+ status:
280
+ code: 200
281
+ message: OK
282
+ headers:
283
+ Date:
284
+ - Sat, 17 Oct 2020 04:08:00 GMT
285
+ Content-Type:
286
+ - application/json
287
+ Transfer-Encoding:
288
+ - chunked
289
+ Connection:
290
+ - keep-alive
291
+ Server:
292
+ - nginx
293
+ X-Jussi-Cache-Hit:
294
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
295
+ X-Jussi-Request-Id:
296
+ - '000850504609347217'
297
+ X-Amzn-Trace-Id:
298
+ - Root=1-5f8a6e20-7e555dd542cdaaf2627494a8
299
+ Access-Control-Allow-Origin:
300
+ - "*"
301
+ Access-Control-Allow-Methods:
302
+ - GET, POST, OPTIONS
303
+ Access-Control-Allow-Headers:
304
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
305
+ Strict-Transport-Security:
306
+ - max-age=31557600; includeSubDomains; preload
307
+ Content-Security-Policy:
308
+ - upgrade-insecure-requests
309
+ body:
310
+ encoding: ASCII-8BIT
311
+ string: '{"id":83,"jsonrpc":"2.0","result":{"head_block_number":47791891,"head_block_id":"02d93f1383e83f3d602de946383fe5ac2f1931ed","time":"2020-10-17T04:08:00","current_witness":"steem-supporter","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320302.508
312
+ STEEM","current_supply":"368937133.597 STEEM","confidential_supply":"0.000
313
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784923.857 SBD","confidential_sbd_supply":"0.000
314
+ SBD","total_vesting_fund_steem":"110211247.291 STEEM","total_vesting_shares":"212008732946.459270
315
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718137578.970904
316
+ VESTS","pending_rewarded_vesting_steem":"362496.738 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024160,"recent_slots_filled":"340282366920938463463230492243692355579","participation_count":126,"last_irreversible_block_num":47791872,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16617320,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"24.816
317
+ SBD","downvote_pool_percent":2500}}'
318
+ recorded_at: Sat, 17 Oct 2020 04:08:00 GMT
319
+ - request:
320
+ method: post
321
+ uri: https://api.steemit.com/
322
+ body:
323
+ encoding: UTF-8
324
+ string: '{"jsonrpc":"2.0","id":39,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
325
+ headers:
326
+ Content-Type:
327
+ - application/json; charset=utf-8
328
+ User-Agent:
329
+ - steem-ruby/0.9.4
330
+ Accept-Encoding:
331
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
332
+ Accept:
333
+ - "*/*"
334
+ Host:
335
+ - api.steemit.com
336
+ Content-Length:
337
+ - '82'
338
+ response:
339
+ status:
340
+ code: 200
341
+ message: OK
342
+ headers:
343
+ Date:
344
+ - Sat, 17 Oct 2020 04:09:04 GMT
345
+ Content-Type:
346
+ - application/json
347
+ Transfer-Encoding:
348
+ - chunked
349
+ Connection:
350
+ - keep-alive
351
+ Server:
352
+ - nginx
353
+ X-Jussi-Cache-Hit:
354
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
355
+ X-Jussi-Request-Id:
356
+ - '000200970745655348'
357
+ X-Amzn-Trace-Id:
358
+ - Root=1-5f8a6e60-7707d134490ae4ad0cc91c49
359
+ Access-Control-Allow-Origin:
360
+ - "*"
361
+ Access-Control-Allow-Methods:
362
+ - GET, POST, OPTIONS
363
+ Access-Control-Allow-Headers:
364
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
365
+ Strict-Transport-Security:
366
+ - max-age=31557600; includeSubDomains; preload
367
+ Content-Security-Policy:
368
+ - upgrade-insecure-requests
369
+ body:
370
+ encoding: ASCII-8BIT
371
+ string: '{"id":39,"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
372
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
373
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
374
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
375
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
376
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
377
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
378
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
379
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
380
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
381
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
382
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
383
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
384
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
385
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
386
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
387
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
388
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
389
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
390
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
391
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
392
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
393
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
394
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
395
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
396
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
397
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
398
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
399
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
400
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
401
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
402
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
403
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
404
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
405
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
406
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
407
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
408
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
409
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
410
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
411
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
412
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
413
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
414
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
415
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
416
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
417
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
418
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
419
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
420
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
421
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
422
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
423
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
424
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
425
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
426
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
427
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
428
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
429
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
430
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
431
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
432
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
433
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
434
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
435
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
436
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
437
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
438
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
439
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
440
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
441
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
442
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
443
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
444
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
445
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
446
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
447
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
448
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
449
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
450
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
451
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
452
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
453
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
454
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
455
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
456
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
457
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
458
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
459
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
460
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
461
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
462
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
463
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
464
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
465
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
466
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
467
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
468
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
469
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
470
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
471
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
472
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
473
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
474
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
475
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
476
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
477
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
478
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
479
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
480
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
481
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
482
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
483
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
484
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
485
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
486
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
487
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
488
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
489
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
490
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
491
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
492
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
493
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
494
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
495
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
496
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
497
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
498
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
499
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
500
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
501
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
502
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
503
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
504
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
505
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
506
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
507
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
508
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
509
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
510
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
511
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
512
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
513
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
514
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
515
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
516
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
517
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
518
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
519
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
520
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
521
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
522
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
523
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
524
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
525
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
526
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
527
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
528
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
529
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
530
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
531
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
532
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
533
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
534
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
535
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
536
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
537
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
538
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
539
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
540
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
541
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
542
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
543
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
544
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
545
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
546
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
547
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
548
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
549
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
550
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
551
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
552
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
553
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
554
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
555
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
556
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
557
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
558
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
559
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
560
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
561
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
562
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
563
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
564
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
565
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
566
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
567
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
568
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
569
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
570
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
571
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
572
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
573
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
574
+ recorded_at: Sat, 17 Oct 2020 04:09:04 GMT
575
+ - request:
576
+ method: post
577
+ uri: https://api.steemit.com/
578
+ body:
579
+ encoding: UTF-8
580
+ string: '{"jsonrpc":"2.0","id":40,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
581
+ headers:
582
+ Content-Type:
583
+ - application/json; charset=utf-8
584
+ User-Agent:
585
+ - steem-ruby/0.9.4
586
+ Accept-Encoding:
587
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
588
+ Accept:
589
+ - "*/*"
590
+ Host:
591
+ - api.steemit.com
592
+ Content-Length:
593
+ - '93'
594
+ response:
595
+ status:
596
+ code: 200
597
+ message: OK
598
+ headers:
599
+ Date:
600
+ - Sat, 17 Oct 2020 04:09:04 GMT
601
+ Content-Type:
602
+ - application/json
603
+ Transfer-Encoding:
604
+ - chunked
605
+ Connection:
606
+ - keep-alive
607
+ Server:
608
+ - nginx
609
+ X-Jussi-Cache-Hit:
610
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
611
+ X-Jussi-Request-Id:
612
+ - '000449344407646131'
613
+ X-Amzn-Trace-Id:
614
+ - Root=1-5f8a6e60-1acb2dd62c84ce762c0696ef
615
+ Access-Control-Allow-Origin:
616
+ - "*"
617
+ Access-Control-Allow-Methods:
618
+ - GET, POST, OPTIONS
619
+ Access-Control-Allow-Headers:
620
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
621
+ Strict-Transport-Security:
622
+ - max-age=31557600; includeSubDomains; preload
623
+ Content-Security-Policy:
624
+ - upgrade-insecure-requests
625
+ body:
626
+ encoding: ASCII-8BIT
627
+ string: '{"id":40,"jsonrpc":"2.0","result":{"head_block_number":47791912,"head_block_id":"02d93f28e3140eda9fbff30b59ff6f328e7c2af8","time":"2020-10-17T04:09:03","current_witness":"hoasen","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320366.184
628
+ STEEM","current_supply":"368937188.430 STEEM","confidential_supply":"0.000
629
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784925.263 SBD","confidential_sbd_supply":"0.000
630
+ SBD","total_vesting_fund_steem":"110211314.347 STEEM","total_vesting_shares":"212008843559.289909
631
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718144512.475601
632
+ VESTS","pending_rewarded_vesting_steem":"362500.342 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024181,"recent_slots_filled":"340282366920938161231919703774466146303","participation_count":126,"last_irreversible_block_num":47791892,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16622304,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"25.824
633
+ SBD","downvote_pool_percent":2500}}'
634
+ recorded_at: Sat, 17 Oct 2020 04:09:04 GMT
635
+ - request:
636
+ method: post
637
+ uri: https://steem.bts.tw/
638
+ body:
639
+ encoding: UTF-8
640
+ string: '{"jsonrpc":"2.0","id":61,"method":"jsonrpc.get_methods","params":{}}'
641
+ headers:
642
+ Content-Type:
643
+ - application/json; charset=utf-8
644
+ User-Agent:
645
+ - steem-ruby/0.9.4
646
+ Accept-Encoding:
647
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
648
+ Accept:
649
+ - "*/*"
650
+ Host:
651
+ - api.steemit.com
652
+ Content-Length:
653
+ - '78'
654
+ response:
655
+ status:
656
+ code: 403
657
+ message: Forbidden
658
+ headers:
659
+ Server:
660
+ - cloudflare
661
+ Date:
662
+ - Sat, 17 Oct 2020 04:13:27 GMT
663
+ Content-Type:
664
+ - text/html
665
+ Content-Length:
666
+ - '151'
667
+ Connection:
668
+ - keep-alive
669
+ Cf-Ray:
670
+ - 5e372fe54ba76d6a-SJC
671
+ body:
672
+ encoding: UTF-8
673
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
674
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
675
+ recorded_at: Sat, 17 Oct 2020 04:13:27 GMT
676
+ - request:
677
+ method: post
678
+ uri: https://api.steemit.com/
679
+ body:
680
+ encoding: UTF-8
681
+ string: '{"jsonrpc":"2.0","id":62,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
682
+ headers:
683
+ Content-Type:
684
+ - application/json; charset=utf-8
685
+ User-Agent:
686
+ - steem-ruby/0.9.4
687
+ Accept-Encoding:
688
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
689
+ Accept:
690
+ - "*/*"
691
+ Host:
692
+ - api.steemit.com
693
+ Content-Length:
694
+ - '68'
695
+ response:
696
+ status:
697
+ code: 200
698
+ message: OK
699
+ headers:
700
+ Date:
701
+ - Sat, 17 Oct 2020 04:13:27 GMT
702
+ Content-Type:
703
+ - application/json
704
+ Transfer-Encoding:
705
+ - chunked
706
+ Connection:
707
+ - keep-alive
708
+ Server:
709
+ - nginx
710
+ X-Jussi-Request-Id:
711
+ - '000079406400615488'
712
+ X-Amzn-Trace-Id:
713
+ - Root=1-5f8a6f67-3e66561b7c2dc83746bad385
714
+ Access-Control-Allow-Origin:
715
+ - "*"
716
+ Access-Control-Allow-Methods:
717
+ - GET, POST, OPTIONS
718
+ Access-Control-Allow-Headers:
719
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
720
+ Strict-Transport-Security:
721
+ - max-age=31557600; includeSubDomains; preload
722
+ Content-Security-Policy:
723
+ - upgrade-insecure-requests
724
+ body:
725
+ encoding: ASCII-8BIT
726
+ string: '{"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
727
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
728
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
729
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
730
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
731
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
732
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
733
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
734
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
735
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
736
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
737
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
738
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
739
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
740
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
741
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
742
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
743
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
744
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
745
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
746
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
747
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
748
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
749
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
750
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
751
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
752
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
753
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
754
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
755
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
756
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
757
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
758
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
759
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
760
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
761
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
762
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
763
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
764
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
765
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
766
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
767
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
768
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
769
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
770
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
771
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
772
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
773
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
774
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
775
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
776
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
777
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
778
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
779
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
780
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
781
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
782
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
783
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
784
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
785
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
786
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
787
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
788
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
789
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
790
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
791
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
792
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
793
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
794
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
795
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
796
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
797
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
798
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
799
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
800
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
801
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
802
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
803
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
804
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
805
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
806
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
807
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
808
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
809
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
810
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
811
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
812
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
813
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
814
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
815
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
816
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
817
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
818
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
819
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
820
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
821
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
822
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
823
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
824
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
825
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
826
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
827
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
828
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
829
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
830
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
831
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
832
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
833
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
834
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
835
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
836
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
837
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
838
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
839
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
840
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
841
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
842
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
843
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
844
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
845
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
846
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
847
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
848
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
849
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
850
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
851
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
852
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
853
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
854
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
855
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
856
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
857
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
858
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
859
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
860
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
861
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
862
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
863
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
864
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
865
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
866
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
867
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
868
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
869
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
870
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
871
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
872
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
873
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
874
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
875
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
876
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
877
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
878
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
879
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
880
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
881
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
882
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
883
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
884
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
885
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
886
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
887
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
888
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
889
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
890
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
891
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
892
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
893
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
894
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
895
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
896
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
897
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
898
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
899
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
900
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
901
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
902
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
903
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
904
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
905
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
906
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
907
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
908
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
909
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
910
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
911
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
912
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
913
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
914
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
915
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
916
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
917
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
918
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
919
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
920
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
921
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
922
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
923
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
924
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
925
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
926
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
927
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
928
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":62}'
929
+ recorded_at: Sat, 17 Oct 2020 04:13:27 GMT
930
+ - request:
931
+ method: post
932
+ uri: https://api.steemit.com/
933
+ body:
934
+ encoding: UTF-8
935
+ string: '{"jsonrpc":"2.0","id":63,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
936
+ headers:
937
+ Content-Type:
938
+ - application/json; charset=utf-8
939
+ User-Agent:
940
+ - steem-ruby/0.9.4
941
+ Accept-Encoding:
942
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
943
+ Accept:
944
+ - "*/*"
945
+ Host:
946
+ - api.steemit.com
947
+ Content-Length:
948
+ - '93'
949
+ response:
950
+ status:
951
+ code: 200
952
+ message: OK
953
+ headers:
954
+ Date:
955
+ - Sat, 17 Oct 2020 04:13:28 GMT
956
+ Content-Type:
957
+ - application/json
958
+ Transfer-Encoding:
959
+ - chunked
960
+ Connection:
961
+ - keep-alive
962
+ Server:
963
+ - nginx
964
+ X-Jussi-Cache-Hit:
965
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
966
+ X-Jussi-Request-Id:
967
+ - '000742967846572242'
968
+ X-Amzn-Trace-Id:
969
+ - Root=1-5f8a6f68-4b75522f093475e24d0835c6
970
+ Access-Control-Allow-Origin:
971
+ - "*"
972
+ Access-Control-Allow-Methods:
973
+ - GET, POST, OPTIONS
974
+ Access-Control-Allow-Headers:
975
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
976
+ Strict-Transport-Security:
977
+ - max-age=31557600; includeSubDomains; preload
978
+ Content-Security-Policy:
979
+ - upgrade-insecure-requests
980
+ body:
981
+ encoding: ASCII-8BIT
982
+ string: '{"id":63,"jsonrpc":"2.0","result":{"head_block_number":47792000,"head_block_id":"02d93f804747d957118a5d995fe5b55a4f9bb68d","time":"2020-10-17T04:13:27","current_witness":"steem-supporter","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320631.803
983
+ STEEM","current_supply":"368937414.017 STEEM","confidential_supply":"0.000
984
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784931.628 SBD","confidential_sbd_supply":"0.000
985
+ SBD","total_vesting_fund_steem":"110211497.894 STEEM","total_vesting_shares":"212009119652.845368
986
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"717993558.363624
987
+ VESTS","pending_rewarded_vesting_steem":"362421.884 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024269,"recent_slots_filled":"340279770772509196049560342183603601407","participation_count":127,"last_irreversible_block_num":47791975,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16635048,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"30.048
988
+ SBD","downvote_pool_percent":2500}}'
989
+ recorded_at: Sat, 17 Oct 2020 04:13:28 GMT
990
+ - request:
991
+ method: post
992
+ uri: https://api.justyy.com/
993
+ body:
994
+ encoding: UTF-8
995
+ string: '{"jsonrpc":"2.0","id":97,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
996
+ headers:
997
+ Content-Type:
998
+ - application/json; charset=utf-8
999
+ User-Agent:
1000
+ - steem-ruby/0.9.4
1001
+ Accept-Encoding:
1002
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1003
+ Accept:
1004
+ - "*/*"
1005
+ Host:
1006
+ - api.steemit.com
1007
+ Content-Length:
1008
+ - '98'
1009
+ response:
1010
+ status:
1011
+ code: 200
1012
+ message: OK
1013
+ headers:
1014
+ Server:
1015
+ - nginx/1.14.0 (Ubuntu)
1016
+ Date:
1017
+ - Sat, 17 Oct 2020 04:14:33 GMT
1018
+ Content-Type:
1019
+ - application/json
1020
+ Content-Length:
1021
+ - '17993'
1022
+ Connection:
1023
+ - keep-alive
1024
+ X-Jussi-Cache-Hit:
1025
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
1026
+ X-Jussi-Request-Id:
1027
+ - '000813019935539583'
1028
+ X-Amzn-Trace-Id:
1029
+ - ''
1030
+ Access-Control-Allow-Origin:
1031
+ - "*"
1032
+ Access-Control-Allow-Methods:
1033
+ - GET, POST, OPTIONS
1034
+ Access-Control-Allow-Headers:
1035
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1036
+ Strict-Transport-Security:
1037
+ - max-age=31557600; includeSubDomains; preload
1038
+ Content-Security-Policy:
1039
+ - upgrade-insecure-requests
1040
+ body:
1041
+ encoding: UTF-8
1042
+ string: '{"id":97,"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
1043
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1044
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1045
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1046
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1047
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1048
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1049
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1050
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1051
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1052
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1053
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1054
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1055
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1056
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1057
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1058
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1059
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1060
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1061
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1062
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1063
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1064
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1065
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1066
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1067
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1068
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1069
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1070
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1071
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1072
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1073
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1074
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1075
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1076
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1077
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1078
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1079
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1080
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1081
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1082
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1083
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1084
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1085
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1086
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1087
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1088
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1089
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1090
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1091
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1092
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1093
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1094
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1095
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1096
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1097
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1098
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1099
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1100
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1101
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1102
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1103
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1104
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1105
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1106
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1107
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1108
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1109
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1110
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1111
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1112
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1113
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1114
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1115
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1116
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1117
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1118
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1119
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1120
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1121
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1122
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1123
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1124
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1125
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1126
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1127
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1128
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1129
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1130
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1131
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1132
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1133
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1134
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1135
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1136
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1137
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1138
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1139
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1140
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1141
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1142
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1143
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1144
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1145
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1146
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1147
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1148
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1149
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1150
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1151
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1152
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1153
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1154
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1155
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1156
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1157
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1158
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1159
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1160
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1161
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1162
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1163
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1164
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1165
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1166
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1167
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1168
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1169
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1170
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1171
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1172
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1173
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1174
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1175
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1176
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1177
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1178
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1179
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1180
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1181
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1182
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1183
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1184
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1185
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1186
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1187
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1188
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1189
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1190
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1191
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1192
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1193
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1194
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1195
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1196
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1197
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1198
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1199
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1200
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1201
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1202
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1203
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1204
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1205
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1206
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1207
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1208
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1209
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1210
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1211
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1212
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1213
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1214
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1215
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1216
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1217
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1218
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1219
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1220
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1221
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1222
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1223
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1224
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1225
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1226
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1227
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1228
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1229
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1230
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1231
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1232
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1233
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1234
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1235
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1236
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1237
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
1238
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
1239
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
1240
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1241
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1242
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1243
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
1244
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
1245
+ recorded_at: Sat, 17 Oct 2020 04:14:34 GMT
1246
+ - request:
1247
+ method: post
1248
+ uri: https://api.steemit.com/
1249
+ body:
1250
+ encoding: UTF-8
1251
+ string: '{"jsonrpc":"2.0","id":98,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
1252
+ headers:
1253
+ Content-Type:
1254
+ - application/json; charset=utf-8
1255
+ User-Agent:
1256
+ - steem-ruby/0.9.4
1257
+ Accept-Encoding:
1258
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1259
+ Accept:
1260
+ - "*/*"
1261
+ Host:
1262
+ - api.steemit.com
1263
+ Content-Length:
1264
+ - '93'
1265
+ response:
1266
+ status:
1267
+ code: 200
1268
+ message: OK
1269
+ headers:
1270
+ Date:
1271
+ - Sat, 17 Oct 2020 04:14:34 GMT
1272
+ Content-Type:
1273
+ - application/json
1274
+ Transfer-Encoding:
1275
+ - chunked
1276
+ Connection:
1277
+ - keep-alive
1278
+ Server:
1279
+ - nginx
1280
+ X-Jussi-Cache-Hit:
1281
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
1282
+ X-Jussi-Request-Id:
1283
+ - '000380083312572930'
1284
+ X-Amzn-Trace-Id:
1285
+ - Root=1-5f8a6faa-2d9014e54212d0d8176c589b
1286
+ Access-Control-Allow-Origin:
1287
+ - "*"
1288
+ Access-Control-Allow-Methods:
1289
+ - GET, POST, OPTIONS
1290
+ Access-Control-Allow-Headers:
1291
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1292
+ Strict-Transport-Security:
1293
+ - max-age=31557600; includeSubDomains; preload
1294
+ Content-Security-Policy:
1295
+ - upgrade-insecure-requests
1296
+ body:
1297
+ encoding: ASCII-8BIT
1298
+ string: '{"id":98,"jsonrpc":"2.0","result":{"head_block_number":47792022,"head_block_id":"02d93f964130b18b1969e964cfd6b7ab5bfcfa1d","time":"2020-10-17T04:14:33","current_witness":"hinomaru-jp","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320699.479
1299
+ STEEM","current_supply":"368937437.920 STEEM","confidential_supply":"0.000
1300
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784938.588 SBD","confidential_sbd_supply":"0.000
1301
+ SBD","total_vesting_fund_steem":"110211625.015 STEEM","total_vesting_shares":"212009344958.086231
1302
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"717985744.303408
1303
+ VESTS","pending_rewarded_vesting_steem":"362417.824 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024291,"recent_slots_filled":"340282366920938463463374607431768211455","participation_count":128,"last_irreversible_block_num":47792006,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16650734,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"31.104
1304
+ SBD","downvote_pool_percent":2500}}'
1305
+ recorded_at: Sat, 17 Oct 2020 04:14:34 GMT
1306
+ - request:
1307
+ method: post
1308
+ uri: https://api.steemit.com/
1309
+ body:
1310
+ encoding: UTF-8
1311
+ string: '{"jsonrpc":"2.0","id":90,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1312
+ headers:
1313
+ Content-Type:
1314
+ - application/json; charset=utf-8
1315
+ User-Agent:
1316
+ - steem-ruby/0.9.4
1317
+ Accept-Encoding:
1318
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1319
+ Accept:
1320
+ - "*/*"
1321
+ Host:
1322
+ - api.steemit.com
1323
+ Content-Length:
1324
+ - '92'
1325
+ response:
1326
+ status:
1327
+ code: 200
1328
+ message: OK
1329
+ headers:
1330
+ Date:
1331
+ - Sat, 17 Oct 2020 04:19:04 GMT
1332
+ Content-Type:
1333
+ - application/json
1334
+ Transfer-Encoding:
1335
+ - chunked
1336
+ Connection:
1337
+ - keep-alive
1338
+ Server:
1339
+ - nginx
1340
+ X-Jussi-Request-Id:
1341
+ - '001046719380355363'
1342
+ X-Amzn-Trace-Id:
1343
+ - Root=1-5f8a70b8-26ca6a6e53c2533c12d10fe7
1344
+ Access-Control-Allow-Origin:
1345
+ - "*"
1346
+ Access-Control-Allow-Methods:
1347
+ - GET, POST, OPTIONS
1348
+ Access-Control-Allow-Headers:
1349
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1350
+ Strict-Transport-Security:
1351
+ - max-age=31557600; includeSubDomains; preload
1352
+ Content-Security-Policy:
1353
+ - upgrade-insecure-requests
1354
+ body:
1355
+ encoding: ASCII-8BIT
1356
+ string: '{"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
1357
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1358
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1359
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1360
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1361
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1362
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1363
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1364
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1365
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1366
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1367
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1368
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1369
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1370
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1371
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1372
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1373
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1374
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1375
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1376
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1377
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1378
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1379
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1380
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1381
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1382
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1383
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1384
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1385
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1386
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1387
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1388
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1389
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1390
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1391
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1392
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1393
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1394
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1395
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1396
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1397
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1398
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1399
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1400
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1401
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1402
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1403
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1404
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1405
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1406
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1407
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1408
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1409
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1410
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1411
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1412
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1413
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1414
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1415
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1416
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1417
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1418
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1419
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1420
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1421
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1422
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1423
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1424
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1425
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1426
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1427
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1428
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1429
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1430
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1431
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1432
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1433
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1434
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1435
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1436
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1437
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1438
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1439
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1440
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1441
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1442
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1443
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1444
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1445
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1446
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1447
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1448
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1449
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1450
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1451
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1452
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1453
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1454
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1455
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1456
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1457
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1458
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1459
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1460
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1461
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1462
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1463
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1464
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1465
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1466
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1467
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1468
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1469
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1470
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1471
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1472
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1473
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1474
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1475
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1476
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1477
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1478
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1479
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1480
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1481
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1482
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1483
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1484
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1485
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1486
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1487
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1488
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1489
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1490
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1491
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1492
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1493
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1494
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1495
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1496
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1497
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1498
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1499
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1500
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1501
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1502
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1503
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1504
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1505
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1506
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1507
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1508
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1509
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1510
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1511
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1512
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1513
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1514
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1515
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1516
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1517
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1518
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1519
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1520
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1521
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1522
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1523
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1524
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1525
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1526
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1527
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1528
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1529
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1530
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1531
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1532
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1533
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1534
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1535
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1536
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1537
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1538
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1539
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1540
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1541
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1542
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1543
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1544
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1545
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1546
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1547
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1548
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1549
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1550
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1551
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
1552
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
1553
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
1554
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1555
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1556
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1557
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
1558
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":90}'
1559
+ recorded_at: Sat, 17 Oct 2020 04:19:04 GMT
1560
+ - request:
1561
+ method: post
1562
+ uri: https://api.steemit.com/
1563
+ body:
1564
+ encoding: UTF-8
1565
+ string: '{"jsonrpc":"2.0","id":91,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
1566
+ headers:
1567
+ Content-Type:
1568
+ - application/json; charset=utf-8
1569
+ User-Agent:
1570
+ - steem-ruby/0.9.4
1571
+ Accept-Encoding:
1572
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1573
+ Accept:
1574
+ - "*/*"
1575
+ Host:
1576
+ - api.steemit.com
1577
+ Content-Length:
1578
+ - '93'
1579
+ response:
1580
+ status:
1581
+ code: 200
1582
+ message: OK
1583
+ headers:
1584
+ Date:
1585
+ - Sat, 17 Oct 2020 04:19:04 GMT
1586
+ Content-Type:
1587
+ - application/json
1588
+ Transfer-Encoding:
1589
+ - chunked
1590
+ Connection:
1591
+ - keep-alive
1592
+ Server:
1593
+ - nginx
1594
+ X-Jussi-Cache-Hit:
1595
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
1596
+ X-Jussi-Request-Id:
1597
+ - '000489888939292887'
1598
+ X-Amzn-Trace-Id:
1599
+ - Root=1-5f8a70b8-41eefcf5715268f23e9ee3e5
1600
+ Access-Control-Allow-Origin:
1601
+ - "*"
1602
+ Access-Control-Allow-Methods:
1603
+ - GET, POST, OPTIONS
1604
+ Access-Control-Allow-Headers:
1605
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1606
+ Strict-Transport-Security:
1607
+ - max-age=31557600; includeSubDomains; preload
1608
+ Content-Security-Policy:
1609
+ - upgrade-insecure-requests
1610
+ body:
1611
+ encoding: ASCII-8BIT
1612
+ string: '{"id":91,"jsonrpc":"2.0","result":{"head_block_number":47792111,"head_block_id":"02d93fef701777fc11b401fbb342ae9755b9953f","time":"2020-10-17T04:19:03","current_witness":"steem.history","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320968.080
1613
+ STEEM","current_supply":"368937658.257 STEEM","confidential_supply":"0.000
1614
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784946.262 SBD","confidential_sbd_supply":"0.000
1615
+ SBD","total_vesting_fund_steem":"110211631.603 STEEM","total_vesting_shares":"212009279735.727226
1616
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718061209.015815
1617
+ VESTS","pending_rewarded_vesting_steem":"362457.050 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024381,"recent_slots_filled":"340282366920938463463370103832140840959","participation_count":127,"last_irreversible_block_num":47792096,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16684191,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"35.376
1618
+ SBD","downvote_pool_percent":2500}}'
1619
+ recorded_at: Sat, 17 Oct 2020 04:19:04 GMT
1620
+ - request:
1621
+ method: post
1622
+ uri: https://api.justyy.com/
1623
+ body:
1624
+ encoding: UTF-8
1625
+ string: '{"jsonrpc":"2.0","id":44,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1626
+ headers:
1627
+ Content-Type:
1628
+ - application/json; charset=utf-8
1629
+ User-Agent:
1630
+ - steem-ruby/0.9.4
1631
+ Accept-Encoding:
1632
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1633
+ Accept:
1634
+ - "*/*"
1635
+ Host:
1636
+ - api.steemitdev.com
1637
+ Content-Length:
1638
+ - '92'
1639
+ response:
1640
+ status:
1641
+ code: 200
1642
+ message: OK
1643
+ headers:
1644
+ Server:
1645
+ - nginx/1.14.0 (Ubuntu)
1646
+ Date:
1647
+ - Sat, 17 Oct 2020 04:22:32 GMT
1648
+ Content-Type:
1649
+ - application/json
1650
+ Content-Length:
1651
+ - '17993'
1652
+ Connection:
1653
+ - keep-alive
1654
+ X-Jussi-Request-Id:
1655
+ - '000587066270877537'
1656
+ X-Amzn-Trace-Id:
1657
+ - ''
1658
+ Access-Control-Allow-Origin:
1659
+ - "*"
1660
+ Access-Control-Allow-Methods:
1661
+ - GET, POST, OPTIONS
1662
+ Access-Control-Allow-Headers:
1663
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1664
+ Strict-Transport-Security:
1665
+ - max-age=31557600; includeSubDomains; preload
1666
+ Content-Security-Policy:
1667
+ - upgrade-insecure-requests
1668
+ body:
1669
+ encoding: UTF-8
1670
+ string: '{"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
1671
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1672
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1673
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1674
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1675
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1676
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1677
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1678
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1679
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1680
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1681
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1682
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1683
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1684
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1685
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1686
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1687
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1688
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1689
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1690
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1691
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1692
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1693
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1694
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1695
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1696
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1697
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1698
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1699
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1700
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1701
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1702
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1703
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1704
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1705
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1706
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1707
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1708
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1709
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1710
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1711
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1712
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1713
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1714
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1715
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1716
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1717
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1718
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1719
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1720
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1721
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1722
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1723
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1724
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1725
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1726
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1727
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1728
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1729
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1730
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1731
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1732
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1733
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1734
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1735
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1736
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1737
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1738
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1739
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1740
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1741
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1742
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1743
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1744
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1745
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1746
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1747
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1748
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1749
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1750
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1751
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1752
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1753
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1754
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1755
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1756
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1757
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1758
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1759
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1760
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1761
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1762
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1763
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1764
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1765
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1766
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1767
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1768
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1769
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1770
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1771
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1772
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1773
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1774
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1775
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1776
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1777
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1778
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1779
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1780
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1781
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1782
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1783
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1784
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1785
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1786
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1787
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1788
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1789
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1790
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1791
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1792
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1793
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1794
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1795
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1796
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1797
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1798
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1799
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1800
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1801
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1802
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1803
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1804
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1805
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1806
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1807
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1808
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1809
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1810
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1811
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1812
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1813
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1814
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1815
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1816
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1817
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1818
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1819
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1820
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1821
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1822
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1823
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1824
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1825
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1826
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1827
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1828
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1829
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1830
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1831
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1832
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1833
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1834
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1835
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1836
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1837
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1838
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1839
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1840
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1841
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1842
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1843
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1844
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1845
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1846
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1847
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1848
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1849
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1850
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1851
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1852
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1853
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1854
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1855
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1856
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1857
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1858
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1859
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1860
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1861
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1862
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1863
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1864
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1865
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
1866
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
1867
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
1868
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1869
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1870
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1871
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
1872
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":44}'
1873
+ recorded_at: Sat, 17 Oct 2020 04:22:33 GMT
1874
+ - request:
1875
+ method: post
1876
+ uri: https://api.steemit.com/
1877
+ body:
1878
+ encoding: UTF-8
1879
+ string: '{"jsonrpc":"2.0","id":45,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
1880
+ headers:
1881
+ Content-Type:
1882
+ - application/json; charset=utf-8
1883
+ User-Agent:
1884
+ - steem-ruby/0.9.4
1885
+ Accept-Encoding:
1886
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1887
+ Accept:
1888
+ - "*/*"
1889
+ Host:
1890
+ - api.steemitdev.com
1891
+ Content-Length:
1892
+ - '93'
1893
+ response:
1894
+ status:
1895
+ code: 200
1896
+ message: OK
1897
+ headers:
1898
+ Date:
1899
+ - Sat, 17 Oct 2020 04:22:33 GMT
1900
+ Content-Type:
1901
+ - application/json
1902
+ Transfer-Encoding:
1903
+ - chunked
1904
+ Connection:
1905
+ - keep-alive
1906
+ Server:
1907
+ - nginx
1908
+ X-Jussi-Cache-Hit:
1909
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
1910
+ X-Jussi-Request-Id:
1911
+ - '001120482474781090'
1912
+ X-Amzn-Trace-Id:
1913
+ - Root=1-5f8a7189-28159bc112c386df1e94c8db
1914
+ Access-Control-Allow-Origin:
1915
+ - "*"
1916
+ Access-Control-Allow-Methods:
1917
+ - GET, POST, OPTIONS
1918
+ Access-Control-Allow-Headers:
1919
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1920
+ Strict-Transport-Security:
1921
+ - max-age=31557600; includeSubDomains; preload
1922
+ Content-Security-Policy:
1923
+ - upgrade-insecure-requests
1924
+ body:
1925
+ encoding: ASCII-8BIT
1926
+ string: '{"id":45,"jsonrpc":"2.0","result":{"head_block_number":47792180,"head_block_id":"02d9403484d1e22324c394e1b6ee946e7f1e49e5","time":"2020-10-17T04:22:33","current_witness":"symbionts","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405321175.990
1927
+ STEEM","current_supply":"368937775.236 STEEM","confidential_supply":"0.000
1928
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784960.720 SBD","confidential_sbd_supply":"0.000
1929
+ SBD","total_vesting_fund_steem":"110211738.009 STEEM","total_vesting_shares":"212009424041.559639
1930
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718350076.077587
1931
+ VESTS","pending_rewarded_vesting_steem":"362607.201 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024451,"recent_slots_filled":"334965454937798799971615264002570977279","participation_count":126,"last_irreversible_block_num":47792163,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16663388,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"38.688
1932
+ SBD","downvote_pool_percent":2500}}'
1933
+ recorded_at: Sat, 17 Oct 2020 04:22:33 GMT
1934
+ - request:
1935
+ method: post
1936
+ uri: https://steem.bts.tw/
1937
+ body:
1938
+ encoding: UTF-8
1939
+ string: '{"jsonrpc":"2.0","id":82,"method":"jsonrpc.get_methods","params":{}}'
1940
+ headers:
1941
+ Content-Type:
1942
+ - application/json; charset=utf-8
1943
+ User-Agent:
1944
+ - steem-ruby/0.9.4
1945
+ Accept-Encoding:
1946
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1947
+ Accept:
1948
+ - "*/*"
1949
+ Host:
1950
+ - api.steemitdev.com
1951
+ Content-Length:
1952
+ - '92'
1953
+ response:
1954
+ status:
1955
+ code: 403
1956
+ message: Forbidden
1957
+ headers:
1958
+ Server:
1959
+ - cloudflare
1960
+ Date:
1961
+ - Sat, 17 Oct 2020 04:27:25 GMT
1962
+ Content-Type:
1963
+ - text/html
1964
+ Content-Length:
1965
+ - '151'
1966
+ Connection:
1967
+ - keep-alive
1968
+ Cf-Ray:
1969
+ - 5e37445de87eed6b-SJC
1970
+ body:
1971
+ encoding: UTF-8
1972
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
1973
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
1974
+ recorded_at: Sat, 17 Oct 2020 04:27:25 GMT
1975
+ - request:
1976
+ method: post
1977
+ uri: https://api.steemit.com/
1978
+ body:
1979
+ encoding: UTF-8
1980
+ string: '{"jsonrpc":"2.0","id":83,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1981
+ headers:
1982
+ Content-Type:
1983
+ - application/json; charset=utf-8
1984
+ User-Agent:
1985
+ - steem-ruby/0.9.4
1986
+ Accept-Encoding:
1987
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1988
+ Accept:
1989
+ - "*/*"
1990
+ Host:
1991
+ - api.steemitdev.com
1992
+ Content-Length:
1993
+ - '68'
1994
+ response:
1995
+ status:
1996
+ code: 200
1997
+ message: OK
1998
+ headers:
1999
+ Date:
2000
+ - Sat, 17 Oct 2020 04:27:26 GMT
2001
+ Content-Type:
2002
+ - application/json
2003
+ Transfer-Encoding:
2004
+ - chunked
2005
+ Connection:
2006
+ - keep-alive
2007
+ Server:
2008
+ - nginx
2009
+ X-Jussi-Request-Id:
2010
+ - '000287489874208511'
2011
+ X-Amzn-Trace-Id:
2012
+ - Root=1-5f8a72ae-5e2d93fc39309a0b4551af37
2013
+ Access-Control-Allow-Origin:
2014
+ - "*"
2015
+ Access-Control-Allow-Methods:
2016
+ - GET, POST, OPTIONS
2017
+ Access-Control-Allow-Headers:
2018
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2019
+ Strict-Transport-Security:
2020
+ - max-age=31557600; includeSubDomains; preload
2021
+ Content-Security-Policy:
2022
+ - upgrade-insecure-requests
2023
+ body:
2024
+ encoding: ASCII-8BIT
2025
+ string: '{"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
2026
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2027
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2028
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2029
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2030
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2031
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2032
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2033
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2034
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2035
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2036
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2037
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2038
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2039
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2040
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2041
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2042
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2043
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2044
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2045
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2046
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2047
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2048
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2049
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2050
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2051
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2052
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2053
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2054
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2055
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2056
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2057
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2058
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2059
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2060
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2061
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2062
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2063
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2064
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2065
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2066
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2067
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2068
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2069
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2070
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2071
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2072
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2073
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2074
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2075
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2076
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2077
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2078
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2079
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2080
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2081
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2082
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2083
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2084
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2085
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2086
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2087
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2088
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2089
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2090
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2091
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2092
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2093
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2094
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2095
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2096
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2097
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2098
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2099
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2100
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2101
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2102
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2103
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2104
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2105
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2106
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2107
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2108
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2109
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2110
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2111
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2112
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2113
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2114
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2115
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2116
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2117
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2118
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2119
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2120
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2121
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2122
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2123
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2124
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2125
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2126
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2127
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2128
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2129
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2130
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2131
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2132
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2133
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2134
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2135
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2136
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2137
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2138
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2139
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2140
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2141
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2142
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2143
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2144
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2145
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2146
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2147
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2148
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2149
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2150
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2151
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2152
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2153
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2154
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2155
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2156
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2157
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2158
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2159
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2160
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2161
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2162
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2163
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2164
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2165
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2166
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2167
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2168
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2169
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2170
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2171
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2172
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2173
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2174
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2175
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2176
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2177
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2178
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2179
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2180
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2181
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2182
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2183
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2184
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2185
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2186
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2187
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2188
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2189
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2190
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2191
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2192
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2193
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2194
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2195
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2196
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2197
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2198
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2199
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2200
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2201
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2202
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2203
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2204
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2205
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2206
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2207
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2208
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2209
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2210
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2211
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2212
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2213
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2214
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2215
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2216
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2217
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2218
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2219
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2220
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
2221
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
2222
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
2223
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2224
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2225
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2226
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
2227
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":83}'
2228
+ recorded_at: Sat, 17 Oct 2020 04:27:26 GMT
2229
+ - request:
2230
+ method: post
2231
+ uri: https://api.steemit.com/
2232
+ body:
2233
+ encoding: UTF-8
2234
+ string: '{"jsonrpc":"2.0","id":84,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
2235
+ headers:
2236
+ Content-Type:
2237
+ - application/json; charset=utf-8
2238
+ User-Agent:
2239
+ - steem-ruby/0.9.4
2240
+ Accept-Encoding:
2241
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2242
+ Accept:
2243
+ - "*/*"
2244
+ Host:
2245
+ - api.steemitdev.com
2246
+ Content-Length:
2247
+ - '93'
2248
+ response:
2249
+ status:
2250
+ code: 200
2251
+ message: OK
2252
+ headers:
2253
+ Date:
2254
+ - Sat, 17 Oct 2020 04:27:26 GMT
2255
+ Content-Type:
2256
+ - application/json
2257
+ Transfer-Encoding:
2258
+ - chunked
2259
+ Connection:
2260
+ - keep-alive
2261
+ Server:
2262
+ - nginx
2263
+ X-Jussi-Cache-Hit:
2264
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
2265
+ X-Jussi-Request-Id:
2266
+ - '000081145978125257'
2267
+ X-Amzn-Trace-Id:
2268
+ - Root=1-5f8a72ae-316ce84c02e87cef02d4c3a0
2269
+ Access-Control-Allow-Origin:
2270
+ - "*"
2271
+ Access-Control-Allow-Methods:
2272
+ - GET, POST, OPTIONS
2273
+ Access-Control-Allow-Headers:
2274
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2275
+ Strict-Transport-Security:
2276
+ - max-age=31557600; includeSubDomains; preload
2277
+ Content-Security-Policy:
2278
+ - upgrade-insecure-requests
2279
+ body:
2280
+ encoding: ASCII-8BIT
2281
+ string: '{"id":84,"jsonrpc":"2.0","result":{"head_block_number":47792277,"head_block_id":"02d9409526c0424ef9ac093b7f241317f5092b5d","time":"2020-10-17T04:27:24","current_witness":"justyy","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405321470.520
2282
+ STEEM","current_supply":"368938028.068 STEEM","confidential_supply":"0.000
2283
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784967.350 SBD","confidential_sbd_supply":"0.000
2284
+ SBD","total_vesting_fund_steem":"110211813.357 STEEM","total_vesting_shares":"212009484084.890139
2285
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718507036.658936
2286
+ VESTS","pending_rewarded_vesting_steem":"362688.788 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024548,"recent_slots_filled":"340282366920938463463374607431768211455","participation_count":128,"last_irreversible_block_num":47792262,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16712549,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"43.344
2287
+ SBD","downvote_pool_percent":2500}}'
2288
+ recorded_at: Sat, 17 Oct 2020 04:27:26 GMT
2289
+ - request:
2290
+ method: post
2291
+ uri: https://steemd.minnowsupportproject.org/
2292
+ body:
2293
+ encoding: UTF-8
2294
+ string: '{"jsonrpc":"2.0","id":21,"method":"jsonrpc.get_methods","params":{}}'
2295
+ headers:
2296
+ Content-Type:
2297
+ - application/json; charset=utf-8
2298
+ User-Agent:
2299
+ - steem-ruby/0.9.4
2300
+ Accept-Encoding:
2301
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2302
+ Accept:
2303
+ - "*/*"
2304
+ Host:
2305
+ - api.steemitdev.com
2306
+ Content-Length:
2307
+ - '98'
2308
+ response:
2309
+ status:
2310
+ code: 502
2311
+ message: Bad Gateway
2312
+ headers:
2313
+ Server:
2314
+ - nginx/1.17.1
2315
+ Date:
2316
+ - Sat, 17 Oct 2020 04:34:00 GMT
2317
+ Content-Type:
2318
+ - text/html
2319
+ Content-Length:
2320
+ - '157'
2321
+ Connection:
2322
+ - keep-alive
2323
+ body:
2324
+ encoding: UTF-8
2325
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
2326
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
2327
+ recorded_at: Sat, 17 Oct 2020 04:34:00 GMT
2328
+ - request:
2329
+ method: post
2330
+ uri: https://api.steemit.com/
2331
+ body:
2332
+ encoding: UTF-8
2333
+ string: '{"jsonrpc":"2.0","id":22,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2334
+ headers:
2335
+ Content-Type:
2336
+ - application/json; charset=utf-8
2337
+ User-Agent:
2338
+ - steem-ruby/0.9.4
2339
+ Accept-Encoding:
2340
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2341
+ Accept:
2342
+ - "*/*"
2343
+ Host:
2344
+ - api.steemitdev.com
2345
+ Content-Length:
2346
+ - '68'
2347
+ response:
2348
+ status:
2349
+ code: 200
2350
+ message: OK
2351
+ headers:
2352
+ Date:
2353
+ - Sat, 17 Oct 2020 04:34:00 GMT
2354
+ Content-Type:
2355
+ - application/json
2356
+ Transfer-Encoding:
2357
+ - chunked
2358
+ Connection:
2359
+ - keep-alive
2360
+ Server:
2361
+ - nginx
2362
+ X-Jussi-Cache-Hit:
2363
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
2364
+ X-Jussi-Request-Id:
2365
+ - '000268229640763401'
2366
+ X-Amzn-Trace-Id:
2367
+ - Root=1-5f8a7438-3385f0e96630e2fa60d1ca5d
2368
+ Access-Control-Allow-Origin:
2369
+ - "*"
2370
+ Access-Control-Allow-Methods:
2371
+ - GET, POST, OPTIONS
2372
+ Access-Control-Allow-Headers:
2373
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2374
+ Strict-Transport-Security:
2375
+ - max-age=31557600; includeSubDomains; preload
2376
+ Content-Security-Policy:
2377
+ - upgrade-insecure-requests
2378
+ body:
2379
+ encoding: ASCII-8BIT
2380
+ string: '{"id":22,"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
2381
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2382
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2383
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2384
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2385
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2386
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2387
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2388
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2389
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2390
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2391
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2392
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2393
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2394
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2395
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2396
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2397
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2398
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2399
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2400
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2401
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2402
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2403
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2404
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2405
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2406
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2407
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2408
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2409
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2410
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2411
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2412
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2413
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2414
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2415
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2416
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2417
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2418
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2419
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2420
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2421
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2422
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2423
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2424
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2425
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2426
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2427
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2428
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2429
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2430
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2431
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2432
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2433
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2434
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2435
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2436
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2437
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2438
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2439
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2440
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2441
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2442
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2443
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2444
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2445
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2446
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2447
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2448
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2449
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2450
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2451
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2452
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2453
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2454
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2455
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2456
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2457
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2458
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2459
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2460
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2461
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2462
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2463
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2464
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2465
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2466
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2467
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2468
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2469
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2470
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2471
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2472
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2473
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2474
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2475
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2476
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2477
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2478
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2479
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2480
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2481
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2482
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2483
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2484
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2485
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2486
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2487
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2488
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2489
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2490
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2491
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2492
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2493
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2494
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2495
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2496
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2497
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2498
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2499
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2500
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2501
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2502
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2503
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2504
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2505
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2506
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2507
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2508
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2509
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2510
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2511
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2512
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2513
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2514
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2515
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2516
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2517
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2518
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2519
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2520
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2521
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2522
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2523
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2524
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2525
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2526
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2527
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2528
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2529
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2530
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2531
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2532
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2533
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2534
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2535
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2536
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2537
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2538
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2539
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2540
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2541
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2542
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2543
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2544
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2545
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2546
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2547
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2548
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2549
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2550
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2551
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2552
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2553
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2554
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2555
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2556
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2557
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2558
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2559
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2560
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2561
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2562
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2563
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2564
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2565
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2566
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2567
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2568
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2569
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2570
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2571
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2572
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2573
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2574
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2575
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
2576
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
2577
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
2578
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2579
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2580
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2581
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
2582
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
2583
+ recorded_at: Sat, 17 Oct 2020 04:34:01 GMT
2584
+ - request:
2585
+ method: post
2586
+ uri: https://api.steemit.com/
2587
+ body:
2588
+ encoding: UTF-8
2589
+ string: '{"jsonrpc":"2.0","id":23,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
2590
+ headers:
2591
+ Content-Type:
2592
+ - application/json; charset=utf-8
2593
+ User-Agent:
2594
+ - steem-ruby/0.9.4
2595
+ Accept-Encoding:
2596
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2597
+ Accept:
2598
+ - "*/*"
2599
+ Host:
2600
+ - api.steemitdev.com
2601
+ Content-Length:
2602
+ - '93'
2603
+ response:
2604
+ status:
2605
+ code: 200
2606
+ message: OK
2607
+ headers:
2608
+ Date:
2609
+ - Sat, 17 Oct 2020 04:34:01 GMT
2610
+ Content-Type:
2611
+ - application/json
2612
+ Transfer-Encoding:
2613
+ - chunked
2614
+ Connection:
2615
+ - keep-alive
2616
+ Server:
2617
+ - nginx
2618
+ X-Jussi-Cache-Hit:
2619
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
2620
+ X-Jussi-Request-Id:
2621
+ - '000737131837021980'
2622
+ X-Amzn-Trace-Id:
2623
+ - Root=1-5f8a7439-091ee12f25e49c7d35ff351c
2624
+ Access-Control-Allow-Origin:
2625
+ - "*"
2626
+ Access-Control-Allow-Methods:
2627
+ - GET, POST, OPTIONS
2628
+ Access-Control-Allow-Headers:
2629
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2630
+ Strict-Transport-Security:
2631
+ - max-age=31557600; includeSubDomains; preload
2632
+ Content-Security-Policy:
2633
+ - upgrade-insecure-requests
2634
+ body:
2635
+ encoding: ASCII-8BIT
2636
+ string: '{"id":23,"jsonrpc":"2.0","result":{"head_block_number":47792406,"head_block_id":"02d941163f6d34cee589d1851aa4836d0335a8cc","time":"2020-10-17T04:34:00","current_witness":"hoasen","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405321858.441
2637
+ STEEM","current_supply":"368938350.203 STEEM","confidential_supply":"0.000
2638
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784977.810 SBD","confidential_sbd_supply":"0.000
2639
+ SBD","total_vesting_fund_steem":"110211815.225 STEEM","total_vesting_shares":"212009374783.339851
2640
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718535913.980330
2641
+ VESTS","pending_rewarded_vesting_steem":"362703.800 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024680,"recent_slots_filled":"340282042402230062531737151737090277375","participation_count":125,"last_irreversible_block_num":47792391,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16744526,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"49.536
2642
+ SBD","downvote_pool_percent":2500}}'
2643
+ recorded_at: Sat, 17 Oct 2020 04:34:01 GMT
2644
+ - request:
2645
+ method: post
2646
+ uri: https://api.justyy.com/
2647
+ body:
2648
+ encoding: UTF-8
2649
+ string: '{"jsonrpc":"2.0","id":70,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2650
+ headers:
2651
+ Content-Type:
2652
+ - application/json; charset=utf-8
2653
+ User-Agent:
2654
+ - steem-ruby/0.9.4
2655
+ Accept-Encoding:
2656
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2657
+ Accept:
2658
+ - "*/*"
2659
+ Host:
2660
+ - api.steemitdev.com
2661
+ Content-Length:
2662
+ - '82'
2663
+ response:
2664
+ status:
2665
+ code: 200
2666
+ message: OK
2667
+ headers:
2668
+ Server:
2669
+ - nginx/1.14.0 (Ubuntu)
2670
+ Date:
2671
+ - Sat, 17 Oct 2020 04:39:57 GMT
2672
+ Content-Type:
2673
+ - application/json
2674
+ Content-Length:
2675
+ - '17993'
2676
+ Connection:
2677
+ - keep-alive
2678
+ X-Jussi-Request-Id:
2679
+ - '000353664559580787'
2680
+ X-Amzn-Trace-Id:
2681
+ - ''
2682
+ Access-Control-Allow-Origin:
2683
+ - "*"
2684
+ Access-Control-Allow-Methods:
2685
+ - GET, POST, OPTIONS
2686
+ Access-Control-Allow-Headers:
2687
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2688
+ Strict-Transport-Security:
2689
+ - max-age=31557600; includeSubDomains; preload
2690
+ Content-Security-Policy:
2691
+ - upgrade-insecure-requests
2692
+ body:
2693
+ encoding: UTF-8
2694
+ string: '{"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
2695
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2696
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2697
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2698
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2699
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2700
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2701
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2702
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2703
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2704
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2705
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2706
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2707
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2708
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2709
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2710
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2711
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2712
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2713
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2714
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2715
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2716
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2717
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2718
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2719
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2720
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2721
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2722
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2723
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2724
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2725
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2726
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2727
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2728
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2729
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2730
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2731
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2732
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2733
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2734
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2735
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2736
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2737
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2738
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2739
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2740
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2741
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2742
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2743
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2744
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2745
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2746
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2747
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2748
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2749
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2750
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2751
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2752
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2753
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2754
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2755
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2756
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2757
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2758
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2759
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2760
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2761
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2762
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2763
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2764
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2765
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2766
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2767
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2768
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2769
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2770
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2771
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2772
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2773
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2774
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2775
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2776
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2777
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2778
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2779
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2780
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2781
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2782
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2783
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2784
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2785
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2786
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2787
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2788
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2789
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2790
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2791
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2792
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2793
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2794
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2795
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2796
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2797
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2798
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2799
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2800
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2801
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2802
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2803
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2804
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2805
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2806
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2807
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2808
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2809
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2810
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2811
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2812
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2813
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2814
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2815
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2816
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2817
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2818
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2819
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2820
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2821
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2822
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2823
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2824
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2825
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2826
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2827
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2828
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2829
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2830
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2831
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2832
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2833
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2834
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2835
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2836
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2837
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2838
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2839
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2840
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2841
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2842
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2843
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2844
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2845
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2846
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2847
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2848
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2849
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2850
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2851
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2852
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2853
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2854
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2855
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2856
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2857
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2858
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2859
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2860
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2861
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2862
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2863
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2864
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2865
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2866
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2867
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2868
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2869
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2870
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2871
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2872
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2873
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2874
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2875
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2876
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2877
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2878
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2879
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2880
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2881
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2882
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2883
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2884
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2885
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2886
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2887
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2888
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2889
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
2890
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
2891
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
2892
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2893
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2894
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2895
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
2896
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":70}'
2897
+ recorded_at: Sat, 17 Oct 2020 04:39:57 GMT
2898
+ - request:
2899
+ method: post
2900
+ uri: https://api.steemit.com/
2901
+ body:
2902
+ encoding: UTF-8
2903
+ string: '{"jsonrpc":"2.0","id":71,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
2904
+ headers:
2905
+ Content-Type:
2906
+ - application/json; charset=utf-8
2907
+ User-Agent:
2908
+ - steem-ruby/0.9.4
2909
+ Accept-Encoding:
2910
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2911
+ Accept:
2912
+ - "*/*"
2913
+ Host:
2914
+ - api.steemitdev.com
2915
+ Content-Length:
2916
+ - '93'
2917
+ response:
2918
+ status:
2919
+ code: 200
2920
+ message: OK
2921
+ headers:
2922
+ Date:
2923
+ - Sat, 17 Oct 2020 04:39:57 GMT
2924
+ Content-Type:
2925
+ - application/json
2926
+ Transfer-Encoding:
2927
+ - chunked
2928
+ Connection:
2929
+ - keep-alive
2930
+ Server:
2931
+ - nginx
2932
+ X-Jussi-Cache-Hit:
2933
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
2934
+ X-Jussi-Request-Id:
2935
+ - '000606408399217603'
2936
+ X-Amzn-Trace-Id:
2937
+ - Root=1-5f8a759d-3b76885c0bfd59c2158c9474
2938
+ Access-Control-Allow-Origin:
2939
+ - "*"
2940
+ Access-Control-Allow-Methods:
2941
+ - GET, POST, OPTIONS
2942
+ Access-Control-Allow-Headers:
2943
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2944
+ Strict-Transport-Security:
2945
+ - max-age=31557600; includeSubDomains; preload
2946
+ Content-Security-Policy:
2947
+ - upgrade-insecure-requests
2948
+ body:
2949
+ encoding: ASCII-8BIT
2950
+ string: '{"id":71,"jsonrpc":"2.0","result":{"head_block_number":47792524,"head_block_id":"02d9418c829af968f6904e040cf973653e5dcb52","time":"2020-10-17T04:39:57","current_witness":"rlawlstn123","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405322215.640
2951
+ STEEM","current_supply":"368938670.848 STEEM","confidential_supply":"0.000
2952
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784983.622 SBD","confidential_sbd_supply":"0.000
2953
+ SBD","total_vesting_fund_steem":"110211925.253 STEEM","total_vesting_shares":"212009483162.313418
2954
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718500526.624092
2955
+ VESTS","pending_rewarded_vesting_steem":"362685.406 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024799,"recent_slots_filled":"340282366920319493443731917294318649343","participation_count":127,"last_irreversible_block_num":47792505,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16758660,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"55.200
2956
+ SBD","downvote_pool_percent":2500}}'
2957
+ recorded_at: Sat, 17 Oct 2020 04:39:57 GMT
2958
+ - request:
2959
+ method: post
2960
+ uri: https://steemd.minnowsupportproject.org/
2961
+ body:
2962
+ encoding: UTF-8
2963
+ string: '{"jsonrpc":"2.0","id":50,"method":"jsonrpc.get_methods","params":{}}'
2964
+ headers:
2965
+ Content-Type:
2966
+ - application/json; charset=utf-8
2967
+ User-Agent:
2968
+ - steem-ruby/0.9.4
2969
+ Accept-Encoding:
2970
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2971
+ Accept:
2972
+ - "*/*"
2973
+ Host:
2974
+ - api.steemitdev.com
2975
+ Content-Length:
2976
+ - '82'
2977
+ response:
2978
+ status:
2979
+ code: 502
2980
+ message: Bad Gateway
2981
+ headers:
2982
+ Server:
2983
+ - nginx/1.17.1
2984
+ Date:
2985
+ - Sat, 17 Oct 2020 04:56:26 GMT
2986
+ Content-Type:
2987
+ - text/html
2988
+ Content-Length:
2989
+ - '157'
2990
+ Connection:
2991
+ - keep-alive
2992
+ body:
2993
+ encoding: UTF-8
2994
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
2995
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
2996
+ recorded_at: Sat, 17 Oct 2020 04:56:26 GMT
2997
+ - request:
2998
+ method: post
2999
+ uri: https://api.steemit.com/
3000
+ body:
3001
+ encoding: UTF-8
3002
+ string: '{"jsonrpc":"2.0","id":51,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
3003
+ headers:
3004
+ Content-Type:
3005
+ - application/json; charset=utf-8
3006
+ User-Agent:
3007
+ - steem-ruby/0.9.4
3008
+ Accept-Encoding:
3009
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3010
+ Accept:
3011
+ - "*/*"
3012
+ Host:
3013
+ - api.steemitdev.com
3014
+ Content-Length:
3015
+ - '68'
3016
+ response:
3017
+ status:
3018
+ code: 200
3019
+ message: OK
3020
+ headers:
3021
+ Date:
3022
+ - Sat, 17 Oct 2020 04:56:26 GMT
3023
+ Content-Type:
3024
+ - application/json
3025
+ Transfer-Encoding:
3026
+ - chunked
3027
+ Connection:
3028
+ - keep-alive
3029
+ Server:
3030
+ - nginx
3031
+ X-Jussi-Request-Id:
3032
+ - '000838714998719192'
3033
+ X-Amzn-Trace-Id:
3034
+ - Root=1-5f8a797a-5d238b312952c74d09054d3c
3035
+ Access-Control-Allow-Origin:
3036
+ - "*"
3037
+ Access-Control-Allow-Methods:
3038
+ - GET, POST, OPTIONS
3039
+ Access-Control-Allow-Headers:
3040
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3041
+ Strict-Transport-Security:
3042
+ - max-age=31557600; includeSubDomains; preload
3043
+ Content-Security-Policy:
3044
+ - upgrade-insecure-requests
3045
+ body:
3046
+ encoding: ASCII-8BIT
3047
+ string: '{"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
3048
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
3049
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
3050
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
3051
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
3052
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
3053
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
3054
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
3055
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
3056
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
3057
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
3058
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
3059
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3060
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
3061
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
3062
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
3063
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
3064
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
3065
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3066
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
3067
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
3068
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
3069
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3070
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
3071
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
3072
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
3073
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
3074
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
3075
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
3076
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
3077
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
3078
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
3079
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
3080
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
3081
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
3082
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
3083
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
3084
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
3085
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
3086
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
3087
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
3088
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
3089
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
3090
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
3091
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
3092
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
3093
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
3094
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
3095
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
3096
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
3097
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
3098
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
3099
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
3100
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
3101
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
3102
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
3103
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
3104
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
3105
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
3106
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
3107
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
3108
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
3109
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
3110
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
3111
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
3112
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
3113
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3114
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
3115
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
3116
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
3117
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
3118
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
3119
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
3120
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
3121
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
3122
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3123
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
3124
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
3125
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
3126
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
3127
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
3128
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
3129
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3130
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
3131
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
3132
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
3133
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
3134
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
3135
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
3136
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3137
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
3138
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
3139
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
3140
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
3141
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
3142
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
3143
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
3144
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
3145
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
3146
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3147
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3148
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3149
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
3150
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
3151
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
3152
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
3153
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
3154
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
3155
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
3156
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
3157
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
3158
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
3159
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
3160
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
3161
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
3162
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
3163
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
3164
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
3165
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
3166
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
3167
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
3168
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
3169
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
3170
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
3171
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
3172
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3173
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
3174
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
3175
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
3176
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
3177
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
3178
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
3179
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
3180
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
3181
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
3182
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
3183
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3184
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
3185
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
3186
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3187
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
3188
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
3189
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
3190
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
3191
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
3192
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
3193
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
3194
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
3195
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
3196
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
3197
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
3198
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
3199
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
3200
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
3201
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
3202
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
3203
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
3204
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
3205
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3206
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
3207
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
3208
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
3209
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
3210
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
3211
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
3212
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
3213
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
3214
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
3215
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
3216
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
3217
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
3218
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
3219
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
3220
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
3221
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
3222
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
3223
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
3224
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
3225
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
3226
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
3227
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
3228
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
3229
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
3230
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3231
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
3232
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3233
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
3234
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
3235
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
3236
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
3237
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
3238
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
3239
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
3240
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
3241
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3242
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
3243
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
3244
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
3245
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
3246
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
3247
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
3248
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
3249
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":51}'
3250
+ recorded_at: Sat, 17 Oct 2020 04:56:26 GMT
3251
+ - request:
3252
+ method: post
3253
+ uri: https://api.steemit.com/
3254
+ body:
3255
+ encoding: UTF-8
3256
+ string: '{"jsonrpc":"2.0","id":52,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
3257
+ headers:
3258
+ Content-Type:
3259
+ - application/json; charset=utf-8
3260
+ User-Agent:
3261
+ - steem-ruby/0.9.4
3262
+ Accept-Encoding:
3263
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3264
+ Accept:
3265
+ - "*/*"
3266
+ Host:
3267
+ - api.steemitdev.com
3268
+ Content-Length:
3269
+ - '93'
3270
+ response:
3271
+ status:
3272
+ code: 200
3273
+ message: OK
3274
+ headers:
3275
+ Date:
3276
+ - Sat, 17 Oct 2020 04:56:27 GMT
3277
+ Content-Type:
3278
+ - application/json
3279
+ Transfer-Encoding:
3280
+ - chunked
3281
+ Connection:
3282
+ - keep-alive
3283
+ Server:
3284
+ - nginx
3285
+ X-Jussi-Cache-Hit:
3286
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
3287
+ X-Jussi-Request-Id:
3288
+ - '000592445198947772'
3289
+ X-Amzn-Trace-Id:
3290
+ - Root=1-5f8a797b-0afe514248ac4d3f7830f7db
3291
+ Access-Control-Allow-Origin:
3292
+ - "*"
3293
+ Access-Control-Allow-Methods:
3294
+ - GET, POST, OPTIONS
3295
+ Access-Control-Allow-Headers:
3296
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3297
+ Strict-Transport-Security:
3298
+ - max-age=31557600; includeSubDomains; preload
3299
+ Content-Security-Policy:
3300
+ - upgrade-insecure-requests
3301
+ body:
3302
+ encoding: ASCII-8BIT
3303
+ string: '{"id":52,"jsonrpc":"2.0","result":{"head_block_number":47792848,"head_block_id":"02d942d0a3721a7e6dcdb4890d791c79db74e227","time":"2020-10-17T04:56:24","current_witness":"steemchiller","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405323191.605
3304
+ STEEM","current_supply":"368939483.442 STEEM","confidential_supply":"0.000
3305
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5785009.598 SBD","confidential_sbd_supply":"0.000
3306
+ SBD","total_vesting_fund_steem":"110212521.104 STEEM","total_vesting_shares":"212010345847.764603
3307
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718372390.049989
3308
+ VESTS","pending_rewarded_vesting_steem":"362618.808 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48025128,"recent_slots_filled":"340282285791300048838246167569053515775","participation_count":126,"last_irreversible_block_num":47792833,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16799672,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T05:41:51","last_budget_time":"2020-10-17T04:41:51","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"13.776
3309
+ SBD","downvote_pool_percent":2500}}'
3310
+ recorded_at: Sat, 17 Oct 2020 04:56:27 GMT
3311
+ - request:
3312
+ method: post
3313
+ uri: https://api.steemit.com/
3314
+ body:
3315
+ encoding: UTF-8
3316
+ string: '{"jsonrpc":"2.0","id":19,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
3317
+ headers:
3318
+ Content-Type:
3319
+ - application/json; charset=utf-8
3320
+ User-Agent:
3321
+ - steem-ruby/0.9.4
3322
+ Accept-Encoding:
3323
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3324
+ Accept:
3325
+ - "*/*"
3326
+ Host:
3327
+ - api.steemit.com
3328
+ Content-Length:
3329
+ - '150'
3330
+ response:
3331
+ status:
3332
+ code: 200
3333
+ message: OK
3334
+ headers:
3335
+ Date:
3336
+ - Sat, 17 Oct 2020 05:02:59 GMT
3337
+ Content-Type:
3338
+ - application/json
3339
+ Transfer-Encoding:
3340
+ - chunked
3341
+ Connection:
3342
+ - keep-alive
3343
+ Server:
3344
+ - nginx
3345
+ X-Jussi-Cache-Hit:
3346
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
3347
+ X-Jussi-Request-Id:
3348
+ - '000275479382249794'
3349
+ X-Amzn-Trace-Id:
3350
+ - Root=1-5f8a7b03-2d0d6fa61e8e085446f45b7c
3351
+ Access-Control-Allow-Origin:
3352
+ - "*"
3353
+ Access-Control-Allow-Methods:
3354
+ - GET, POST, OPTIONS
3355
+ Access-Control-Allow-Headers:
3356
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3357
+ Strict-Transport-Security:
3358
+ - max-age=31557600; includeSubDomains; preload
3359
+ Content-Security-Policy:
3360
+ - upgrade-insecure-requests
3361
+ body:
3362
+ encoding: ASCII-8BIT
3363
+ string: '{"id":19,"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
3364
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
3365
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
3366
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
3367
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
3368
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
3369
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
3370
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
3371
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
3372
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
3373
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
3374
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
3375
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3376
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
3377
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
3378
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
3379
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
3380
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
3381
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3382
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
3383
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
3384
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
3385
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3386
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
3387
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
3388
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
3389
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
3390
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
3391
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
3392
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
3393
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
3394
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
3395
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
3396
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
3397
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
3398
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
3399
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
3400
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
3401
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
3402
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
3403
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
3404
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
3405
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
3406
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
3407
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
3408
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
3409
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
3410
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
3411
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
3412
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
3413
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
3414
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
3415
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
3416
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
3417
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
3418
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
3419
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
3420
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
3421
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
3422
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
3423
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
3424
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
3425
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
3426
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
3427
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
3428
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
3429
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3430
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
3431
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
3432
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
3433
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
3434
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
3435
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
3436
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
3437
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
3438
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3439
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
3440
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
3441
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
3442
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
3443
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
3444
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
3445
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3446
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
3447
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
3448
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
3449
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
3450
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
3451
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
3452
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3453
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
3454
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
3455
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
3456
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
3457
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
3458
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
3459
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
3460
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
3461
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
3462
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3463
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3464
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3465
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
3466
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
3467
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
3468
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
3469
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
3470
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
3471
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
3472
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
3473
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
3474
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
3475
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
3476
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
3477
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
3478
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
3479
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
3480
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
3481
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
3482
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
3483
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
3484
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
3485
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
3486
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
3487
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
3488
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3489
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
3490
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
3491
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
3492
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
3493
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
3494
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
3495
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
3496
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
3497
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
3498
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
3499
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3500
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
3501
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
3502
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3503
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
3504
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
3505
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
3506
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
3507
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
3508
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
3509
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
3510
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
3511
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
3512
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
3513
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
3514
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
3515
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
3516
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
3517
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
3518
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
3519
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
3520
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
3521
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3522
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
3523
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
3524
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
3525
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
3526
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
3527
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
3528
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
3529
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
3530
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
3531
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
3532
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
3533
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
3534
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
3535
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
3536
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
3537
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
3538
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
3539
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
3540
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
3541
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
3542
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
3543
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
3544
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
3545
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
3546
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3547
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
3548
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3549
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
3550
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
3551
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
3552
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
3553
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
3554
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
3555
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
3556
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
3557
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3558
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
3559
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
3560
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
3561
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
3562
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
3563
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
3564
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
3565
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
3566
+ recorded_at: Sat, 17 Oct 2020 05:02:59 GMT
3567
+ - request:
3568
+ method: post
3569
+ uri: https://api.steemit.com/
3570
+ body:
3571
+ encoding: UTF-8
3572
+ string: '{"jsonrpc":"2.0","id":20,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
3573
+ headers:
3574
+ Content-Type:
3575
+ - application/json; charset=utf-8
3576
+ User-Agent:
3577
+ - steem-ruby/0.9.4
3578
+ Accept-Encoding:
3579
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3580
+ Accept:
3581
+ - "*/*"
3582
+ Host:
3583
+ - api.steemit.com
3584
+ Content-Length:
3585
+ - '93'
3586
+ response:
3587
+ status:
3588
+ code: 200
3589
+ message: OK
3590
+ headers:
3591
+ Date:
3592
+ - Sat, 17 Oct 2020 05:02:59 GMT
3593
+ Content-Type:
3594
+ - application/json
3595
+ Transfer-Encoding:
3596
+ - chunked
3597
+ Connection:
3598
+ - keep-alive
3599
+ Server:
3600
+ - nginx
3601
+ X-Jussi-Cache-Hit:
3602
+ - appbase.condenser_api.get_dynamic_global_properties.params=[]
3603
+ X-Jussi-Request-Id:
3604
+ - '000930727394940752'
3605
+ X-Amzn-Trace-Id:
3606
+ - Root=1-5f8a7b03-77d20d005d51ff84377d8834
3607
+ Access-Control-Allow-Origin:
3608
+ - "*"
3609
+ Access-Control-Allow-Methods:
3610
+ - GET, POST, OPTIONS
3611
+ Access-Control-Allow-Headers:
3612
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3613
+ Strict-Transport-Security:
3614
+ - max-age=31557600; includeSubDomains; preload
3615
+ Content-Security-Policy:
3616
+ - upgrade-insecure-requests
3617
+ body:
3618
+ encoding: ASCII-8BIT
3619
+ string: '{"id":20,"jsonrpc":"2.0","result":{"head_block_number":47792977,"head_block_id":"02d94351de6c7840ac3e014bcdbb608188045306","time":"2020-10-17T05:02:57","current_witness":"rnt1","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405323580.571
3620
+ STEEM","current_supply":"368939746.081 STEEM","confidential_supply":"0.000
3621
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5785029.684 SBD","confidential_sbd_supply":"0.000
3622
+ SBD","total_vesting_fund_steem":"110212546.742 STEEM","total_vesting_shares":"212010282275.613711
3623
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718655130.509759
3624
+ VESTS","pending_rewarded_vesting_steem":"362765.775 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48025259,"recent_slots_filled":"340277174614176408321463034736245997567","participation_count":126,"last_irreversible_block_num":47792961,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16831592,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T05:41:51","last_budget_time":"2020-10-17T04:41:51","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"19.968
3625
+ SBD","downvote_pool_percent":2500}}'
3626
+ recorded_at: Sat, 17 Oct 2020 05:03:00 GMT
3627
+ recorded_with: VCR 6.0.0