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,3428 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://steemd.minnowsupportproject.org/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"jsonrpc":"2.0","id":9,"method":"jsonrpc.get_methods","params":{}}'
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
+ - steem.bts.tw
20
+ Content-Length:
21
+ - '92'
22
+ response:
23
+ status:
24
+ code: 502
25
+ message: Bad Gateway
26
+ headers:
27
+ Server:
28
+ - nginx/1.17.1
29
+ Date:
30
+ - Sat, 17 Oct 2020 04:26:26 GMT
31
+ Content-Type:
32
+ - text/html
33
+ Content-Length:
34
+ - '157'
35
+ Connection:
36
+ - keep-alive
37
+ body:
38
+ encoding: UTF-8
39
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
40
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
41
+ recorded_at: Sat, 17 Oct 2020 04:26:26 GMT
42
+ - request:
43
+ method: post
44
+ uri: https://api.steemit.com/
45
+ body:
46
+ encoding: UTF-8
47
+ string: '{"jsonrpc":"2.0","id":10,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
48
+ headers:
49
+ Content-Type:
50
+ - application/json; charset=utf-8
51
+ User-Agent:
52
+ - steem-ruby/0.9.4
53
+ Accept-Encoding:
54
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
55
+ Accept:
56
+ - "*/*"
57
+ Host:
58
+ - steem.bts.tw
59
+ Content-Length:
60
+ - '67'
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ Date:
67
+ - Sat, 17 Oct 2020 04:26:26 GMT
68
+ Content-Type:
69
+ - application/json
70
+ Transfer-Encoding:
71
+ - chunked
72
+ Connection:
73
+ - keep-alive
74
+ Server:
75
+ - nginx
76
+ X-Jussi-Cache-Hit:
77
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
78
+ X-Jussi-Request-Id:
79
+ - '000244601900036893'
80
+ X-Amzn-Trace-Id:
81
+ - Root=1-5f8a7272-1451563401d5d4a916e4a869
82
+ Access-Control-Allow-Origin:
83
+ - "*"
84
+ Access-Control-Allow-Methods:
85
+ - GET, POST, OPTIONS
86
+ Access-Control-Allow-Headers:
87
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
88
+ Strict-Transport-Security:
89
+ - max-age=31557600; includeSubDomains; preload
90
+ Content-Security-Policy:
91
+ - upgrade-insecure-requests
92
+ body:
93
+ encoding: ASCII-8BIT
94
+ string: '{"id":10,"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\":
95
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
96
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
97
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
98
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
99
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
100
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
101
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
102
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
103
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
104
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
105
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
106
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
107
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
108
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
109
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
110
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
111
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
112
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
113
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
114
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
115
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
116
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
117
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
118
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
119
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
120
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
121
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
122
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
123
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
124
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
125
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
126
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
127
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
128
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
129
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
130
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
131
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
132
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
133
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
134
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
135
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
136
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
137
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
138
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
139
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
140
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
141
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
142
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
143
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
144
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
145
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
146
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
147
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
148
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
149
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
150
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
151
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
152
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
153
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
154
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
155
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
156
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
157
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
158
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
159
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
160
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
161
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
162
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
163
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
164
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
165
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
166
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
167
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
168
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
169
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
170
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
171
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
172
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
173
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
174
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
175
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
176
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
177
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
178
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
179
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
180
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
181
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
182
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
183
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
184
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
185
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
186
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
187
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
188
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
189
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
190
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
191
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
192
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
193
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
194
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
195
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
196
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
197
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
198
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
199
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
200
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
201
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
202
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
203
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
204
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
205
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
206
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
207
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
208
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
209
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
210
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
211
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
212
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
213
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
214
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
215
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
216
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
217
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
218
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
219
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
220
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
221
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
222
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
223
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
224
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
225
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
226
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
227
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
228
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
229
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
230
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
231
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
232
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
233
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
234
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
235
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
236
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
237
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
238
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
239
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
240
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
241
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
242
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
243
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
244
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
245
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
246
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
247
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
248
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
249
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
250
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
251
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
252
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
253
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
254
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
255
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
256
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
257
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
258
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
259
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
260
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
261
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
262
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
263
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
264
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
265
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
266
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
267
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
268
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
269
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
270
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
271
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
272
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
273
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
274
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
275
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
276
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
277
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
278
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
279
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
280
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
281
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
282
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
283
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
284
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
285
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
286
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
287
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
288
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
289
+ \"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
290
+ 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
291
+ 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
292
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
293
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
294
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
295
+ 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
296
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
297
+ recorded_at: Sat, 17 Oct 2020 04:26:26 GMT
298
+ - request:
299
+ method: post
300
+ uri: https://steem.bts.tw/
301
+ body:
302
+ encoding: UTF-8
303
+ string: '{"jsonrpc":"2.0","id":11,"method":"jsonrpc.get_methods","params":{}}'
304
+ headers:
305
+ Content-Type:
306
+ - application/json; charset=utf-8
307
+ User-Agent:
308
+ - steem-ruby/0.9.4
309
+ Accept-Encoding:
310
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
311
+ Accept:
312
+ - "*/*"
313
+ Host:
314
+ - steem.bts.tw
315
+ Content-Length:
316
+ - '93'
317
+ response:
318
+ status:
319
+ code: 502
320
+ message: Bad Gateway
321
+ headers:
322
+ Date:
323
+ - Sat, 17 Oct 2020 04:26:27 GMT
324
+ Content-Type:
325
+ - text/html; charset=UTF-8
326
+ Transfer-Encoding:
327
+ - chunked
328
+ Connection:
329
+ - keep-alive
330
+ Set-Cookie:
331
+ - cf_ob_info=502:5e3742edef6492e0:SJC; path=/; expires=Sat, 17-Oct-20 04:26:57
332
+ GMT
333
+ - cf_use_ob=443; path=/; expires=Sat, 17-Oct-20 04:26:57 GMT
334
+ X-Frame-Options:
335
+ - SAMEORIGIN
336
+ Cache-Control:
337
+ - private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
338
+ Expires:
339
+ - Thu, 01 Jan 1970 00:00:01 GMT
340
+ Cf-Ray:
341
+ - 5e3742edef6492e0-SJC
342
+ Server:
343
+ - cloudflare
344
+ body:
345
+ encoding: UTF-8
346
+ string: "<!DOCTYPE html>\n<!--[if lt IE 7]> <html class=\"no-js ie6 oldie\"
347
+ lang=\"en-US\"> <![endif]-->\n<!--[if IE 7]> <html class=\"no-js ie7 oldie\"
348
+ lang=\"en-US\"> <![endif]-->\n<!--[if IE 8]> <html class=\"no-js ie8 oldie\"
349
+ lang=\"en-US\"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class=\"no-js\"
350
+ lang=\"en-US\"> <!--<![endif]-->\n<head>\n<meta http-equiv=\"refresh\" content=\"0\">\n\n<title>steem.bts.tw
351
+ | 502: Bad gateway</title>\n<meta charset=\"UTF-8\" />\n<meta http-equiv=\"Content-Type\"
352
+ content=\"text/html; charset=UTF-8\" />\n<meta http-equiv=\"X-UA-Compatible\"
353
+ content=\"IE=Edge,chrome=1\" />\n<meta name=\"robots\" content=\"noindex,
354
+ nofollow\" />\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"
355
+ />\n<link rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
356
+ type=\"text/css\" media=\"screen,projection\" />\n\n\n</head>\n<body>\n<div
357
+ id=\"cf-wrapper\">\n\n \n\n <div id=\"cf-error-details\" class=\"p-0\">\n
358
+ \ <header class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-8\">\n
359
+ \ <h1 class=\"inline-block sm:block sm:mb-2 font-light text-60 lg:text-4xl
360
+ text-black-dark leading-tight mr-2\">\n \n <span
361
+ class=\"cf-error-type\">Error</span>\n <span class=\"cf-error-code\">502</span>\n
362
+ \ </h1>\n <span class=\"inline-block sm:block font-mono
363
+ text-15 lg:text-sm lg:leading-relaxed\">Ray ID: 5e3742edef6492e0 &bull;</span>\n
364
+ \ <span class=\"inline-block sm:block font-mono text-15 lg:text-sm
365
+ lg:leading-relaxed\">2020-10-17 04:26:27 UTC</span>\n <h2 class=\"text-gray-600
366
+ leading-1.3 text-3xl font-light\">Bad gateway</h2>\n </header>\n \n
367
+ \ <div class=\"my-8 bg-gradient-gray\">\n <div class=\"w-240
368
+ lg:w-full mx-auto\">\n <div class=\"clearfix md:px-8\">\n \n<div
369
+ id=\"cf-browser-status\" class=\" relative w-1/3 md:w-full py-15 md:p-0 md:py-8
370
+ md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden
371
+ float-left md:float-none text-center\">\n <div class=\"relative mb-10 md:m-0\">\n
372
+ \ <span class=\"cf-icon-browser block md:hidden h-20 bg-center bg-no-repeat\"></span>\n
373
+ \ <span class=\"cf-icon-ok w-12 h-12 absolute left-1/2 md:left-auto md:right-0
374
+ md:top-0 -ml-6 -bottom-4\"></span>\n </div>\n <span class=\"md:block w-full
375
+ truncate\">You</span>\n <h3 class=\"md:inline-block mt-3 md:mt-0 text-2xl
376
+ text-gray-600 font-light leading-1.3\">Browser</h3>\n <span class=\"leading-1.3
377
+ text-2xl text-green-success\">Working</span>\n</div>\n\n<div id=\"cf-cloudflare-status\"
378
+ class=\" relative w-1/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid
379
+ md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none
380
+ text-center\">\n <div class=\"relative mb-10 md:m-0\">\n <span class=\"cf-icon-cloud
381
+ block md:hidden h-20 bg-center bg-no-repeat\"></span>\n <span class=\"cf-icon-ok
382
+ w-12 h-12 absolute left-1/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"></span>\n
383
+ \ </div>\n <span class=\"md:block w-full truncate\">San Jose</span>\n <h3
384
+ class=\"md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">Cloudflare</h3>\n
385
+ \ <span class=\"leading-1.3 text-2xl text-green-success\">Working</span>\n</div>\n\n<div
386
+ id=\"cf-host-status\" class=\"cf-error-source relative w-1/3 md:w-full py-15
387
+ md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400
388
+ overflow-hidden float-left md:float-none text-center\">\n <div class=\"relative
389
+ mb-10 md:m-0\">\n <span class=\"cf-icon-server block md:hidden h-20 bg-center
390
+ bg-no-repeat\"></span>\n <span class=\"cf-icon-error w-12 h-12 absolute
391
+ left-1/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"></span>\n </div>\n
392
+ \ <span class=\"md:block w-full truncate\">steem.bts.tw</span>\n <h3 class=\"md:inline-block
393
+ mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">Host</h3>\n <span
394
+ class=\"leading-1.3 text-2xl text-red-error\">Error</span>\n</div>\n\n </div>\n
395
+ \ \n </div>\n </div>\n\n <div class=\"w-240
396
+ lg:w-full mx-auto mb-8 lg:px-8\">\n <div class=\"clearfix\">\n
397
+ \ <div class=\"w-1/2 md:w-full float-left pr-6 md:pb-10 md:pr-0
398
+ leading-relaxed\">\n <h2 class=\"text-3xl font-normal leading-1.3
399
+ mb-4\">What happened?</h2>\n <p>The web server reported
400
+ a bad gateway error.</p>\n </div>\n \n <div
401
+ class=\"w-1/2 md:w-full float-left leading-relaxed\">\n <h2
402
+ class=\"text-3xl font-normal leading-1.3 mb-4\">What can I do?</h2>\n <p
403
+ class=\"mb-6\">Please try again in a few minutes.</p>\n </div>\n
404
+ \ </div>\n \n </div>\n\n <div class=\"cf-error-footer
405
+ cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left
406
+ border-solid border-0 border-t border-gray-300\">\n <p class=\"text-13\">\n
407
+ \ <span class=\"cf-footer-item sm:block sm:mb-1\">Cloudflare Ray ID: <strong
408
+ class=\"font-semibold\">5e3742edef6492e0</strong></span>\n <span class=\"cf-footer-separator
409
+ sm:hidden\">&bull;</span>\n <span class=\"cf-footer-item sm:block sm:mb-1\"><span>Your
410
+ IP</span>: 47.208.230.76</span>\n <span class=\"cf-footer-separator sm:hidden\">&bull;</span>\n
411
+ \ <span class=\"cf-footer-item sm:block sm:mb-1\"><span>Performance &amp;
412
+ security by</span> <a href=\"https://www.cloudflare.com/5xx-error-landing\"
413
+ id=\"brand_link\" target=\"_blank\">Cloudflare</a></span>\n \n </p>\n</div><!--
414
+ /.error-footer -->\n\n\n </div>\n</div>\n</body>\n</html>\n\n"
415
+ recorded_at: Sat, 17 Oct 2020 04:26:27 GMT
416
+ - request:
417
+ method: post
418
+ uri: https://api.steemit.com/
419
+ body:
420
+ encoding: UTF-8
421
+ string: '{"jsonrpc":"2.0","id":12,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
422
+ headers:
423
+ Content-Type:
424
+ - application/json; charset=utf-8
425
+ User-Agent:
426
+ - steem-ruby/0.9.4
427
+ Accept-Encoding:
428
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
429
+ Accept:
430
+ - "*/*"
431
+ Host:
432
+ - steem.bts.tw
433
+ Content-Length:
434
+ - '68'
435
+ response:
436
+ status:
437
+ code: 200
438
+ message: OK
439
+ headers:
440
+ Date:
441
+ - Sat, 17 Oct 2020 04:26:27 GMT
442
+ Content-Type:
443
+ - application/json
444
+ Transfer-Encoding:
445
+ - chunked
446
+ Connection:
447
+ - keep-alive
448
+ Server:
449
+ - nginx
450
+ X-Jussi-Request-Id:
451
+ - '000408130563245394'
452
+ X-Amzn-Trace-Id:
453
+ - Root=1-5f8a7273-3a48e95a215e351657bb5bc9
454
+ Access-Control-Allow-Origin:
455
+ - "*"
456
+ Access-Control-Allow-Methods:
457
+ - GET, POST, OPTIONS
458
+ Access-Control-Allow-Headers:
459
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
460
+ Strict-Transport-Security:
461
+ - max-age=31557600; includeSubDomains; preload
462
+ Content-Security-Policy:
463
+ - upgrade-insecure-requests
464
+ body:
465
+ encoding: ASCII-8BIT
466
+ 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\":
467
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
468
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
469
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
470
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
471
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
472
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
473
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
474
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
475
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
476
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
477
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
478
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
479
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
480
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
481
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
482
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
483
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
484
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
485
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
486
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
487
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
488
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
489
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
490
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
491
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
492
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
493
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
494
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
495
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
496
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
497
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
498
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
499
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
500
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
501
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
502
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
503
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
504
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
505
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
506
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
507
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
508
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
509
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
510
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
511
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
512
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
513
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
514
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
515
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
516
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
517
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
518
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
519
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
520
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
521
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
522
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
523
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
524
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
525
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
526
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
527
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
528
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
529
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
530
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
531
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
532
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
533
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
534
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
535
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
536
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
537
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
538
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
539
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
540
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
541
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
542
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
543
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
544
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
545
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
546
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
547
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
548
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
549
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
550
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
551
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
552
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
553
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
554
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
555
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
556
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
557
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
558
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
559
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
560
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
561
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
562
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
563
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
564
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
565
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
566
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
567
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
568
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
569
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
570
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
571
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
572
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
573
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
574
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
575
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
576
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
577
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
578
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
579
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
580
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
581
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
582
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
583
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
584
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
585
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
586
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
587
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
588
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
589
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
590
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
591
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
592
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
593
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
594
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
595
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
596
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
597
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
598
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
599
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
600
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
601
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
602
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
603
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
604
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
605
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
606
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
607
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
608
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
609
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
610
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
611
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
612
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
613
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
614
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
615
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
616
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
617
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
618
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
619
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
620
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
621
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
622
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
623
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
624
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
625
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
626
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
627
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
628
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
629
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
630
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
631
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
632
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
633
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
634
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
635
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
636
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
637
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
638
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
639
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
640
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
641
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
642
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
643
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
644
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
645
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
646
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
647
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
648
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
649
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
650
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
651
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
652
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
653
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
654
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
655
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
656
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
657
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
658
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
659
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
660
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
661
+ \"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
662
+ 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
663
+ 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
664
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
665
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
666
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
667
+ 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
668
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":12}'
669
+ recorded_at: Sat, 17 Oct 2020 04:26:27 GMT
670
+ - request:
671
+ method: post
672
+ uri: https://api.justyy.com/
673
+ body:
674
+ encoding: UTF-8
675
+ string: '{"jsonrpc":"2.0","id":45,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
676
+ headers:
677
+ Content-Type:
678
+ - application/json; charset=utf-8
679
+ User-Agent:
680
+ - steem-ruby/0.9.4
681
+ Accept-Encoding:
682
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
683
+ Accept:
684
+ - "*/*"
685
+ Host:
686
+ - api.steemitdev.com
687
+ Content-Length:
688
+ - '93'
689
+ response:
690
+ status:
691
+ code: 200
692
+ message: OK
693
+ headers:
694
+ Server:
695
+ - nginx/1.14.0 (Ubuntu)
696
+ Date:
697
+ - Sat, 17 Oct 2020 04:27:03 GMT
698
+ Content-Type:
699
+ - application/json
700
+ Content-Length:
701
+ - '17993'
702
+ Connection:
703
+ - keep-alive
704
+ X-Jussi-Cache-Hit:
705
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
706
+ X-Jussi-Request-Id:
707
+ - '000068697593458843'
708
+ X-Amzn-Trace-Id:
709
+ - ''
710
+ Access-Control-Allow-Origin:
711
+ - "*"
712
+ Access-Control-Allow-Methods:
713
+ - GET, POST, OPTIONS
714
+ Access-Control-Allow-Headers:
715
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
716
+ Strict-Transport-Security:
717
+ - max-age=31557600; includeSubDomains; preload
718
+ Content-Security-Policy:
719
+ - upgrade-insecure-requests
720
+ body:
721
+ encoding: UTF-8
722
+ string: '{"id":45,"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\":
723
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
724
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
725
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
726
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
727
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
728
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
729
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
730
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
731
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
732
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
733
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
734
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
735
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
736
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
737
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
738
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
739
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
740
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
741
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
742
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
743
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
744
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
745
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
746
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
747
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
748
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
749
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
750
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
751
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
752
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
753
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
754
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
755
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
756
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
757
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
758
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
759
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
760
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
761
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
762
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
763
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
764
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
765
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
766
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
767
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
768
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
769
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
770
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
771
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
772
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
773
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
774
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
775
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
776
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
777
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
778
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
779
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
780
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
781
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
782
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
783
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
784
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
785
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
786
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
787
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
788
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
789
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
790
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
791
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
792
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
793
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
794
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
795
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
796
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
797
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
798
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
799
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
800
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
801
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
802
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
803
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
804
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
805
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
806
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
807
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
808
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
809
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
810
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
811
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
812
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
813
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
814
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
815
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
816
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
817
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
818
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
819
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
820
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
821
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
822
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
823
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
824
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
825
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
826
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
827
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
828
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
829
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
830
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
831
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
832
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
833
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
834
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
835
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
836
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
837
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
838
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
839
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
840
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
841
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
842
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
843
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
844
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
845
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
846
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
847
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
848
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
849
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
850
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
851
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
852
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
853
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
854
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
855
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
856
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
857
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
858
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
859
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
860
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
861
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
862
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
863
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
864
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
865
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
866
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
867
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
868
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
869
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
870
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
871
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
872
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
873
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
874
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
875
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
876
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
877
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
878
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
879
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
880
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
881
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
882
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
883
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
884
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
885
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
886
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
887
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
888
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
889
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
890
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
891
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
892
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
893
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
894
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
895
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
896
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
897
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
898
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
899
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
900
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
901
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
902
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
903
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
904
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
905
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
906
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
907
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
908
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
909
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
910
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
911
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
912
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
913
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
914
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
915
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
916
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
917
+ \"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
918
+ 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
919
+ 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
920
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
921
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
922
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
923
+ 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
924
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
925
+ recorded_at: Sat, 17 Oct 2020 04:27:04 GMT
926
+ - request:
927
+ method: post
928
+ uri: https://steemd.minnowsupportproject.org/
929
+ body:
930
+ encoding: UTF-8
931
+ string: '{"jsonrpc":"2.0","id":46,"method":"jsonrpc.get_methods","params":{}}'
932
+ headers:
933
+ Content-Type:
934
+ - application/json; charset=utf-8
935
+ User-Agent:
936
+ - steem-ruby/0.9.4
937
+ Accept-Encoding:
938
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
939
+ Accept:
940
+ - "*/*"
941
+ Host:
942
+ - api.steemitdev.com
943
+ Content-Length:
944
+ - '93'
945
+ response:
946
+ status:
947
+ code: 502
948
+ message: Bad Gateway
949
+ headers:
950
+ Server:
951
+ - nginx/1.17.1
952
+ Date:
953
+ - Sat, 17 Oct 2020 04:27:05 GMT
954
+ Content-Type:
955
+ - text/html
956
+ Content-Length:
957
+ - '157'
958
+ Connection:
959
+ - keep-alive
960
+ body:
961
+ encoding: UTF-8
962
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
963
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
964
+ recorded_at: Sat, 17 Oct 2020 04:27:05 GMT
965
+ - request:
966
+ method: post
967
+ uri: https://api.steemit.com/
968
+ body:
969
+ encoding: UTF-8
970
+ string: '{"jsonrpc":"2.0","id":47,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
971
+ headers:
972
+ Content-Type:
973
+ - application/json; charset=utf-8
974
+ User-Agent:
975
+ - steem-ruby/0.9.4
976
+ Accept-Encoding:
977
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
978
+ Accept:
979
+ - "*/*"
980
+ Host:
981
+ - api.steemitdev.com
982
+ Content-Length:
983
+ - '68'
984
+ response:
985
+ status:
986
+ code: 200
987
+ message: OK
988
+ headers:
989
+ Date:
990
+ - Sat, 17 Oct 2020 04:27:06 GMT
991
+ Content-Type:
992
+ - application/json
993
+ Transfer-Encoding:
994
+ - chunked
995
+ Connection:
996
+ - keep-alive
997
+ Server:
998
+ - nginx
999
+ X-Jussi-Request-Id:
1000
+ - '000524536668291308'
1001
+ X-Amzn-Trace-Id:
1002
+ - Root=1-5f8a729a-0f4acec10d32bc0b3e207ea5
1003
+ Access-Control-Allow-Origin:
1004
+ - "*"
1005
+ Access-Control-Allow-Methods:
1006
+ - GET, POST, OPTIONS
1007
+ Access-Control-Allow-Headers:
1008
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1009
+ Strict-Transport-Security:
1010
+ - max-age=31557600; includeSubDomains; preload
1011
+ Content-Security-Policy:
1012
+ - upgrade-insecure-requests
1013
+ body:
1014
+ encoding: ASCII-8BIT
1015
+ 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\":
1016
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1017
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1018
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1019
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1020
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1021
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1022
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1023
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1024
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1025
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1026
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1027
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1028
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1029
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1030
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1031
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1032
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1033
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1034
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1035
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1036
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1037
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1038
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1039
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1040
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1041
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1042
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1043
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1044
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1045
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1046
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1047
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1048
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1049
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1050
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1051
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1052
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1053
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1054
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1055
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1056
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1057
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1058
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1059
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1060
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1061
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1062
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1063
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1064
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1065
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1066
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1067
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1068
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1069
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1070
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1071
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1072
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1073
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1074
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1075
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1076
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1077
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1078
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1079
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1080
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1081
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1082
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1083
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1084
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1085
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1086
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1087
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1088
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1089
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1090
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1091
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1092
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1093
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1094
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1095
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1096
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1097
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1098
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1099
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1100
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1101
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1102
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1103
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1104
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1105
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1106
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1107
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1108
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1109
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1110
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1111
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1112
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1113
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1114
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1115
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1116
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1117
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1118
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1119
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1120
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1121
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1122
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1123
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1124
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1125
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1126
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1127
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1128
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1129
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1130
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1131
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1132
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1133
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1134
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1135
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1136
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1137
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1138
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1139
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1140
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1141
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1142
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1143
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1144
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1145
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1146
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1147
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1148
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1149
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1150
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1151
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1152
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1153
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1154
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1155
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1156
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1157
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1158
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1159
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1160
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1161
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1162
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1163
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1164
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1165
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1166
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1167
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1168
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1169
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1170
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1171
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1172
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1173
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1174
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1175
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1176
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1177
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1178
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1179
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1180
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1181
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1182
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1183
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1184
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1185
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1186
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1187
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1188
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1189
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1190
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1191
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1192
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1193
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1194
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1195
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1196
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1197
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1198
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1199
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1200
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1201
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1202
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1203
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1204
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1205
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1206
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1207
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1208
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1209
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1210
+ \"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
1211
+ 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
1212
+ 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
1213
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1214
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1215
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1216
+ 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
1217
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":47}'
1218
+ recorded_at: Sat, 17 Oct 2020 04:27:06 GMT
1219
+ - request:
1220
+ method: post
1221
+ uri: https://api.steemit.com/
1222
+ body:
1223
+ encoding: UTF-8
1224
+ string: '{"jsonrpc":"2.0","id":86,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1225
+ headers:
1226
+ Content-Type:
1227
+ - application/json; charset=utf-8
1228
+ User-Agent:
1229
+ - steem-ruby/0.9.4
1230
+ Accept-Encoding:
1231
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1232
+ Accept:
1233
+ - "*/*"
1234
+ Host:
1235
+ - api.steemitdev.com
1236
+ Content-Length:
1237
+ - '150'
1238
+ response:
1239
+ status:
1240
+ code: 200
1241
+ message: OK
1242
+ headers:
1243
+ Date:
1244
+ - Sat, 17 Oct 2020 04:34:56 GMT
1245
+ Content-Type:
1246
+ - application/json
1247
+ Transfer-Encoding:
1248
+ - chunked
1249
+ Connection:
1250
+ - keep-alive
1251
+ Server:
1252
+ - nginx
1253
+ X-Jussi-Request-Id:
1254
+ - '001084828663656227'
1255
+ X-Amzn-Trace-Id:
1256
+ - Root=1-5f8a7470-5d817575352940ae2d9a042b
1257
+ Access-Control-Allow-Origin:
1258
+ - "*"
1259
+ Access-Control-Allow-Methods:
1260
+ - GET, POST, OPTIONS
1261
+ Access-Control-Allow-Headers:
1262
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1263
+ Strict-Transport-Security:
1264
+ - max-age=31557600; includeSubDomains; preload
1265
+ Content-Security-Policy:
1266
+ - upgrade-insecure-requests
1267
+ body:
1268
+ encoding: ASCII-8BIT
1269
+ 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\":
1270
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1271
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1272
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1273
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1274
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1275
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1276
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1277
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1278
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1279
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1280
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1281
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1282
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1283
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1284
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1285
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1286
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1287
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1288
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1289
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1290
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1291
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1292
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1293
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1294
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1295
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1296
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1297
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1298
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1299
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1300
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1301
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1302
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1303
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1304
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1305
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1306
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1307
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1308
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1309
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1310
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1311
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1312
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1313
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1314
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1315
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1316
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1317
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1318
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1319
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1320
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1321
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1322
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1323
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1324
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1325
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1326
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1327
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1328
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1329
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1330
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1331
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1332
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1333
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1334
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1335
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1336
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1337
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1338
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1339
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1340
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1341
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1342
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1343
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1344
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1345
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1346
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1347
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1348
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1349
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1350
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1351
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1352
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1353
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1354
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1355
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1356
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1357
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1358
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1359
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1360
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1361
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1362
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1363
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1364
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1365
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1366
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1367
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1368
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1369
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1370
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1371
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1372
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1373
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1374
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1375
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1376
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1377
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1378
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1379
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1380
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1381
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1382
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1383
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1384
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1385
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1386
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1387
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1388
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1389
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1390
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1391
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1392
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1393
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1394
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1395
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1396
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1397
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1398
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1399
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1400
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1401
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1402
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1403
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1404
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1405
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1406
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1407
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1408
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1409
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1410
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1411
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1412
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1413
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1414
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1415
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1416
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1417
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1418
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1419
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1420
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1421
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1422
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1423
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1424
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1425
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1426
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1427
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1428
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1429
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1430
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1431
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1432
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1433
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1434
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1435
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1436
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1437
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1438
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1439
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1440
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1441
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1442
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1443
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1444
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1445
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1446
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1447
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1448
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1449
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1450
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1451
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1452
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1453
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1454
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1455
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1456
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1457
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1458
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1459
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1460
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1461
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1462
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1463
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1464
+ \"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
1465
+ 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
1466
+ 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
1467
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1468
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1469
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1470
+ 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
1471
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":86}'
1472
+ recorded_at: Sat, 17 Oct 2020 04:34:56 GMT
1473
+ - request:
1474
+ method: post
1475
+ uri: https://api.justyy.com/
1476
+ body:
1477
+ encoding: UTF-8
1478
+ string: '{"jsonrpc":"2.0","id":87,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1479
+ headers:
1480
+ Content-Type:
1481
+ - application/json; charset=utf-8
1482
+ User-Agent:
1483
+ - steem-ruby/0.9.4
1484
+ Accept-Encoding:
1485
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1486
+ Accept:
1487
+ - "*/*"
1488
+ Host:
1489
+ - api.steemitdev.com
1490
+ Content-Length:
1491
+ - '93'
1492
+ response:
1493
+ status:
1494
+ code: 200
1495
+ message: OK
1496
+ headers:
1497
+ Server:
1498
+ - nginx/1.14.0 (Ubuntu)
1499
+ Date:
1500
+ - Sat, 17 Oct 2020 04:34:57 GMT
1501
+ Content-Type:
1502
+ - application/json
1503
+ Content-Length:
1504
+ - '17993'
1505
+ Connection:
1506
+ - keep-alive
1507
+ X-Jussi-Request-Id:
1508
+ - '000800511399933399'
1509
+ X-Amzn-Trace-Id:
1510
+ - ''
1511
+ Access-Control-Allow-Origin:
1512
+ - "*"
1513
+ Access-Control-Allow-Methods:
1514
+ - GET, POST, OPTIONS
1515
+ Access-Control-Allow-Headers:
1516
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1517
+ Strict-Transport-Security:
1518
+ - max-age=31557600; includeSubDomains; preload
1519
+ Content-Security-Policy:
1520
+ - upgrade-insecure-requests
1521
+ body:
1522
+ encoding: UTF-8
1523
+ 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\":
1524
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1525
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1526
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1527
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1528
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1529
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1530
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1531
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1532
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1533
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1534
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1535
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1536
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1537
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1538
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1539
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1540
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1541
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1542
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1543
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1544
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1545
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1546
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1547
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1548
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1549
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1550
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1551
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1552
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1553
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1554
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1555
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1556
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1557
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1558
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1559
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1560
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1561
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1562
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1563
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1564
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1565
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1566
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1567
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1568
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1569
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1570
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1571
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1572
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1573
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1574
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1575
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1576
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1577
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1578
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1579
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1580
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1581
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1582
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1583
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1584
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1585
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1586
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1587
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1588
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1589
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1590
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1591
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1592
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1593
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1594
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1595
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1596
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1597
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1598
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1599
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1600
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1601
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1602
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1603
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1604
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1605
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1606
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1607
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1608
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1609
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1610
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1611
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1612
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1613
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1614
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1615
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1616
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1617
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1618
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1619
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1620
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1621
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1622
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1623
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1624
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1625
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1626
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1627
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1628
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1629
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1630
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1631
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1632
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1633
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1634
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1635
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1636
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1637
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1638
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1639
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1640
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1641
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1642
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1643
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1644
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1645
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1646
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1647
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1648
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1649
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1650
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1651
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1652
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1653
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1654
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1655
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1656
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1657
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1658
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1659
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1660
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1661
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1662
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1663
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1664
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1665
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1666
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1667
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1668
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1669
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1670
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1671
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1672
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1673
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1674
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1675
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1676
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1677
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1678
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1679
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1680
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1681
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1682
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1683
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1684
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1685
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1686
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1687
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1688
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1689
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1690
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1691
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1692
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1693
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1694
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1695
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1696
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1697
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1698
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1699
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1700
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1701
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1702
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1703
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1704
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1705
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1706
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1707
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1708
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1709
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1710
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1711
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1712
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1713
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1714
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1715
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1716
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1717
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1718
+ \"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
1719
+ 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
1720
+ 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
1721
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1722
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1723
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1724
+ 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
1725
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":87}'
1726
+ recorded_at: Sat, 17 Oct 2020 04:34:58 GMT
1727
+ - request:
1728
+ method: post
1729
+ uri: https://steem.bts.tw/
1730
+ body:
1731
+ encoding: UTF-8
1732
+ string: '{"jsonrpc":"2.0","id":41,"method":"jsonrpc.get_methods","params":{}}'
1733
+ headers:
1734
+ Content-Type:
1735
+ - application/json; charset=utf-8
1736
+ User-Agent:
1737
+ - steem-ruby/0.9.4
1738
+ Accept-Encoding:
1739
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1740
+ Accept:
1741
+ - "*/*"
1742
+ Host:
1743
+ - api.steemitdev.com
1744
+ Content-Length:
1745
+ - '78'
1746
+ response:
1747
+ status:
1748
+ code: 403
1749
+ message: Forbidden
1750
+ headers:
1751
+ Server:
1752
+ - cloudflare
1753
+ Date:
1754
+ - Sat, 17 Oct 2020 04:39:42 GMT
1755
+ Content-Type:
1756
+ - text/html
1757
+ Content-Length:
1758
+ - '151'
1759
+ Connection:
1760
+ - keep-alive
1761
+ Cf-Ray:
1762
+ - 5e37565d9f5f1c79-SJC
1763
+ body:
1764
+ encoding: UTF-8
1765
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
1766
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
1767
+ recorded_at: Sat, 17 Oct 2020 04:39:42 GMT
1768
+ - request:
1769
+ method: post
1770
+ uri: https://api.steemit.com/
1771
+ body:
1772
+ encoding: UTF-8
1773
+ string: '{"jsonrpc":"2.0","id":42,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1774
+ headers:
1775
+ Content-Type:
1776
+ - application/json; charset=utf-8
1777
+ User-Agent:
1778
+ - steem-ruby/0.9.4
1779
+ Accept-Encoding:
1780
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1781
+ Accept:
1782
+ - "*/*"
1783
+ Host:
1784
+ - api.steemitdev.com
1785
+ Content-Length:
1786
+ - '68'
1787
+ response:
1788
+ status:
1789
+ code: 200
1790
+ message: OK
1791
+ headers:
1792
+ Date:
1793
+ - Sat, 17 Oct 2020 04:39:43 GMT
1794
+ Content-Type:
1795
+ - application/json
1796
+ Transfer-Encoding:
1797
+ - chunked
1798
+ Connection:
1799
+ - keep-alive
1800
+ Server:
1801
+ - nginx
1802
+ X-Jussi-Request-Id:
1803
+ - '000600605819968281'
1804
+ X-Amzn-Trace-Id:
1805
+ - Root=1-5f8a758f-3afc457d15f57b9a5b57163f
1806
+ Access-Control-Allow-Origin:
1807
+ - "*"
1808
+ Access-Control-Allow-Methods:
1809
+ - GET, POST, OPTIONS
1810
+ Access-Control-Allow-Headers:
1811
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1812
+ Strict-Transport-Security:
1813
+ - max-age=31557600; includeSubDomains; preload
1814
+ Content-Security-Policy:
1815
+ - upgrade-insecure-requests
1816
+ body:
1817
+ encoding: ASCII-8BIT
1818
+ 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\":
1819
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1820
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1821
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1822
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1823
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1824
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1825
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1826
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1827
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1828
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1829
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1830
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1831
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1832
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1833
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1834
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1835
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1836
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1837
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1838
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1839
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1840
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1841
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1842
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1843
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1844
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1845
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1846
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1847
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1848
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1849
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1850
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1851
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1852
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1853
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1854
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1855
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1856
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1857
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1858
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1859
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1860
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1861
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1862
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1863
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1864
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1865
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1866
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1867
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1868
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1869
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1870
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1871
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1872
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1873
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1874
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1875
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1876
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1877
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1878
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1879
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1880
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1881
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1882
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1883
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1884
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1885
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1886
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1887
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1888
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1889
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1890
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1891
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1892
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1893
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1894
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1895
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1896
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1897
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1898
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1899
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1900
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1901
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1902
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1903
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1904
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1905
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1906
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1907
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1908
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1909
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1910
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1911
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1912
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1913
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1914
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1915
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1916
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1917
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1918
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1919
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1920
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1921
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1922
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1923
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1924
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1925
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1926
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1927
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1928
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1929
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1930
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1931
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1932
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1933
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1934
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1935
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1936
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1937
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1938
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1939
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1940
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1941
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1942
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1943
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1944
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1945
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1946
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1947
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1948
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1949
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1950
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1951
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1952
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1953
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1954
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1955
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1956
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1957
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1958
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1959
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1960
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1961
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1962
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1963
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1964
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1965
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1966
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1967
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1968
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1969
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1970
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1971
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1972
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1973
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1974
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1975
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1976
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1977
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1978
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1979
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1980
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1981
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1982
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1983
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1984
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1985
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1986
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1987
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1988
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1989
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1990
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1991
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1992
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1993
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1994
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1995
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1996
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1997
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1998
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1999
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2000
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2001
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2002
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2003
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2004
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2005
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2006
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2007
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2008
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2009
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2010
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2011
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2012
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2013
+ \"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
2014
+ 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
2015
+ 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
2016
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2017
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2018
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2019
+ 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
2020
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":42}'
2021
+ recorded_at: Sat, 17 Oct 2020 04:39:43 GMT
2022
+ - request:
2023
+ method: post
2024
+ uri: https://steemd.minnowsupportproject.org/
2025
+ body:
2026
+ encoding: UTF-8
2027
+ string: '{"jsonrpc":"2.0","id":43,"method":"jsonrpc.get_methods","params":{}}'
2028
+ headers:
2029
+ Content-Type:
2030
+ - application/json; charset=utf-8
2031
+ User-Agent:
2032
+ - steem-ruby/0.9.4
2033
+ Accept-Encoding:
2034
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2035
+ Accept:
2036
+ - "*/*"
2037
+ Host:
2038
+ - api.steemitdev.com
2039
+ Content-Length:
2040
+ - '93'
2041
+ response:
2042
+ status:
2043
+ code: 502
2044
+ message: Bad Gateway
2045
+ headers:
2046
+ Server:
2047
+ - nginx/1.17.1
2048
+ Date:
2049
+ - Sat, 17 Oct 2020 04:39:44 GMT
2050
+ Content-Type:
2051
+ - text/html
2052
+ Content-Length:
2053
+ - '157'
2054
+ Connection:
2055
+ - keep-alive
2056
+ body:
2057
+ encoding: UTF-8
2058
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
2059
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
2060
+ recorded_at: Sat, 17 Oct 2020 04:39:44 GMT
2061
+ - request:
2062
+ method: post
2063
+ uri: https://api.steemit.com/
2064
+ body:
2065
+ encoding: UTF-8
2066
+ string: '{"jsonrpc":"2.0","id":44,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2067
+ headers:
2068
+ Content-Type:
2069
+ - application/json; charset=utf-8
2070
+ User-Agent:
2071
+ - steem-ruby/0.9.4
2072
+ Accept-Encoding:
2073
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2074
+ Accept:
2075
+ - "*/*"
2076
+ Host:
2077
+ - api.steemitdev.com
2078
+ Content-Length:
2079
+ - '68'
2080
+ response:
2081
+ status:
2082
+ code: 200
2083
+ message: OK
2084
+ headers:
2085
+ Date:
2086
+ - Sat, 17 Oct 2020 04:39:44 GMT
2087
+ Content-Type:
2088
+ - application/json
2089
+ Transfer-Encoding:
2090
+ - chunked
2091
+ Connection:
2092
+ - keep-alive
2093
+ Server:
2094
+ - nginx
2095
+ X-Jussi-Cache-Hit:
2096
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
2097
+ X-Jussi-Request-Id:
2098
+ - '000657780045041881'
2099
+ X-Amzn-Trace-Id:
2100
+ - Root=1-5f8a7590-41ad4aa30e1b790b78f25c3d
2101
+ Access-Control-Allow-Origin:
2102
+ - "*"
2103
+ Access-Control-Allow-Methods:
2104
+ - GET, POST, OPTIONS
2105
+ Access-Control-Allow-Headers:
2106
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2107
+ Strict-Transport-Security:
2108
+ - max-age=31557600; includeSubDomains; preload
2109
+ Content-Security-Policy:
2110
+ - upgrade-insecure-requests
2111
+ body:
2112
+ encoding: ASCII-8BIT
2113
+ string: '{"id":44,"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\":
2114
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2115
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2116
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2117
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2118
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2119
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2120
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2121
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2122
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2123
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2124
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2125
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2126
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2127
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2128
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2129
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2130
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2131
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2132
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2133
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2134
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2135
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2136
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2137
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2138
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2139
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2140
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2141
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2142
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2143
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2144
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2145
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2146
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2147
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2148
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2149
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2150
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2151
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2152
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2153
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2154
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2155
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2156
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2157
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2158
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2159
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2160
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2161
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2162
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2163
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2164
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2165
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2166
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2167
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2168
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2169
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2170
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2171
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2172
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2173
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2174
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2175
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2176
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2177
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2178
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2179
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2180
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2181
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2182
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2183
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2184
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2185
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2186
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2187
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2188
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2189
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2190
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2191
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2192
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2193
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2194
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2195
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2196
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2197
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2198
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2199
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2200
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2201
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2202
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2203
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2204
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2205
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2206
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2207
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2208
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2209
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2210
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2211
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2212
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2213
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2214
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2215
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2216
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2217
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2218
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2219
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2220
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2221
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2222
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2223
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2224
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2225
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2226
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2227
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2228
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2229
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2230
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2231
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2232
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2233
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2234
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2235
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2236
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2237
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2238
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2239
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2240
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2241
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2242
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2243
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2244
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2245
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2246
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2247
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2248
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2249
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2250
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2251
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2252
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2253
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2254
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2255
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2256
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2257
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2258
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2259
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2260
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2261
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2262
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2263
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2264
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2265
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2266
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2267
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2268
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2269
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2270
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2271
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2272
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2273
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2274
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2275
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2276
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2277
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2278
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2279
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2280
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2281
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2282
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2283
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2284
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2285
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2286
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2287
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2288
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2289
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2290
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2291
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2292
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2293
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2294
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2295
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2296
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2297
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2298
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2299
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2300
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2301
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2302
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2303
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2304
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2305
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2306
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2307
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2308
+ \"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
2309
+ 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
2310
+ 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
2311
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2312
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2313
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2314
+ 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
2315
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
2316
+ recorded_at: Sat, 17 Oct 2020 04:39:44 GMT
2317
+ - request:
2318
+ method: post
2319
+ uri: https://steemd.minnowsupportproject.org/
2320
+ body:
2321
+ encoding: UTF-8
2322
+ string: '{"jsonrpc":"2.0","id":45,"method":"jsonrpc.get_methods","params":{}}'
2323
+ headers:
2324
+ Content-Type:
2325
+ - application/json; charset=utf-8
2326
+ User-Agent:
2327
+ - steem-ruby/0.9.4
2328
+ Accept-Encoding:
2329
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2330
+ Accept:
2331
+ - "*/*"
2332
+ Host:
2333
+ - api.steemitdev.com
2334
+ Content-Length:
2335
+ - '68'
2336
+ response:
2337
+ status:
2338
+ code: 502
2339
+ message: Bad Gateway
2340
+ headers:
2341
+ Server:
2342
+ - nginx/1.17.1
2343
+ Date:
2344
+ - Sat, 17 Oct 2020 04:56:22 GMT
2345
+ Content-Type:
2346
+ - text/html
2347
+ Content-Length:
2348
+ - '157'
2349
+ Connection:
2350
+ - keep-alive
2351
+ body:
2352
+ encoding: UTF-8
2353
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
2354
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
2355
+ recorded_at: Sat, 17 Oct 2020 04:56:22 GMT
2356
+ - request:
2357
+ method: post
2358
+ uri: https://api.steemit.com/
2359
+ body:
2360
+ encoding: UTF-8
2361
+ string: '{"jsonrpc":"2.0","id":46,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2362
+ headers:
2363
+ Content-Type:
2364
+ - application/json; charset=utf-8
2365
+ User-Agent:
2366
+ - steem-ruby/0.9.4
2367
+ Accept-Encoding:
2368
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2369
+ Accept:
2370
+ - "*/*"
2371
+ Host:
2372
+ - api.steemitdev.com
2373
+ Content-Length:
2374
+ - '68'
2375
+ response:
2376
+ status:
2377
+ code: 200
2378
+ message: OK
2379
+ headers:
2380
+ Date:
2381
+ - Sat, 17 Oct 2020 04:56:22 GMT
2382
+ Content-Type:
2383
+ - application/json
2384
+ Transfer-Encoding:
2385
+ - chunked
2386
+ Connection:
2387
+ - keep-alive
2388
+ Server:
2389
+ - nginx
2390
+ X-Jussi-Cache-Hit:
2391
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
2392
+ X-Jussi-Request-Id:
2393
+ - '000206517727864784'
2394
+ X-Amzn-Trace-Id:
2395
+ - Root=1-5f8a7976-7ed8e58f4faf9bcf23aee3f2
2396
+ Access-Control-Allow-Origin:
2397
+ - "*"
2398
+ Access-Control-Allow-Methods:
2399
+ - GET, POST, OPTIONS
2400
+ Access-Control-Allow-Headers:
2401
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2402
+ Strict-Transport-Security:
2403
+ - max-age=31557600; includeSubDomains; preload
2404
+ Content-Security-Policy:
2405
+ - upgrade-insecure-requests
2406
+ body:
2407
+ encoding: ASCII-8BIT
2408
+ string: '{"id":46,"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\":
2409
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2410
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2411
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2412
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2413
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2414
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2415
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2416
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2417
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2418
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2419
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2420
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2421
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2422
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2423
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2424
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2425
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2426
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2427
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2428
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2429
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2430
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2431
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2432
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2433
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2434
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2435
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2436
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2437
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2438
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2439
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2440
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2441
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2442
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2443
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2444
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2445
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2446
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2447
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2448
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2449
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2450
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2451
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2452
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2453
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2454
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2455
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2456
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2457
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2458
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2459
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2460
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2461
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2462
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2463
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2464
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2465
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2466
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2467
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2468
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2469
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2470
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2471
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2472
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2473
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2474
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2475
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2476
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2477
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2478
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2479
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2480
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2481
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2482
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2483
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2484
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2485
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2486
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2487
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2488
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2489
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2490
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2491
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2492
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2493
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2494
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2495
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2496
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2497
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2498
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2499
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2500
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2501
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2502
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2503
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2504
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2505
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2506
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2507
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2508
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2509
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2510
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2511
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2512
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2513
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2514
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2515
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2516
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2517
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2518
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2519
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2520
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2521
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2522
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2523
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2524
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2525
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2526
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2527
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2528
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2529
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2530
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2531
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2532
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2533
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2534
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2535
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2536
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2537
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2538
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2539
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2540
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2541
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2542
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2543
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2544
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2545
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2546
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2547
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2548
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2549
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2550
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2551
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2552
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2553
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2554
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2555
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2556
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2557
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2558
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2559
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2560
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2561
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2562
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2563
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2564
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2565
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2566
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2567
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2568
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2569
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2570
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2571
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2572
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2573
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2574
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2575
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2576
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2577
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2578
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2579
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2580
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2581
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2582
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2583
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2584
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2585
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2586
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2587
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2588
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2589
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2590
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2591
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2592
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2593
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2594
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2595
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2596
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2597
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2598
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2599
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2600
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2601
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2602
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2603
+ \"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
2604
+ 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
2605
+ 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
2606
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2607
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2608
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2609
+ 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
2610
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
2611
+ recorded_at: Sat, 17 Oct 2020 04:56:22 GMT
2612
+ - request:
2613
+ method: post
2614
+ uri: https://api.justyy.com/
2615
+ body:
2616
+ encoding: UTF-8
2617
+ string: '{"jsonrpc":"2.0","id":47,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2618
+ headers:
2619
+ Content-Type:
2620
+ - application/json; charset=utf-8
2621
+ User-Agent:
2622
+ - steem-ruby/0.9.4
2623
+ Accept-Encoding:
2624
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2625
+ Accept:
2626
+ - "*/*"
2627
+ Host:
2628
+ - api.steemitdev.com
2629
+ Content-Length:
2630
+ - '93'
2631
+ response:
2632
+ status:
2633
+ code: 200
2634
+ message: OK
2635
+ headers:
2636
+ Server:
2637
+ - nginx/1.14.0 (Ubuntu)
2638
+ Date:
2639
+ - Sat, 17 Oct 2020 04:56:23 GMT
2640
+ Content-Type:
2641
+ - application/json
2642
+ Content-Length:
2643
+ - '17993'
2644
+ Connection:
2645
+ - keep-alive
2646
+ X-Jussi-Request-Id:
2647
+ - '000087597218444094'
2648
+ X-Amzn-Trace-Id:
2649
+ - ''
2650
+ Access-Control-Allow-Origin:
2651
+ - "*"
2652
+ Access-Control-Allow-Methods:
2653
+ - GET, POST, OPTIONS
2654
+ Access-Control-Allow-Headers:
2655
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2656
+ Strict-Transport-Security:
2657
+ - max-age=31557600; includeSubDomains; preload
2658
+ Content-Security-Policy:
2659
+ - upgrade-insecure-requests
2660
+ body:
2661
+ encoding: UTF-8
2662
+ 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\":
2663
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2664
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2665
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2666
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2667
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2668
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2669
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2670
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2671
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2672
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2673
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2674
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2675
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2676
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2677
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2678
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2679
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2680
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2681
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2682
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2683
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2684
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2685
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2686
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2687
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2688
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2689
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2690
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2691
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2692
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2693
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2694
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2695
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2696
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2697
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2698
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2699
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2700
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2701
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2702
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2703
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2704
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2705
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2706
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2707
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2708
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2709
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2710
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2711
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2712
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2713
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2714
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2715
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2716
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2717
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2718
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2719
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2720
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2721
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2722
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2723
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2724
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2725
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2726
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2727
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2728
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2729
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2730
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2731
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2732
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2733
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2734
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2735
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2736
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2737
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2738
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2739
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2740
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2741
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2742
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2743
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2744
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2745
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2746
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2747
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2748
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2749
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2750
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2751
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2752
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2753
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2754
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2755
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2756
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2757
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2758
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2759
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2760
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2761
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2762
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2763
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2764
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2765
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2766
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2767
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2768
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2769
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2770
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2771
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2772
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2773
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2774
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2775
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2776
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2777
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2778
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2779
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2780
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2781
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2782
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2783
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2784
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2785
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2786
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2787
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2788
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2789
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2790
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2791
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2792
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2793
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2794
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2795
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2796
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2797
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2798
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2799
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2800
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2801
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2802
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2803
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2804
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2805
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2806
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2807
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2808
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2809
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2810
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2811
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2812
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2813
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2814
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2815
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2816
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2817
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2818
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2819
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2820
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2821
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2822
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2823
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2824
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2825
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2826
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2827
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2828
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2829
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2830
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2831
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2832
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2833
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2834
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2835
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2836
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2837
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2838
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2839
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2840
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2841
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2842
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2843
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2844
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2845
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2846
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2847
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2848
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2849
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2850
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2851
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2852
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2853
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2854
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2855
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2856
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2857
+ \"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
2858
+ 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
2859
+ 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
2860
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2861
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2862
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2863
+ 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
2864
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":47}'
2865
+ recorded_at: Sat, 17 Oct 2020 04:56:23 GMT
2866
+ - request:
2867
+ method: post
2868
+ uri: https://api.justyy.com/
2869
+ body:
2870
+ encoding: UTF-8
2871
+ string: '{"jsonrpc":"2.0","id":3,"method":"jsonrpc.get_methods","params":{}}'
2872
+ headers:
2873
+ Content-Type:
2874
+ - application/json; charset=utf-8
2875
+ User-Agent:
2876
+ - steem-ruby/0.9.4
2877
+ Accept-Encoding:
2878
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2879
+ Accept:
2880
+ - "*/*"
2881
+ Host:
2882
+ - api.steemit.com
2883
+ Content-Length:
2884
+ - '67'
2885
+ response:
2886
+ status:
2887
+ code: 200
2888
+ message: OK
2889
+ headers:
2890
+ Server:
2891
+ - nginx/1.14.0 (Ubuntu)
2892
+ Date:
2893
+ - Sat, 17 Oct 2020 05:02:50 GMT
2894
+ Content-Type:
2895
+ - application/json
2896
+ Content-Length:
2897
+ - '5671'
2898
+ Connection:
2899
+ - keep-alive
2900
+ X-Jussi-Request-Id:
2901
+ - '000063363156271514'
2902
+ X-Amzn-Trace-Id:
2903
+ - ''
2904
+ Access-Control-Allow-Origin:
2905
+ - "*"
2906
+ Access-Control-Allow-Methods:
2907
+ - GET, POST, OPTIONS
2908
+ Access-Control-Allow-Headers:
2909
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2910
+ Strict-Transport-Security:
2911
+ - max-age=31557600; includeSubDomains; preload
2912
+ Content-Security-Policy:
2913
+ - upgrade-insecure-requests
2914
+ body:
2915
+ encoding: UTF-8
2916
+ string: '{"jsonrpc":"2.0","result":["account_by_key_api.get_key_references","block_api.get_block","block_api.get_block_header","condenser_api.broadcast_block","condenser_api.broadcast_transaction","condenser_api.broadcast_transaction_synchronous","condenser_api.find_proposals","condenser_api.get_account_count","condenser_api.get_account_history","condenser_api.get_account_references","condenser_api.get_account_reputations","condenser_api.get_account_votes","condenser_api.get_accounts","condenser_api.get_active_votes","condenser_api.get_active_witnesses","condenser_api.get_block","condenser_api.get_block_header","condenser_api.get_blog","condenser_api.get_blog_authors","condenser_api.get_blog_entries","condenser_api.get_chain_properties","condenser_api.get_comment_discussions_by_payout","condenser_api.get_config","condenser_api.get_content","condenser_api.get_content_replies","condenser_api.get_conversion_requests","condenser_api.get_current_median_history_price","condenser_api.get_discussions_by_active","condenser_api.get_discussions_by_author_before_date","condenser_api.get_discussions_by_blog","condenser_api.get_discussions_by_cashout","condenser_api.get_discussions_by_children","condenser_api.get_discussions_by_comments","condenser_api.get_discussions_by_created","condenser_api.get_discussions_by_feed","condenser_api.get_discussions_by_hot","condenser_api.get_discussions_by_promoted","condenser_api.get_discussions_by_trending","condenser_api.get_discussions_by_votes","condenser_api.get_dynamic_global_properties","condenser_api.get_escrow","condenser_api.get_expiring_vesting_delegations","condenser_api.get_feed","condenser_api.get_feed_entries","condenser_api.get_feed_history","condenser_api.get_follow_count","condenser_api.get_followers","condenser_api.get_following","condenser_api.get_hardfork_version","condenser_api.get_key_references","condenser_api.get_market_history","condenser_api.get_market_history_buckets","condenser_api.get_next_scheduled_hardfork","condenser_api.get_open_orders","condenser_api.get_ops_in_block","condenser_api.get_order_book","condenser_api.get_owner_history","condenser_api.get_post_discussions_by_payout","condenser_api.get_potential_signatures","condenser_api.get_reblogged_by","condenser_api.get_recent_trades","condenser_api.get_recovery_request","condenser_api.get_replies_by_last_update","condenser_api.get_required_signatures","condenser_api.get_reward_fund","condenser_api.get_savings_withdraw_from","condenser_api.get_savings_withdraw_to","condenser_api.get_state","condenser_api.get_tags_used_by_author","condenser_api.get_ticker","condenser_api.get_trade_history","condenser_api.get_transaction","condenser_api.get_transaction_hex","condenser_api.get_trending_tags","condenser_api.get_version","condenser_api.get_vesting_delegations","condenser_api.get_volume","condenser_api.get_withdraw_routes","condenser_api.get_witness_by_account","condenser_api.get_witness_count","condenser_api.get_witness_schedule","condenser_api.get_witnesses","condenser_api.get_witnesses_by_vote","condenser_api.list_proposal_votes","condenser_api.list_proposals","condenser_api.lookup_account_names","condenser_api.lookup_accounts","condenser_api.lookup_witness_accounts","condenser_api.verify_account_authority","condenser_api.verify_authority","database_api.find_account_recovery_requests","database_api.find_accounts","database_api.find_change_recovery_account_requests","database_api.find_comments","database_api.find_decline_voting_rights_requests","database_api.find_escrows","database_api.find_limit_orders","database_api.find_owner_histories","database_api.find_proposals","database_api.find_savings_withdrawals","database_api.find_sbd_conversion_requests","database_api.find_vesting_delegation_expirations","database_api.find_vesting_delegations","database_api.find_votes","database_api.find_withdraw_vesting_routes","database_api.find_witnesses","database_api.get_active_witnesses","database_api.get_config","database_api.get_current_price_feed","database_api.get_dynamic_global_properties","database_api.get_feed_history","database_api.get_hardfork_properties","database_api.get_order_book","database_api.get_potential_signatures","database_api.get_required_signatures","database_api.get_reward_funds","database_api.get_transaction_hex","database_api.get_version","database_api.get_witness_schedule","database_api.list_account_recovery_requests","database_api.list_accounts","database_api.list_change_recovery_account_requests","database_api.list_comments","database_api.list_decline_voting_rights_requests","database_api.list_escrows","database_api.list_limit_orders","database_api.list_owner_histories","database_api.list_proposal_votes","database_api.list_proposals","database_api.list_savings_withdrawals","database_api.list_sbd_conversion_requests","database_api.list_vesting_delegation_expirations","database_api.list_vesting_delegations","database_api.list_votes","database_api.list_withdraw_vesting_routes","database_api.list_witness_votes","database_api.list_witnesses","database_api.verify_account_authority","database_api.verify_authority","database_api.verify_signatures","jsonrpc.get_methods","jsonrpc.get_signature","market_history_api.get_market_history","market_history_api.get_market_history_buckets","market_history_api.get_order_book","market_history_api.get_recent_trades","market_history_api.get_ticker","market_history_api.get_trade_history","market_history_api.get_volume","network_broadcast_api.broadcast_block","network_broadcast_api.broadcast_transaction","rc_api.find_rc_accounts","rc_api.get_resource_params","rc_api.get_resource_pool","reputation_api.get_account_reputations"],"id":3}'
2917
+ recorded_at: Sat, 17 Oct 2020 05:02:50 GMT
2918
+ - request:
2919
+ method: post
2920
+ uri: https://api.justyy.com/
2921
+ body:
2922
+ encoding: UTF-8
2923
+ string: '{"jsonrpc":"2.0","id":4,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2924
+ headers:
2925
+ Content-Type:
2926
+ - application/json; charset=utf-8
2927
+ User-Agent:
2928
+ - steem-ruby/0.9.4
2929
+ Accept-Encoding:
2930
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2931
+ Accept:
2932
+ - "*/*"
2933
+ Host:
2934
+ - api.steemit.com
2935
+ Content-Length:
2936
+ - '67'
2937
+ response:
2938
+ status:
2939
+ code: 200
2940
+ message: OK
2941
+ headers:
2942
+ Server:
2943
+ - nginx/1.14.0 (Ubuntu)
2944
+ Date:
2945
+ - Sat, 17 Oct 2020 05:02:51 GMT
2946
+ Content-Type:
2947
+ - application/json
2948
+ Content-Length:
2949
+ - '17992'
2950
+ Connection:
2951
+ - keep-alive
2952
+ X-Jussi-Request-Id:
2953
+ - '000596391248579054'
2954
+ X-Amzn-Trace-Id:
2955
+ - ''
2956
+ Access-Control-Allow-Origin:
2957
+ - "*"
2958
+ Access-Control-Allow-Methods:
2959
+ - GET, POST, OPTIONS
2960
+ Access-Control-Allow-Headers:
2961
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2962
+ Strict-Transport-Security:
2963
+ - max-age=31557600; includeSubDomains; preload
2964
+ Content-Security-Policy:
2965
+ - upgrade-insecure-requests
2966
+ body:
2967
+ encoding: UTF-8
2968
+ 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\":
2969
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2970
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2971
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2972
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2973
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2974
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2975
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2976
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2977
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2978
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2979
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2980
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2981
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2982
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2983
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2984
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2985
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2986
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2987
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2988
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2989
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2990
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2991
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2992
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2993
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2994
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2995
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2996
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2997
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2998
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2999
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
3000
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
3001
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
3002
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
3003
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
3004
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
3005
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
3006
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
3007
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
3008
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
3009
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
3010
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
3011
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
3012
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
3013
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
3014
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
3015
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
3016
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
3017
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
3018
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
3019
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
3020
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
3021
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
3022
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
3023
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
3024
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
3025
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
3026
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
3027
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
3028
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
3029
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
3030
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
3031
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
3032
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
3033
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
3034
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3035
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
3036
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
3037
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
3038
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
3039
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
3040
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
3041
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
3042
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
3043
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3044
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
3045
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
3046
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
3047
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
3048
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
3049
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
3050
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3051
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
3052
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
3053
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
3054
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
3055
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
3056
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
3057
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3058
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
3059
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
3060
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
3061
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
3062
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
3063
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
3064
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
3065
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
3066
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
3067
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3068
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3069
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3070
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
3071
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
3072
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
3073
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
3074
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
3075
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
3076
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
3077
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
3078
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
3079
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
3080
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
3081
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
3082
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
3083
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
3084
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
3085
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
3086
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
3087
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
3088
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
3089
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
3090
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
3091
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
3092
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
3093
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3094
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
3095
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
3096
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
3097
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
3098
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
3099
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
3100
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
3101
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
3102
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
3103
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
3104
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3105
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
3106
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
3107
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3108
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
3109
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
3110
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
3111
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
3112
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
3113
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
3114
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
3115
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
3116
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
3117
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
3118
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
3119
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
3120
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
3121
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
3122
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
3123
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
3124
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
3125
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
3126
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3127
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
3128
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
3129
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
3130
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
3131
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
3132
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
3133
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
3134
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
3135
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
3136
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
3137
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
3138
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
3139
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
3140
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
3141
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
3142
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
3143
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
3144
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
3145
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
3146
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
3147
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
3148
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
3149
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
3150
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
3151
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3152
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
3153
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3154
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
3155
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
3156
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
3157
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
3158
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
3159
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
3160
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
3161
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
3162
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3163
+ \"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
3164
+ 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
3165
+ 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
3166
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
3167
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
3168
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
3169
+ 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
3170
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":4}'
3171
+ recorded_at: Sat, 17 Oct 2020 05:02:51 GMT
3172
+ - request:
3173
+ method: post
3174
+ uri: https://api.justyy.com/
3175
+ body:
3176
+ encoding: UTF-8
3177
+ string: '{"jsonrpc":"2.0","id":5,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
3178
+ headers:
3179
+ Content-Type:
3180
+ - application/json; charset=utf-8
3181
+ User-Agent:
3182
+ - steem-ruby/0.9.4
3183
+ Accept-Encoding:
3184
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3185
+ Accept:
3186
+ - "*/*"
3187
+ Host:
3188
+ - api.steemit.com
3189
+ Content-Length:
3190
+ - '92'
3191
+ response:
3192
+ status:
3193
+ code: 200
3194
+ message: OK
3195
+ headers:
3196
+ Server:
3197
+ - nginx/1.14.0 (Ubuntu)
3198
+ Date:
3199
+ - Sat, 17 Oct 2020 05:02:52 GMT
3200
+ Content-Type:
3201
+ - application/json
3202
+ Content-Length:
3203
+ - '17992'
3204
+ Connection:
3205
+ - keep-alive
3206
+ X-Jussi-Cache-Hit:
3207
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
3208
+ X-Jussi-Request-Id:
3209
+ - '001080088746407623'
3210
+ X-Amzn-Trace-Id:
3211
+ - ''
3212
+ Access-Control-Allow-Origin:
3213
+ - "*"
3214
+ Access-Control-Allow-Methods:
3215
+ - GET, POST, OPTIONS
3216
+ Access-Control-Allow-Headers:
3217
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3218
+ Strict-Transport-Security:
3219
+ - max-age=31557600; includeSubDomains; preload
3220
+ Content-Security-Policy:
3221
+ - upgrade-insecure-requests
3222
+ body:
3223
+ encoding: UTF-8
3224
+ string: '{"id":5,"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\":
3225
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
3226
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
3227
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
3228
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
3229
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
3230
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
3231
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
3232
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
3233
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
3234
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
3235
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
3236
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3237
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
3238
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
3239
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
3240
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
3241
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
3242
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3243
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
3244
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
3245
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
3246
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3247
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
3248
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
3249
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
3250
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
3251
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
3252
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
3253
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
3254
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
3255
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
3256
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
3257
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
3258
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
3259
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
3260
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
3261
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
3262
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
3263
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
3264
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
3265
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
3266
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
3267
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
3268
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
3269
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
3270
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
3271
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
3272
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
3273
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
3274
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
3275
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
3276
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
3277
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
3278
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
3279
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
3280
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
3281
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
3282
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
3283
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
3284
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
3285
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
3286
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
3287
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
3288
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
3289
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
3290
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3291
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
3292
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
3293
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
3294
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
3295
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
3296
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
3297
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
3298
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
3299
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3300
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
3301
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
3302
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
3303
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
3304
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
3305
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
3306
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3307
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
3308
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
3309
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
3310
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
3311
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
3312
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
3313
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3314
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
3315
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
3316
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
3317
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
3318
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
3319
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
3320
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
3321
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
3322
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
3323
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3324
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3325
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3326
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
3327
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
3328
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
3329
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
3330
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
3331
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
3332
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
3333
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
3334
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
3335
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
3336
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
3337
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
3338
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
3339
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
3340
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
3341
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
3342
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
3343
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
3344
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
3345
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
3346
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
3347
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
3348
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
3349
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3350
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
3351
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
3352
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
3353
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
3354
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
3355
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
3356
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
3357
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
3358
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
3359
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
3360
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3361
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
3362
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
3363
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3364
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
3365
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
3366
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
3367
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
3368
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
3369
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
3370
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
3371
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
3372
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
3373
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
3374
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
3375
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
3376
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
3377
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
3378
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
3379
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
3380
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
3381
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
3382
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3383
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
3384
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
3385
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
3386
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
3387
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
3388
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
3389
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
3390
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
3391
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
3392
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
3393
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
3394
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
3395
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
3396
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
3397
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
3398
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
3399
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
3400
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
3401
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
3402
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
3403
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
3404
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
3405
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
3406
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
3407
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3408
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
3409
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3410
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
3411
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
3412
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
3413
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
3414
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
3415
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
3416
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
3417
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
3418
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3419
+ \"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
3420
+ 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
3421
+ 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
3422
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
3423
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
3424
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
3425
+ 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
3426
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
3427
+ recorded_at: Sat, 17 Oct 2020 05:02:52 GMT
3428
+ recorded_with: VCR 6.0.0