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,3589 @@
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":76,"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
+ - api.steemit.com
20
+ Content-Length:
21
+ - '80'
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:07:53 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:07:54 GMT
42
+ - request:
43
+ method: post
44
+ uri: https://api.steemit.com/
45
+ body:
46
+ encoding: UTF-8
47
+ string: '{"jsonrpc":"2.0","id":77,"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
+ - api.steemit.com
59
+ Content-Length:
60
+ - '68'
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ Date:
67
+ - Sat, 17 Oct 2020 04:07:54 GMT
68
+ Content-Type:
69
+ - application/json
70
+ Transfer-Encoding:
71
+ - chunked
72
+ Connection:
73
+ - keep-alive
74
+ Server:
75
+ - nginx
76
+ X-Jussi-Request-Id:
77
+ - '000461777422927562'
78
+ X-Amzn-Trace-Id:
79
+ - Root=1-5f8a6e1a-6f4219f86bdffa7f2554394a
80
+ Access-Control-Allow-Origin:
81
+ - "*"
82
+ Access-Control-Allow-Methods:
83
+ - GET, POST, OPTIONS
84
+ Access-Control-Allow-Headers:
85
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
86
+ Strict-Transport-Security:
87
+ - max-age=31557600; includeSubDomains; preload
88
+ Content-Security-Policy:
89
+ - upgrade-insecure-requests
90
+ body:
91
+ encoding: ASCII-8BIT
92
+ 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\":
93
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
94
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
95
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
96
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
97
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
98
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
99
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
100
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
101
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
102
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
103
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
104
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
105
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
106
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
107
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
108
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
109
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
110
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
111
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
112
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
113
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
114
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
115
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
116
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
117
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
118
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
119
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
120
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
121
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
122
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
123
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
124
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
125
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
126
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
127
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
128
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
129
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
130
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
131
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
132
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
133
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
134
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
135
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
136
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
137
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
138
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
139
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
140
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
141
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
142
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
143
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
144
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
145
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
146
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
147
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
148
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
149
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
150
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
151
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
152
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
153
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
154
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
155
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
156
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
157
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
158
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
159
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
160
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
161
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
162
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
163
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
164
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
165
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
166
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
167
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
168
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
169
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
170
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
171
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
172
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
173
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
174
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
175
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
176
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
177
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
178
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
179
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
180
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
181
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
182
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
183
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
184
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
185
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
186
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
187
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
188
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
189
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
190
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
191
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
192
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
193
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
194
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
195
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
196
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
197
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
198
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
199
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
200
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
201
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
202
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
203
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
204
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
205
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
206
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
207
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
208
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
209
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
210
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
211
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
212
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
213
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
214
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
215
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
216
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
217
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
218
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
219
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
220
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
221
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
222
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
223
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
224
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
225
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
226
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
227
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
228
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
229
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
230
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
231
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
232
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
233
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
234
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
235
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
236
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
237
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
238
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
239
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
240
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
241
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
242
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
243
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
244
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
245
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
246
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
247
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
248
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
249
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
250
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
251
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
252
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
253
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
254
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
255
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
256
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
257
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
258
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
259
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
260
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
261
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
262
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
263
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
264
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
265
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
266
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
267
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
268
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
269
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
270
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
271
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
272
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
273
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
274
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
275
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
276
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
277
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
278
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
279
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
280
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
281
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
282
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
283
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
284
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
285
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
286
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
287
+ \"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
288
+ 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
289
+ 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
290
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
291
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
292
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
293
+ 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
294
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":77}'
295
+ recorded_at: Sat, 17 Oct 2020 04:07:54 GMT
296
+ - request:
297
+ method: post
298
+ uri: https://api.steemit.com/
299
+ body:
300
+ encoding: UTF-8
301
+ string: '{"jsonrpc":"2.0","id":78,"method":"condenser_api.get_block","params":[424377]}'
302
+ headers:
303
+ Content-Type:
304
+ - application/json; charset=utf-8
305
+ User-Agent:
306
+ - steem-ruby/0.9.4
307
+ Accept-Encoding:
308
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
309
+ Accept:
310
+ - "*/*"
311
+ Host:
312
+ - api.steemit.com
313
+ Content-Length:
314
+ - '93'
315
+ response:
316
+ status:
317
+ code: 200
318
+ message: OK
319
+ headers:
320
+ Date:
321
+ - Sat, 17 Oct 2020 04:07:55 GMT
322
+ Content-Type:
323
+ - application/json
324
+ Content-Length:
325
+ - '551'
326
+ Connection:
327
+ - keep-alive
328
+ Server:
329
+ - nginx
330
+ X-Jussi-Request-Id:
331
+ - '000053183745561217'
332
+ X-Amzn-Trace-Id:
333
+ - Root=1-5f8a6e1b-2200f993019acc0718c01203
334
+ Access-Control-Allow-Origin:
335
+ - "*"
336
+ Access-Control-Allow-Methods:
337
+ - GET, POST, OPTIONS
338
+ Access-Control-Allow-Headers:
339
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
340
+ Strict-Transport-Security:
341
+ - max-age=31557600; includeSubDomains; preload
342
+ Content-Security-Policy:
343
+ - upgrade-insecure-requests
344
+ body:
345
+ encoding: UTF-8
346
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":78}'
347
+ recorded_at: Sat, 17 Oct 2020 04:07:55 GMT
348
+ - request:
349
+ method: post
350
+ uri: https://steem.bts.tw/
351
+ body:
352
+ encoding: UTF-8
353
+ string: '{"jsonrpc":"2.0","id":43,"method":"jsonrpc.get_methods","params":{}}'
354
+ headers:
355
+ Content-Type:
356
+ - application/json; charset=utf-8
357
+ User-Agent:
358
+ - steem-ruby/0.9.4
359
+ Accept-Encoding:
360
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
361
+ Accept:
362
+ - "*/*"
363
+ Host:
364
+ - api.steemit.com
365
+ Content-Length:
366
+ - '92'
367
+ response:
368
+ status:
369
+ code: 403
370
+ message: Forbidden
371
+ headers:
372
+ Server:
373
+ - cloudflare
374
+ Date:
375
+ - Sat, 17 Oct 2020 04:09:05 GMT
376
+ Content-Type:
377
+ - text/html
378
+ Content-Length:
379
+ - '151'
380
+ Connection:
381
+ - keep-alive
382
+ Cf-Ray:
383
+ - 5e3729847e7d6da6-SJC
384
+ body:
385
+ encoding: UTF-8
386
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
387
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
388
+ recorded_at: Sat, 17 Oct 2020 04:09:06 GMT
389
+ - request:
390
+ method: post
391
+ uri: https://api.steemit.com/
392
+ body:
393
+ encoding: UTF-8
394
+ string: '{"jsonrpc":"2.0","id":44,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
395
+ headers:
396
+ Content-Type:
397
+ - application/json; charset=utf-8
398
+ User-Agent:
399
+ - steem-ruby/0.9.4
400
+ Accept-Encoding:
401
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
402
+ Accept:
403
+ - "*/*"
404
+ Host:
405
+ - api.steemit.com
406
+ Content-Length:
407
+ - '68'
408
+ response:
409
+ status:
410
+ code: 200
411
+ message: OK
412
+ headers:
413
+ Date:
414
+ - Sat, 17 Oct 2020 04:09:06 GMT
415
+ Content-Type:
416
+ - application/json
417
+ Transfer-Encoding:
418
+ - chunked
419
+ Connection:
420
+ - keep-alive
421
+ Server:
422
+ - nginx
423
+ X-Jussi-Cache-Hit:
424
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
425
+ X-Jussi-Request-Id:
426
+ - '001022030746192646'
427
+ X-Amzn-Trace-Id:
428
+ - Root=1-5f8a6e62-72718c4221b7a09608eddf1d
429
+ Access-Control-Allow-Origin:
430
+ - "*"
431
+ Access-Control-Allow-Methods:
432
+ - GET, POST, OPTIONS
433
+ Access-Control-Allow-Headers:
434
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
435
+ Strict-Transport-Security:
436
+ - max-age=31557600; includeSubDomains; preload
437
+ Content-Security-Policy:
438
+ - upgrade-insecure-requests
439
+ body:
440
+ encoding: ASCII-8BIT
441
+ 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\":
442
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
443
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
444
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
445
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
446
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
447
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
448
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
449
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
450
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
451
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
452
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
453
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
454
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
455
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
456
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
457
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
458
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
459
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
460
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
461
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
462
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
463
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
464
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
465
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
466
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
467
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
468
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
469
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
470
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
471
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
472
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
473
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
474
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
475
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
476
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
477
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
478
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
479
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
480
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
481
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
482
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
483
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
484
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
485
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
486
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
487
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
488
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
489
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
490
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
491
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
492
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
493
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
494
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
495
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
496
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
497
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
498
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
499
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
500
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
501
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
502
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
503
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
504
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
505
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
506
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
507
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
508
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
509
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
510
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
511
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
512
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
513
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
514
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
515
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
516
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
517
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
518
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
519
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
520
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
521
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
522
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
523
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
524
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
525
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
526
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
527
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
528
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
529
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
530
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
531
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
532
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
533
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
534
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
535
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
536
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
537
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
538
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
539
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
540
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
541
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
542
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
543
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
544
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
545
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
546
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
547
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
548
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
549
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
550
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
551
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
552
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
553
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
554
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
555
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
556
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
557
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
558
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
559
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
560
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
561
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
562
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
563
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
564
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
565
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
566
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
567
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
568
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
569
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
570
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
571
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
572
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
573
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
574
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
575
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
576
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
577
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
578
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
579
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
580
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
581
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
582
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
583
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
584
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
585
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
586
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
587
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
588
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
589
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
590
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
591
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
592
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
593
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
594
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
595
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
596
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
597
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
598
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
599
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
600
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
601
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
602
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
603
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
604
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
605
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
606
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
607
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
608
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
609
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
610
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
611
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
612
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
613
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
614
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
615
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
616
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
617
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
618
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
619
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
620
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
621
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
622
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
623
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
624
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
625
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
626
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
627
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
628
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
629
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
630
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
631
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
632
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
633
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
634
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
635
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
636
+ \"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
637
+ 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
638
+ 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
639
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
640
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
641
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
642
+ 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
643
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
644
+ recorded_at: Sat, 17 Oct 2020 04:09:06 GMT
645
+ - request:
646
+ method: post
647
+ uri: https://api.steemit.com/
648
+ body:
649
+ encoding: UTF-8
650
+ string: '{"jsonrpc":"2.0","id":45,"method":"condenser_api.get_block","params":[424377]}'
651
+ headers:
652
+ Content-Type:
653
+ - application/json; charset=utf-8
654
+ User-Agent:
655
+ - steem-ruby/0.9.4
656
+ Accept-Encoding:
657
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
658
+ Accept:
659
+ - "*/*"
660
+ Host:
661
+ - api.steemit.com
662
+ Content-Length:
663
+ - '93'
664
+ response:
665
+ status:
666
+ code: 200
667
+ message: OK
668
+ headers:
669
+ Date:
670
+ - Sat, 17 Oct 2020 04:09:06 GMT
671
+ Content-Type:
672
+ - application/json
673
+ Content-Length:
674
+ - '551'
675
+ Connection:
676
+ - keep-alive
677
+ Server:
678
+ - nginx
679
+ X-Jussi-Request-Id:
680
+ - '001057237284733241'
681
+ X-Amzn-Trace-Id:
682
+ - Root=1-5f8a6e62-1b1d25791dd4d2031127ff7f
683
+ Access-Control-Allow-Origin:
684
+ - "*"
685
+ Access-Control-Allow-Methods:
686
+ - GET, POST, OPTIONS
687
+ Access-Control-Allow-Headers:
688
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
689
+ Strict-Transport-Security:
690
+ - max-age=31557600; includeSubDomains; preload
691
+ Content-Security-Policy:
692
+ - upgrade-insecure-requests
693
+ body:
694
+ encoding: UTF-8
695
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":45}'
696
+ recorded_at: Sat, 17 Oct 2020 04:09:06 GMT
697
+ - request:
698
+ method: post
699
+ uri: https://api.steemit.com/
700
+ body:
701
+ encoding: UTF-8
702
+ string: '{"jsonrpc":"2.0","id":70,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
703
+ headers:
704
+ Content-Type:
705
+ - application/json; charset=utf-8
706
+ User-Agent:
707
+ - steem-ruby/0.9.4
708
+ Accept-Encoding:
709
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
710
+ Accept:
711
+ - "*/*"
712
+ Host:
713
+ - api.steemit.com
714
+ Content-Length:
715
+ - '98'
716
+ response:
717
+ status:
718
+ code: 200
719
+ message: OK
720
+ headers:
721
+ Date:
722
+ - Sat, 17 Oct 2020 04:13:32 GMT
723
+ Content-Type:
724
+ - application/json
725
+ Transfer-Encoding:
726
+ - chunked
727
+ Connection:
728
+ - keep-alive
729
+ Server:
730
+ - nginx
731
+ X-Jussi-Cache-Hit:
732
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
733
+ X-Jussi-Request-Id:
734
+ - '000885401790777855'
735
+ X-Amzn-Trace-Id:
736
+ - Root=1-5f8a6f6c-17f1b83b519dec6623be64cd
737
+ Access-Control-Allow-Origin:
738
+ - "*"
739
+ Access-Control-Allow-Methods:
740
+ - GET, POST, OPTIONS
741
+ Access-Control-Allow-Headers:
742
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
743
+ Strict-Transport-Security:
744
+ - max-age=31557600; includeSubDomains; preload
745
+ Content-Security-Policy:
746
+ - upgrade-insecure-requests
747
+ body:
748
+ encoding: ASCII-8BIT
749
+ string: '{"id":70,"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\":
750
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
751
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
752
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
753
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
754
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
755
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
756
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
757
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
758
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
759
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
760
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
761
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
762
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
763
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
764
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
765
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
766
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
767
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
768
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
769
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
770
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
771
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
772
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
773
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
774
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
775
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
776
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
777
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
778
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
779
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
780
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
781
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
782
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
783
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
784
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
785
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
786
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
787
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
788
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
789
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
790
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
791
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
792
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
793
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
794
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
795
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
796
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
797
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
798
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
799
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
800
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
801
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
802
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
803
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
804
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
805
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
806
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
807
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
808
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
809
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
810
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
811
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
812
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
813
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
814
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
815
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
816
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
817
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
818
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
819
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
820
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
821
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
822
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
823
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
824
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
825
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
826
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
827
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
828
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
829
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
830
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
831
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
832
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
833
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
834
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
835
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
836
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
837
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
838
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
839
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
840
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
841
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
842
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
843
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
844
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
845
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
846
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
847
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
848
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
849
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
850
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
851
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
852
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
853
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
854
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
855
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
856
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
857
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
858
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
859
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
860
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
861
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
862
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
863
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
864
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
865
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
866
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
867
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
868
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
869
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
870
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
871
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
872
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
873
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
874
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
875
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
876
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
877
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
878
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
879
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
880
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
881
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
882
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
883
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
884
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
885
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
886
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
887
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
888
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
889
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
890
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
891
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
892
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
893
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
894
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
895
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
896
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
897
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
898
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
899
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
900
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
901
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
902
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
903
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
904
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
905
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
906
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
907
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
908
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
909
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
910
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
911
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
912
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
913
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
914
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
915
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
916
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
917
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
918
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
919
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
920
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
921
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
922
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
923
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
924
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
925
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
926
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
927
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
928
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
929
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
930
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
931
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
932
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
933
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
934
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
935
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
936
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
937
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
938
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
939
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
940
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
941
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
942
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
943
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
944
+ \"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
945
+ 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
946
+ 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
947
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
948
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
949
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
950
+ 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
951
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
952
+ recorded_at: Sat, 17 Oct 2020 04:13:32 GMT
953
+ - request:
954
+ method: post
955
+ uri: https://api.steemit.com/
956
+ body:
957
+ encoding: UTF-8
958
+ string: '{"jsonrpc":"2.0","id":71,"method":"condenser_api.get_block","params":[424377]}'
959
+ headers:
960
+ Content-Type:
961
+ - application/json; charset=utf-8
962
+ User-Agent:
963
+ - steem-ruby/0.9.4
964
+ Accept-Encoding:
965
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
966
+ Accept:
967
+ - "*/*"
968
+ Host:
969
+ - api.steemit.com
970
+ Content-Length:
971
+ - '93'
972
+ response:
973
+ status:
974
+ code: 200
975
+ message: OK
976
+ headers:
977
+ Date:
978
+ - Sat, 17 Oct 2020 04:13:33 GMT
979
+ Content-Type:
980
+ - application/json
981
+ Content-Length:
982
+ - '551'
983
+ Connection:
984
+ - keep-alive
985
+ Server:
986
+ - nginx
987
+ X-Jussi-Request-Id:
988
+ - '001119567222427810'
989
+ X-Amzn-Trace-Id:
990
+ - Root=1-5f8a6f6d-70aff97c5bd742c8572da3a8
991
+ Access-Control-Allow-Origin:
992
+ - "*"
993
+ Access-Control-Allow-Methods:
994
+ - GET, POST, OPTIONS
995
+ Access-Control-Allow-Headers:
996
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
997
+ Strict-Transport-Security:
998
+ - max-age=31557600; includeSubDomains; preload
999
+ Content-Security-Policy:
1000
+ - upgrade-insecure-requests
1001
+ body:
1002
+ encoding: UTF-8
1003
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":71}'
1004
+ recorded_at: Sat, 17 Oct 2020 04:13:33 GMT
1005
+ - request:
1006
+ method: post
1007
+ uri: https://api.steemit.com/
1008
+ body:
1009
+ encoding: UTF-8
1010
+ string: '{"jsonrpc":"2.0","id":114,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1011
+ headers:
1012
+ Content-Type:
1013
+ - application/json; charset=utf-8
1014
+ User-Agent:
1015
+ - steem-ruby/0.9.4
1016
+ Accept-Encoding:
1017
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1018
+ Accept:
1019
+ - "*/*"
1020
+ Host:
1021
+ - api.steemit.com
1022
+ Content-Length:
1023
+ - '83'
1024
+ response:
1025
+ status:
1026
+ code: 200
1027
+ message: OK
1028
+ headers:
1029
+ Date:
1030
+ - Sat, 17 Oct 2020 04:14:46 GMT
1031
+ Content-Type:
1032
+ - application/json
1033
+ Transfer-Encoding:
1034
+ - chunked
1035
+ Connection:
1036
+ - keep-alive
1037
+ Server:
1038
+ - nginx
1039
+ X-Jussi-Request-Id:
1040
+ - '000049443375976273'
1041
+ X-Amzn-Trace-Id:
1042
+ - Root=1-5f8a6fb6-6bafc87674fbbcab08b36262
1043
+ Access-Control-Allow-Origin:
1044
+ - "*"
1045
+ Access-Control-Allow-Methods:
1046
+ - GET, POST, OPTIONS
1047
+ Access-Control-Allow-Headers:
1048
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1049
+ Strict-Transport-Security:
1050
+ - max-age=31557600; includeSubDomains; preload
1051
+ Content-Security-Policy:
1052
+ - upgrade-insecure-requests
1053
+ body:
1054
+ encoding: ASCII-8BIT
1055
+ 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\":
1056
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1057
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1058
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1059
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1060
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1061
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1062
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1063
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1064
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1065
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1066
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1067
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1068
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1069
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1070
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1071
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1072
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1073
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1074
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1075
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1076
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1077
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1078
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1079
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1080
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1081
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1082
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1083
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1084
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1085
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1086
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1087
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1088
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1089
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1090
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1091
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1092
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1093
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1094
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1095
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1096
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1097
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1098
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1099
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1100
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1101
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1102
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1103
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1104
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1105
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1106
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1107
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1108
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1109
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1110
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1111
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1112
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1113
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1114
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1115
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1116
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1117
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1118
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1119
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1120
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1121
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1122
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1123
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1124
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1125
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1126
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1127
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1128
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1129
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1130
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1131
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1132
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1133
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1134
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1135
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1136
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1137
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1138
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1139
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1140
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1141
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1142
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1143
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1144
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1145
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1146
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1147
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1148
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1149
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1150
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1151
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1152
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1153
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1154
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1155
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1156
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1157
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1158
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1159
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1160
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1161
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1162
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1163
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1164
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1165
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1166
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1167
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1168
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1169
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1170
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1171
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1172
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1173
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1174
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1175
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1176
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1177
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1178
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1179
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1180
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1181
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1182
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1183
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1184
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1185
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1186
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1187
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1188
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1189
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1190
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1191
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1192
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1193
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1194
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1195
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1196
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1197
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1198
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1199
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1200
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1201
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1202
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1203
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1204
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1205
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1206
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1207
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1208
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1209
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1210
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1211
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1212
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1213
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1214
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1215
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1216
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1217
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1218
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1219
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1220
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1221
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1222
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1223
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1224
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1225
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1226
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1227
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1228
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1229
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1230
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1231
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1232
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1233
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1234
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1235
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1236
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1237
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1238
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1239
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1240
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1241
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1242
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1243
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1244
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1245
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1246
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1247
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1248
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1249
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1250
+ \"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
1251
+ 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
1252
+ 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
1253
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1254
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1255
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1256
+ 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
1257
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":114}'
1258
+ recorded_at: Sat, 17 Oct 2020 04:14:46 GMT
1259
+ - request:
1260
+ method: post
1261
+ uri: https://api.steemit.com/
1262
+ body:
1263
+ encoding: UTF-8
1264
+ string: '{"jsonrpc":"2.0","id":115,"method":"condenser_api.get_block","params":[424377]}'
1265
+ headers:
1266
+ Content-Type:
1267
+ - application/json; charset=utf-8
1268
+ User-Agent:
1269
+ - steem-ruby/0.9.4
1270
+ Accept-Encoding:
1271
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1272
+ Accept:
1273
+ - "*/*"
1274
+ Host:
1275
+ - api.steemit.com
1276
+ Content-Length:
1277
+ - '94'
1278
+ response:
1279
+ status:
1280
+ code: 200
1281
+ message: OK
1282
+ headers:
1283
+ Date:
1284
+ - Sat, 17 Oct 2020 04:14:46 GMT
1285
+ Content-Type:
1286
+ - application/json
1287
+ Content-Length:
1288
+ - '552'
1289
+ Connection:
1290
+ - keep-alive
1291
+ Server:
1292
+ - nginx
1293
+ X-Jussi-Request-Id:
1294
+ - '000386835453733858'
1295
+ X-Amzn-Trace-Id:
1296
+ - Root=1-5f8a6fb6-6d79b4a62a5c342c69833486
1297
+ Access-Control-Allow-Origin:
1298
+ - "*"
1299
+ Access-Control-Allow-Methods:
1300
+ - GET, POST, OPTIONS
1301
+ Access-Control-Allow-Headers:
1302
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1303
+ Strict-Transport-Security:
1304
+ - max-age=31557600; includeSubDomains; preload
1305
+ Content-Security-Policy:
1306
+ - upgrade-insecure-requests
1307
+ body:
1308
+ encoding: UTF-8
1309
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":115}'
1310
+ recorded_at: Sat, 17 Oct 2020 04:14:47 GMT
1311
+ - request:
1312
+ method: post
1313
+ uri: https://api.steemit.com/
1314
+ body:
1315
+ encoding: UTF-8
1316
+ string: '{"jsonrpc":"2.0","id":97,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1317
+ headers:
1318
+ Content-Type:
1319
+ - application/json; charset=utf-8
1320
+ User-Agent:
1321
+ - steem-ruby/0.9.4
1322
+ Accept-Encoding:
1323
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1324
+ Accept:
1325
+ - "*/*"
1326
+ Host:
1327
+ - api.steemit.com
1328
+ Content-Length:
1329
+ - '92'
1330
+ response:
1331
+ status:
1332
+ code: 200
1333
+ message: OK
1334
+ headers:
1335
+ Date:
1336
+ - Sat, 17 Oct 2020 04:19:06 GMT
1337
+ Content-Type:
1338
+ - application/json
1339
+ Transfer-Encoding:
1340
+ - chunked
1341
+ Connection:
1342
+ - keep-alive
1343
+ Server:
1344
+ - nginx
1345
+ X-Jussi-Cache-Hit:
1346
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
1347
+ X-Jussi-Request-Id:
1348
+ - '000878522504181544'
1349
+ X-Amzn-Trace-Id:
1350
+ - Root=1-5f8a70ba-53b8259d148286d01e8717d5
1351
+ Access-Control-Allow-Origin:
1352
+ - "*"
1353
+ Access-Control-Allow-Methods:
1354
+ - GET, POST, OPTIONS
1355
+ Access-Control-Allow-Headers:
1356
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1357
+ Strict-Transport-Security:
1358
+ - max-age=31557600; includeSubDomains; preload
1359
+ Content-Security-Policy:
1360
+ - upgrade-insecure-requests
1361
+ body:
1362
+ encoding: ASCII-8BIT
1363
+ string: '{"id":97,"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
1364
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1365
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1366
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1367
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1368
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1369
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1370
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1371
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1372
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1373
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1374
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1375
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1376
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1377
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1378
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1379
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1380
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1381
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1382
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1383
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1384
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1385
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1386
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1387
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1388
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1389
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1390
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1391
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1392
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1393
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1394
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1395
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1396
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1397
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1398
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1399
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1400
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1401
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1402
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1403
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1404
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1405
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1406
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1407
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1408
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1409
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1410
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1411
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1412
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1413
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1414
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1415
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1416
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1417
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1418
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1419
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1420
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1421
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1422
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1423
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1424
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1425
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1426
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1427
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1428
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1429
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1430
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1431
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1432
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1433
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1434
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1435
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1436
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1437
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1438
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1439
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1440
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1441
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1442
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1443
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1444
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1445
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1446
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1447
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1448
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1449
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1450
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1451
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1452
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1453
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1454
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1455
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1456
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1457
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1458
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1459
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1460
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1461
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1462
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1463
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1464
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1465
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1466
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1467
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1468
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1469
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1470
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1471
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1472
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1473
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1474
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1475
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1476
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1477
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1478
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1479
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1480
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1481
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1482
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1483
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1484
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1485
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1486
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1487
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1488
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1489
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1490
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1491
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1492
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1493
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1494
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1495
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1496
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1497
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1498
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1499
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1500
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1501
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1502
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1503
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1504
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1505
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1506
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1507
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1508
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1509
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1510
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1511
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1512
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1513
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1514
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1515
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1516
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1517
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1518
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1519
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1520
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1521
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1522
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1523
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1524
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1525
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1526
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1527
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1528
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1529
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1530
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1531
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1532
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1533
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1534
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1535
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1536
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1537
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1538
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1539
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1540
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1541
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1542
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1543
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1544
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1545
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1546
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1547
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1548
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1549
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1550
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1551
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1552
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1553
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1554
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1555
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1556
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1557
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1558
+ \"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
1559
+ 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
1560
+ 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
1561
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1562
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1563
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1564
+ 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
1565
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
1566
+ recorded_at: Sat, 17 Oct 2020 04:19:06 GMT
1567
+ - request:
1568
+ method: post
1569
+ uri: https://api.steemit.com/
1570
+ body:
1571
+ encoding: UTF-8
1572
+ string: '{"jsonrpc":"2.0","id":98,"method":"condenser_api.get_block","params":[424377]}'
1573
+ headers:
1574
+ Content-Type:
1575
+ - application/json; charset=utf-8
1576
+ User-Agent:
1577
+ - steem-ruby/0.9.4
1578
+ Accept-Encoding:
1579
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1580
+ Accept:
1581
+ - "*/*"
1582
+ Host:
1583
+ - api.steemit.com
1584
+ Content-Length:
1585
+ - '93'
1586
+ response:
1587
+ status:
1588
+ code: 200
1589
+ message: OK
1590
+ headers:
1591
+ Date:
1592
+ - Sat, 17 Oct 2020 04:19:06 GMT
1593
+ Content-Type:
1594
+ - application/json
1595
+ Content-Length:
1596
+ - '551'
1597
+ Connection:
1598
+ - keep-alive
1599
+ Server:
1600
+ - nginx
1601
+ X-Jussi-Request-Id:
1602
+ - '000001909067534906'
1603
+ X-Amzn-Trace-Id:
1604
+ - Root=1-5f8a70ba-5eb2ab1b642a646750af5f37
1605
+ Access-Control-Allow-Origin:
1606
+ - "*"
1607
+ Access-Control-Allow-Methods:
1608
+ - GET, POST, OPTIONS
1609
+ Access-Control-Allow-Headers:
1610
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1611
+ Strict-Transport-Security:
1612
+ - max-age=31557600; includeSubDomains; preload
1613
+ Content-Security-Policy:
1614
+ - upgrade-insecure-requests
1615
+ body:
1616
+ encoding: UTF-8
1617
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":98}'
1618
+ recorded_at: Sat, 17 Oct 2020 04:19:06 GMT
1619
+ - request:
1620
+ method: post
1621
+ uri: https://api.justyy.com/
1622
+ body:
1623
+ encoding: UTF-8
1624
+ string: '{"jsonrpc":"2.0","id":38,"method":"jsonrpc.get_methods","params":{}}'
1625
+ headers:
1626
+ Content-Type:
1627
+ - application/json; charset=utf-8
1628
+ User-Agent:
1629
+ - steem-ruby/0.9.4
1630
+ Accept-Encoding:
1631
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1632
+ Accept:
1633
+ - "*/*"
1634
+ Host:
1635
+ - api.steemitdev.com
1636
+ Content-Length:
1637
+ - '92'
1638
+ response:
1639
+ status:
1640
+ code: 200
1641
+ message: OK
1642
+ headers:
1643
+ Server:
1644
+ - nginx/1.14.0 (Ubuntu)
1645
+ Date:
1646
+ - Sat, 17 Oct 2020 04:22:26 GMT
1647
+ Content-Type:
1648
+ - application/json
1649
+ Content-Length:
1650
+ - '5672'
1651
+ Connection:
1652
+ - keep-alive
1653
+ X-Jussi-Request-Id:
1654
+ - '000191542658552007'
1655
+ X-Amzn-Trace-Id:
1656
+ - ''
1657
+ Access-Control-Allow-Origin:
1658
+ - "*"
1659
+ Access-Control-Allow-Methods:
1660
+ - GET, POST, OPTIONS
1661
+ Access-Control-Allow-Headers:
1662
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1663
+ Strict-Transport-Security:
1664
+ - max-age=31557600; includeSubDomains; preload
1665
+ Content-Security-Policy:
1666
+ - upgrade-insecure-requests
1667
+ body:
1668
+ encoding: UTF-8
1669
+ 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":38}'
1670
+ recorded_at: Sat, 17 Oct 2020 04:22:26 GMT
1671
+ - request:
1672
+ method: post
1673
+ uri: https://api.justyy.com/
1674
+ body:
1675
+ encoding: UTF-8
1676
+ string: '{"jsonrpc":"2.0","id":39,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1677
+ headers:
1678
+ Content-Type:
1679
+ - application/json; charset=utf-8
1680
+ User-Agent:
1681
+ - steem-ruby/0.9.4
1682
+ Accept-Encoding:
1683
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1684
+ Accept:
1685
+ - "*/*"
1686
+ Host:
1687
+ - api.steemitdev.com
1688
+ Content-Length:
1689
+ - '68'
1690
+ response:
1691
+ status:
1692
+ code: 200
1693
+ message: OK
1694
+ headers:
1695
+ Server:
1696
+ - nginx/1.14.0 (Ubuntu)
1697
+ Date:
1698
+ - Sat, 17 Oct 2020 04:22:27 GMT
1699
+ Content-Type:
1700
+ - application/json
1701
+ Content-Length:
1702
+ - '17993'
1703
+ Connection:
1704
+ - keep-alive
1705
+ X-Jussi-Request-Id:
1706
+ - '000207524140490578'
1707
+ X-Amzn-Trace-Id:
1708
+ - ''
1709
+ Access-Control-Allow-Origin:
1710
+ - "*"
1711
+ Access-Control-Allow-Methods:
1712
+ - GET, POST, OPTIONS
1713
+ Access-Control-Allow-Headers:
1714
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1715
+ Strict-Transport-Security:
1716
+ - max-age=31557600; includeSubDomains; preload
1717
+ Content-Security-Policy:
1718
+ - upgrade-insecure-requests
1719
+ body:
1720
+ encoding: UTF-8
1721
+ 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\":
1722
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1723
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1724
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1725
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1726
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1727
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1728
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1729
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1730
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1731
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1732
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1733
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1734
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1735
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1736
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1737
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1738
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1739
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1740
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1741
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1742
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1743
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1744
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1745
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1746
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1747
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1748
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1749
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1750
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1751
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1752
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1753
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1754
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1755
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1756
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1757
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1758
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1759
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1760
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1761
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1762
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1763
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1764
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1765
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1766
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1767
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1768
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1769
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1770
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1771
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1772
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1773
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1774
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1775
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1776
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1777
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1778
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1779
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1780
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1781
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1782
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1783
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1784
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1785
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1786
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1787
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1788
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1789
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1790
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1791
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1792
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1793
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1794
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1795
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1796
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1797
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1798
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1799
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1800
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1801
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1802
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1803
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1804
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1805
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1806
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1807
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1808
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1809
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1810
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1811
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1812
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1813
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1814
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1815
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1816
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1817
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1818
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1819
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1820
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1821
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1822
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1823
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1824
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1825
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1826
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1827
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1828
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1829
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1830
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1831
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1832
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1833
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1834
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1835
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1836
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1837
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1838
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1839
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1840
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1841
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1842
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1843
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1844
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1845
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1846
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1847
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1848
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1849
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1850
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1851
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1852
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1853
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1854
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1855
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1856
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1857
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1858
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1859
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1860
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1861
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1862
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1863
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1864
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1865
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1866
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1867
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1868
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1869
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1870
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1871
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1872
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1873
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1874
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1875
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1876
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1877
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1878
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1879
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1880
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1881
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1882
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1883
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1884
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1885
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1886
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1887
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1888
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1889
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1890
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1891
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1892
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1893
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1894
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1895
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1896
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1897
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1898
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1899
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1900
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1901
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1902
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1903
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1904
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1905
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1906
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1907
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1908
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1909
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1910
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1911
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1912
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1913
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1914
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1915
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1916
+ \"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
1917
+ 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
1918
+ 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
1919
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1920
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1921
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1922
+ 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
1923
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":39}'
1924
+ recorded_at: Sat, 17 Oct 2020 04:22:28 GMT
1925
+ - request:
1926
+ method: post
1927
+ uri: https://api.steemit.com/
1928
+ body:
1929
+ encoding: UTF-8
1930
+ string: '{"jsonrpc":"2.0","id":40,"method":"condenser_api.get_block","params":[424377]}'
1931
+ headers:
1932
+ Content-Type:
1933
+ - application/json; charset=utf-8
1934
+ User-Agent:
1935
+ - steem-ruby/0.9.4
1936
+ Accept-Encoding:
1937
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1938
+ Accept:
1939
+ - "*/*"
1940
+ Host:
1941
+ - api.steemitdev.com
1942
+ Content-Length:
1943
+ - '93'
1944
+ response:
1945
+ status:
1946
+ code: 200
1947
+ message: OK
1948
+ headers:
1949
+ Date:
1950
+ - Sat, 17 Oct 2020 04:22:28 GMT
1951
+ Content-Type:
1952
+ - application/json
1953
+ Content-Length:
1954
+ - '551'
1955
+ Connection:
1956
+ - keep-alive
1957
+ Server:
1958
+ - nginx
1959
+ X-Jussi-Request-Id:
1960
+ - '000177657845095661'
1961
+ X-Amzn-Trace-Id:
1962
+ - Root=1-5f8a7184-5baada332cf3461a0457c586
1963
+ Access-Control-Allow-Origin:
1964
+ - "*"
1965
+ Access-Control-Allow-Methods:
1966
+ - GET, POST, OPTIONS
1967
+ Access-Control-Allow-Headers:
1968
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1969
+ Strict-Transport-Security:
1970
+ - max-age=31557600; includeSubDomains; preload
1971
+ Content-Security-Policy:
1972
+ - upgrade-insecure-requests
1973
+ body:
1974
+ encoding: UTF-8
1975
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":40}'
1976
+ recorded_at: Sat, 17 Oct 2020 04:22:28 GMT
1977
+ - request:
1978
+ method: post
1979
+ uri: https://steemd.minnowsupportproject.org/
1980
+ body:
1981
+ encoding: UTF-8
1982
+ string: '{"jsonrpc":"2.0","id":72,"method":"jsonrpc.get_methods","params":{}}'
1983
+ headers:
1984
+ Content-Type:
1985
+ - application/json; charset=utf-8
1986
+ User-Agent:
1987
+ - steem-ruby/0.9.4
1988
+ Accept-Encoding:
1989
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1990
+ Accept:
1991
+ - "*/*"
1992
+ Host:
1993
+ - api.steemitdev.com
1994
+ Content-Length:
1995
+ - '75'
1996
+ response:
1997
+ status:
1998
+ code: 502
1999
+ message: Bad Gateway
2000
+ headers:
2001
+ Server:
2002
+ - nginx/1.17.1
2003
+ Date:
2004
+ - Sat, 17 Oct 2020 04:27:21 GMT
2005
+ Content-Type:
2006
+ - text/html
2007
+ Content-Length:
2008
+ - '157'
2009
+ Connection:
2010
+ - keep-alive
2011
+ body:
2012
+ encoding: UTF-8
2013
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
2014
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
2015
+ recorded_at: Sat, 17 Oct 2020 04:27:21 GMT
2016
+ - request:
2017
+ method: post
2018
+ uri: https://api.steemit.com/
2019
+ body:
2020
+ encoding: UTF-8
2021
+ string: '{"jsonrpc":"2.0","id":73,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2022
+ headers:
2023
+ Content-Type:
2024
+ - application/json; charset=utf-8
2025
+ User-Agent:
2026
+ - steem-ruby/0.9.4
2027
+ Accept-Encoding:
2028
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2029
+ Accept:
2030
+ - "*/*"
2031
+ Host:
2032
+ - api.steemitdev.com
2033
+ Content-Length:
2034
+ - '68'
2035
+ response:
2036
+ status:
2037
+ code: 200
2038
+ message: OK
2039
+ headers:
2040
+ Date:
2041
+ - Sat, 17 Oct 2020 04:27:22 GMT
2042
+ Content-Type:
2043
+ - application/json
2044
+ Transfer-Encoding:
2045
+ - chunked
2046
+ Connection:
2047
+ - keep-alive
2048
+ Server:
2049
+ - nginx
2050
+ X-Jussi-Request-Id:
2051
+ - '000586318157615997'
2052
+ X-Amzn-Trace-Id:
2053
+ - Root=1-5f8a72aa-41a5c720198862172f50c259
2054
+ Access-Control-Allow-Origin:
2055
+ - "*"
2056
+ Access-Control-Allow-Methods:
2057
+ - GET, POST, OPTIONS
2058
+ Access-Control-Allow-Headers:
2059
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2060
+ Strict-Transport-Security:
2061
+ - max-age=31557600; includeSubDomains; preload
2062
+ Content-Security-Policy:
2063
+ - upgrade-insecure-requests
2064
+ body:
2065
+ encoding: ASCII-8BIT
2066
+ 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\":
2067
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2068
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2069
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2070
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2071
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2072
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2073
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2074
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2075
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2076
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2077
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2078
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2079
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2080
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2081
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2082
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2083
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2084
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2085
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2086
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2087
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2088
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2089
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2090
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2091
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2092
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2093
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2094
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2095
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2096
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2097
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2098
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2099
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2100
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2101
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2102
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2103
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2104
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2105
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2106
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2107
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2108
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2109
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2110
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2111
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2112
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2113
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2114
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2115
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2116
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2117
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2118
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2119
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2120
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2121
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2122
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2123
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2124
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2125
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2126
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2127
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2128
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2129
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2130
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2131
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2132
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2133
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2134
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2135
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2136
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2137
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2138
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2139
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2140
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2141
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2142
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2143
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2144
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2145
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2146
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2147
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2148
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2149
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2150
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2151
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2152
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2153
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2154
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2155
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2156
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2157
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2158
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2159
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2160
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2161
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2162
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2163
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2164
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2165
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2166
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2167
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2168
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2169
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2170
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2171
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2172
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2173
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2174
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2175
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2176
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2177
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2178
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2179
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2180
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2181
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2182
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2183
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2184
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2185
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2186
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2187
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2188
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2189
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2190
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2191
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2192
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2193
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2194
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2195
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2196
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2197
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2198
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2199
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2200
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2201
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2202
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2203
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2204
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2205
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2206
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2207
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2208
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2209
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2210
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2211
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2212
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2213
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2214
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2215
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2216
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2217
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2218
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2219
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2220
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2221
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2222
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2223
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2224
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2225
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2226
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2227
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2228
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2229
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2230
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2231
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2232
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2233
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2234
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2235
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2236
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2237
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2238
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2239
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2240
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2241
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2242
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2243
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2244
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2245
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2246
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2247
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2248
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2249
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2250
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2251
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2252
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2253
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2254
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2255
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2256
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2257
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2258
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2259
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2260
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2261
+ \"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
2262
+ 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
2263
+ 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
2264
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2265
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2266
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2267
+ 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
2268
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":73}'
2269
+ recorded_at: Sat, 17 Oct 2020 04:27:22 GMT
2270
+ - request:
2271
+ method: post
2272
+ uri: https://api.steemit.com/
2273
+ body:
2274
+ encoding: UTF-8
2275
+ string: '{"jsonrpc":"2.0","id":74,"method":"condenser_api.get_block","params":[424377]}'
2276
+ headers:
2277
+ Content-Type:
2278
+ - application/json; charset=utf-8
2279
+ User-Agent:
2280
+ - steem-ruby/0.9.4
2281
+ Accept-Encoding:
2282
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2283
+ Accept:
2284
+ - "*/*"
2285
+ Host:
2286
+ - api.steemitdev.com
2287
+ Content-Length:
2288
+ - '93'
2289
+ response:
2290
+ status:
2291
+ code: 200
2292
+ message: OK
2293
+ headers:
2294
+ Date:
2295
+ - Sat, 17 Oct 2020 04:27:22 GMT
2296
+ Content-Type:
2297
+ - application/json
2298
+ Content-Length:
2299
+ - '551'
2300
+ Connection:
2301
+ - keep-alive
2302
+ Server:
2303
+ - nginx
2304
+ X-Jussi-Request-Id:
2305
+ - '000770838994094184'
2306
+ X-Amzn-Trace-Id:
2307
+ - Root=1-5f8a72aa-26a331dd2e94fde3254bafd8
2308
+ Access-Control-Allow-Origin:
2309
+ - "*"
2310
+ Access-Control-Allow-Methods:
2311
+ - GET, POST, OPTIONS
2312
+ Access-Control-Allow-Headers:
2313
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2314
+ Strict-Transport-Security:
2315
+ - max-age=31557600; includeSubDomains; preload
2316
+ Content-Security-Policy:
2317
+ - upgrade-insecure-requests
2318
+ body:
2319
+ encoding: UTF-8
2320
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":74}'
2321
+ recorded_at: Sat, 17 Oct 2020 04:27:22 GMT
2322
+ - request:
2323
+ method: post
2324
+ uri: https://api.justyy.com/
2325
+ body:
2326
+ encoding: UTF-8
2327
+ string: '{"jsonrpc":"2.0","id":24,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2328
+ headers:
2329
+ Content-Type:
2330
+ - application/json; charset=utf-8
2331
+ User-Agent:
2332
+ - steem-ruby/0.9.4
2333
+ Accept-Encoding:
2334
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2335
+ Accept:
2336
+ - "*/*"
2337
+ Host:
2338
+ - api.steemitdev.com
2339
+ Content-Length:
2340
+ - '92'
2341
+ response:
2342
+ status:
2343
+ code: 200
2344
+ message: OK
2345
+ headers:
2346
+ Server:
2347
+ - nginx/1.14.0 (Ubuntu)
2348
+ Date:
2349
+ - Sat, 17 Oct 2020 04:34:03 GMT
2350
+ Content-Type:
2351
+ - application/json
2352
+ Content-Length:
2353
+ - '17993'
2354
+ Connection:
2355
+ - keep-alive
2356
+ X-Jussi-Request-Id:
2357
+ - '001050219658457000'
2358
+ X-Amzn-Trace-Id:
2359
+ - ''
2360
+ Access-Control-Allow-Origin:
2361
+ - "*"
2362
+ Access-Control-Allow-Methods:
2363
+ - GET, POST, OPTIONS
2364
+ Access-Control-Allow-Headers:
2365
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2366
+ Strict-Transport-Security:
2367
+ - max-age=31557600; includeSubDomains; preload
2368
+ Content-Security-Policy:
2369
+ - upgrade-insecure-requests
2370
+ body:
2371
+ encoding: UTF-8
2372
+ 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\":
2373
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2374
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2375
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2376
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2377
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2378
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2379
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2380
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2381
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2382
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2383
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2384
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2385
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2386
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2387
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2388
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2389
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2390
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2391
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2392
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2393
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2394
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2395
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2396
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2397
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2398
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2399
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2400
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2401
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2402
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2403
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2404
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2405
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2406
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2407
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2408
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2409
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2410
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2411
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2412
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2413
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2414
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2415
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2416
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2417
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2418
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2419
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2420
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2421
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2422
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2423
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2424
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2425
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2426
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2427
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2428
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2429
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2430
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2431
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2432
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2433
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2434
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2435
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2436
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2437
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2438
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2439
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2440
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2441
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2442
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2443
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2444
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2445
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2446
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2447
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2448
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2449
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2450
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2451
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2452
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2453
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2454
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2455
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2456
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2457
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2458
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2459
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2460
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2461
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2462
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2463
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2464
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2465
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2466
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2467
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2468
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2469
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2470
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2471
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2472
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2473
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2474
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2475
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2476
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2477
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2478
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2479
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2480
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2481
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2482
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2483
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2484
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2485
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2486
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2487
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2488
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2489
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2490
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2491
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2492
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2493
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2494
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2495
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2496
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2497
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2498
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2499
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2500
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2501
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2502
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2503
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2504
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2505
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2506
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2507
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2508
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2509
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2510
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2511
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2512
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2513
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2514
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2515
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2516
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2517
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2518
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2519
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2520
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2521
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2522
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2523
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2524
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2525
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2526
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2527
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2528
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2529
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2530
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2531
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2532
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2533
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2534
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2535
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2536
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2537
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2538
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2539
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2540
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2541
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2542
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2543
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2544
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2545
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2546
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2547
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2548
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2549
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2550
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2551
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2552
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2553
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2554
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2555
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2556
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2557
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2558
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2559
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2560
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2561
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2562
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2563
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2564
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2565
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2566
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2567
+ \"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
2568
+ 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
2569
+ 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
2570
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2571
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2572
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2573
+ 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
2574
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":24}'
2575
+ recorded_at: Sat, 17 Oct 2020 04:34:03 GMT
2576
+ - request:
2577
+ method: post
2578
+ uri: https://api.steemit.com/
2579
+ body:
2580
+ encoding: UTF-8
2581
+ string: '{"jsonrpc":"2.0","id":25,"method":"condenser_api.get_block","params":[424377]}'
2582
+ headers:
2583
+ Content-Type:
2584
+ - application/json; charset=utf-8
2585
+ User-Agent:
2586
+ - steem-ruby/0.9.4
2587
+ Accept-Encoding:
2588
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2589
+ Accept:
2590
+ - "*/*"
2591
+ Host:
2592
+ - api.steemitdev.com
2593
+ Content-Length:
2594
+ - '93'
2595
+ response:
2596
+ status:
2597
+ code: 200
2598
+ message: OK
2599
+ headers:
2600
+ Date:
2601
+ - Sat, 17 Oct 2020 04:34:04 GMT
2602
+ Content-Type:
2603
+ - application/json
2604
+ Content-Length:
2605
+ - '551'
2606
+ Connection:
2607
+ - keep-alive
2608
+ Server:
2609
+ - nginx
2610
+ X-Jussi-Request-Id:
2611
+ - '000088679375211876'
2612
+ X-Amzn-Trace-Id:
2613
+ - Root=1-5f8a743c-3e0b31580d072df84d1ff558
2614
+ Access-Control-Allow-Origin:
2615
+ - "*"
2616
+ Access-Control-Allow-Methods:
2617
+ - GET, POST, OPTIONS
2618
+ Access-Control-Allow-Headers:
2619
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2620
+ Strict-Transport-Security:
2621
+ - max-age=31557600; includeSubDomains; preload
2622
+ Content-Security-Policy:
2623
+ - upgrade-insecure-requests
2624
+ body:
2625
+ encoding: UTF-8
2626
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":25}'
2627
+ recorded_at: Sat, 17 Oct 2020 04:34:04 GMT
2628
+ - request:
2629
+ method: post
2630
+ uri: https://api.justyy.com/
2631
+ body:
2632
+ encoding: UTF-8
2633
+ string: '{"jsonrpc":"2.0","id":87,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2634
+ headers:
2635
+ Content-Type:
2636
+ - application/json; charset=utf-8
2637
+ User-Agent:
2638
+ - steem-ruby/0.9.4
2639
+ Accept-Encoding:
2640
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2641
+ Accept:
2642
+ - "*/*"
2643
+ Host:
2644
+ - api.steemitdev.com
2645
+ Content-Length:
2646
+ - '92'
2647
+ response:
2648
+ status:
2649
+ code: 200
2650
+ message: OK
2651
+ headers:
2652
+ Server:
2653
+ - nginx/1.14.0 (Ubuntu)
2654
+ Date:
2655
+ - Sat, 17 Oct 2020 04:40:06 GMT
2656
+ Content-Type:
2657
+ - application/json
2658
+ Content-Length:
2659
+ - '17993'
2660
+ Connection:
2661
+ - keep-alive
2662
+ X-Jussi-Cache-Hit:
2663
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
2664
+ X-Jussi-Request-Id:
2665
+ - '000777932534572961'
2666
+ X-Amzn-Trace-Id:
2667
+ - ''
2668
+ Access-Control-Allow-Origin:
2669
+ - "*"
2670
+ Access-Control-Allow-Methods:
2671
+ - GET, POST, OPTIONS
2672
+ Access-Control-Allow-Headers:
2673
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2674
+ Strict-Transport-Security:
2675
+ - max-age=31557600; includeSubDomains; preload
2676
+ Content-Security-Policy:
2677
+ - upgrade-insecure-requests
2678
+ body:
2679
+ encoding: UTF-8
2680
+ string: '{"id":87,"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\":
2681
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2682
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2683
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2684
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2685
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2686
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2687
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2688
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2689
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2690
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2691
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2692
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2693
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2694
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2695
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2696
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2697
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2698
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2699
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2700
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2701
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2702
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2703
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2704
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2705
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2706
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2707
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2708
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2709
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2710
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2711
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2712
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2713
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2714
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2715
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2716
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2717
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2718
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2719
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2720
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2721
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2722
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2723
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2724
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2725
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2726
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2727
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2728
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2729
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2730
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2731
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2732
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2733
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2734
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2735
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2736
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2737
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2738
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2739
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2740
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2741
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2742
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2743
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2744
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2745
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2746
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2747
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2748
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2749
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2750
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2751
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2752
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2753
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2754
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2755
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2756
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2757
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2758
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2759
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2760
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2761
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2762
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2763
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2764
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2765
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2766
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2767
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2768
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2769
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2770
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2771
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2772
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2773
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2774
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2775
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2776
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2777
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2778
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2779
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2780
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2781
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2782
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2783
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2784
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2785
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2786
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2787
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2788
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2789
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2790
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2791
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2792
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2793
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2794
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2795
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2796
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2797
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2798
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2799
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2800
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2801
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2802
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2803
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2804
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2805
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2806
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2807
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2808
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2809
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2810
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2811
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2812
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2813
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2814
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2815
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2816
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2817
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2818
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2819
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2820
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2821
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2822
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2823
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2824
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2825
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2826
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2827
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2828
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2829
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2830
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2831
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2832
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2833
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2834
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2835
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2836
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2837
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2838
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2839
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2840
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2841
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2842
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2843
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2844
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2845
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2846
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2847
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2848
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2849
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2850
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2851
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2852
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2853
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2854
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2855
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2856
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2857
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2858
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2859
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2860
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2861
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2862
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2863
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2864
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2865
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2866
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2867
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2868
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2869
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2870
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2871
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2872
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2873
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2874
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2875
+ \"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
2876
+ 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
2877
+ 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
2878
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2879
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2880
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2881
+ 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
2882
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
2883
+ recorded_at: Sat, 17 Oct 2020 04:40:06 GMT
2884
+ - request:
2885
+ method: post
2886
+ uri: https://api.steemit.com/
2887
+ body:
2888
+ encoding: UTF-8
2889
+ string: '{"jsonrpc":"2.0","id":88,"method":"condenser_api.get_block","params":[424377]}'
2890
+ headers:
2891
+ Content-Type:
2892
+ - application/json; charset=utf-8
2893
+ User-Agent:
2894
+ - steem-ruby/0.9.4
2895
+ Accept-Encoding:
2896
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2897
+ Accept:
2898
+ - "*/*"
2899
+ Host:
2900
+ - api.steemitdev.com
2901
+ Content-Length:
2902
+ - '93'
2903
+ response:
2904
+ status:
2905
+ code: 200
2906
+ message: OK
2907
+ headers:
2908
+ Date:
2909
+ - Sat, 17 Oct 2020 04:40:06 GMT
2910
+ Content-Type:
2911
+ - application/json
2912
+ Content-Length:
2913
+ - '551'
2914
+ Connection:
2915
+ - keep-alive
2916
+ Server:
2917
+ - nginx
2918
+ X-Jussi-Request-Id:
2919
+ - '000486199808832403'
2920
+ X-Amzn-Trace-Id:
2921
+ - Root=1-5f8a75a6-6bc2f7b8790e6bd062b28ba0
2922
+ Access-Control-Allow-Origin:
2923
+ - "*"
2924
+ Access-Control-Allow-Methods:
2925
+ - GET, POST, OPTIONS
2926
+ Access-Control-Allow-Headers:
2927
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2928
+ Strict-Transport-Security:
2929
+ - max-age=31557600; includeSubDomains; preload
2930
+ Content-Security-Policy:
2931
+ - upgrade-insecure-requests
2932
+ body:
2933
+ encoding: UTF-8
2934
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":88}'
2935
+ recorded_at: Sat, 17 Oct 2020 04:40:06 GMT
2936
+ - request:
2937
+ method: post
2938
+ uri: https://steemd.minnowsupportproject.org/
2939
+ body:
2940
+ encoding: UTF-8
2941
+ string: '{"jsonrpc":"2.0","id":64,"method":"jsonrpc.get_methods","params":{}}'
2942
+ headers:
2943
+ Content-Type:
2944
+ - application/json; charset=utf-8
2945
+ User-Agent:
2946
+ - steem-ruby/0.9.4
2947
+ Accept-Encoding:
2948
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2949
+ Accept:
2950
+ - "*/*"
2951
+ Host:
2952
+ - api.steemitdev.com
2953
+ Content-Length:
2954
+ - '98'
2955
+ response:
2956
+ status:
2957
+ code: 502
2958
+ message: Bad Gateway
2959
+ headers:
2960
+ Server:
2961
+ - nginx/1.17.1
2962
+ Date:
2963
+ - Sat, 17 Oct 2020 04:56:33 GMT
2964
+ Content-Type:
2965
+ - text/html
2966
+ Content-Length:
2967
+ - '157'
2968
+ Connection:
2969
+ - keep-alive
2970
+ body:
2971
+ encoding: UTF-8
2972
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
2973
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
2974
+ recorded_at: Sat, 17 Oct 2020 04:56:33 GMT
2975
+ - request:
2976
+ method: post
2977
+ uri: https://api.steemit.com/
2978
+ body:
2979
+ encoding: UTF-8
2980
+ string: '{"jsonrpc":"2.0","id":65,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2981
+ headers:
2982
+ Content-Type:
2983
+ - application/json; charset=utf-8
2984
+ User-Agent:
2985
+ - steem-ruby/0.9.4
2986
+ Accept-Encoding:
2987
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2988
+ Accept:
2989
+ - "*/*"
2990
+ Host:
2991
+ - api.steemitdev.com
2992
+ Content-Length:
2993
+ - '68'
2994
+ response:
2995
+ status:
2996
+ code: 200
2997
+ message: OK
2998
+ headers:
2999
+ Date:
3000
+ - Sat, 17 Oct 2020 04:56:34 GMT
3001
+ Content-Type:
3002
+ - application/json
3003
+ Transfer-Encoding:
3004
+ - chunked
3005
+ Connection:
3006
+ - keep-alive
3007
+ Server:
3008
+ - nginx
3009
+ X-Jussi-Cache-Hit:
3010
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
3011
+ X-Jussi-Request-Id:
3012
+ - '000163836152562244'
3013
+ X-Amzn-Trace-Id:
3014
+ - Root=1-5f8a7982-7607bb7b0d7737b0439fa1b2
3015
+ Access-Control-Allow-Origin:
3016
+ - "*"
3017
+ Access-Control-Allow-Methods:
3018
+ - GET, POST, OPTIONS
3019
+ Access-Control-Allow-Headers:
3020
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3021
+ Strict-Transport-Security:
3022
+ - max-age=31557600; includeSubDomains; preload
3023
+ Content-Security-Policy:
3024
+ - upgrade-insecure-requests
3025
+ body:
3026
+ encoding: ASCII-8BIT
3027
+ string: '{"id":65,"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\":
3028
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
3029
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
3030
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
3031
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
3032
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
3033
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
3034
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
3035
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
3036
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
3037
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
3038
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
3039
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3040
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
3041
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
3042
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
3043
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
3044
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
3045
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3046
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
3047
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
3048
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
3049
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3050
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
3051
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
3052
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
3053
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
3054
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
3055
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
3056
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
3057
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
3058
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
3059
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
3060
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
3061
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
3062
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
3063
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
3064
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
3065
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
3066
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
3067
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
3068
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
3069
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
3070
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
3071
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
3072
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
3073
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
3074
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
3075
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
3076
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
3077
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
3078
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
3079
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
3080
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
3081
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
3082
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
3083
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
3084
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
3085
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
3086
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
3087
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
3088
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
3089
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
3090
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
3091
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
3092
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
3093
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3094
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
3095
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
3096
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
3097
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
3098
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
3099
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
3100
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
3101
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
3102
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3103
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
3104
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
3105
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
3106
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
3107
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
3108
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
3109
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3110
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
3111
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
3112
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
3113
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
3114
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
3115
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
3116
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3117
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
3118
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
3119
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
3120
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
3121
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
3122
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
3123
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
3124
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
3125
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
3126
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3127
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3128
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3129
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
3130
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
3131
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
3132
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
3133
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
3134
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
3135
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
3136
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
3137
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
3138
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
3139
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
3140
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
3141
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
3142
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
3143
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
3144
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
3145
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
3146
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
3147
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
3148
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
3149
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
3150
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
3151
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
3152
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3153
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
3154
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
3155
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
3156
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
3157
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
3158
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
3159
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
3160
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
3161
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
3162
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
3163
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3164
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
3165
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
3166
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3167
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
3168
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
3169
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
3170
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
3171
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
3172
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
3173
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
3174
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
3175
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
3176
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
3177
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
3178
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
3179
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
3180
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
3181
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
3182
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
3183
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
3184
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
3185
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3186
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
3187
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
3188
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
3189
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
3190
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
3191
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
3192
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
3193
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
3194
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
3195
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
3196
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
3197
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
3198
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
3199
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
3200
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
3201
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
3202
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
3203
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
3204
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
3205
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
3206
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
3207
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
3208
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
3209
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
3210
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3211
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
3212
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3213
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
3214
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
3215
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
3216
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
3217
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
3218
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
3219
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
3220
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
3221
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3222
+ \"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
3223
+ 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
3224
+ 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
3225
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
3226
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
3227
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
3228
+ 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
3229
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
3230
+ recorded_at: Sat, 17 Oct 2020 04:56:34 GMT
3231
+ - request:
3232
+ method: post
3233
+ uri: https://api.steemit.com/
3234
+ body:
3235
+ encoding: UTF-8
3236
+ string: '{"jsonrpc":"2.0","id":66,"method":"condenser_api.get_block","params":[424377]}'
3237
+ headers:
3238
+ Content-Type:
3239
+ - application/json; charset=utf-8
3240
+ User-Agent:
3241
+ - steem-ruby/0.9.4
3242
+ Accept-Encoding:
3243
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3244
+ Accept:
3245
+ - "*/*"
3246
+ Host:
3247
+ - api.steemitdev.com
3248
+ Content-Length:
3249
+ - '93'
3250
+ response:
3251
+ status:
3252
+ code: 200
3253
+ message: OK
3254
+ headers:
3255
+ Date:
3256
+ - Sat, 17 Oct 2020 04:56:34 GMT
3257
+ Content-Type:
3258
+ - application/json
3259
+ Content-Length:
3260
+ - '551'
3261
+ Connection:
3262
+ - keep-alive
3263
+ Server:
3264
+ - nginx
3265
+ X-Jussi-Request-Id:
3266
+ - '001074454427572441'
3267
+ X-Amzn-Trace-Id:
3268
+ - Root=1-5f8a7982-406c7d8a27d7078f7c4f02cc
3269
+ Access-Control-Allow-Origin:
3270
+ - "*"
3271
+ Access-Control-Allow-Methods:
3272
+ - GET, POST, OPTIONS
3273
+ Access-Control-Allow-Headers:
3274
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3275
+ Strict-Transport-Security:
3276
+ - max-age=31557600; includeSubDomains; preload
3277
+ Content-Security-Policy:
3278
+ - upgrade-insecure-requests
3279
+ body:
3280
+ encoding: UTF-8
3281
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":66}'
3282
+ recorded_at: Sat, 17 Oct 2020 04:56:34 GMT
3283
+ - request:
3284
+ method: post
3285
+ uri: https://api.steemit.com/
3286
+ body:
3287
+ encoding: UTF-8
3288
+ string: '{"jsonrpc":"2.0","id":21,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
3289
+ headers:
3290
+ Content-Type:
3291
+ - application/json; charset=utf-8
3292
+ User-Agent:
3293
+ - steem-ruby/0.9.4
3294
+ Accept-Encoding:
3295
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3296
+ Accept:
3297
+ - "*/*"
3298
+ Host:
3299
+ - api.steemit.com
3300
+ Content-Length:
3301
+ - '92'
3302
+ response:
3303
+ status:
3304
+ code: 200
3305
+ message: OK
3306
+ headers:
3307
+ Date:
3308
+ - Sat, 17 Oct 2020 05:03:00 GMT
3309
+ Content-Type:
3310
+ - application/json
3311
+ Transfer-Encoding:
3312
+ - chunked
3313
+ Connection:
3314
+ - keep-alive
3315
+ Server:
3316
+ - nginx
3317
+ X-Jussi-Request-Id:
3318
+ - '000943200133455964'
3319
+ X-Amzn-Trace-Id:
3320
+ - Root=1-5f8a7b04-29b0bf2f4a14449943ac8bd3
3321
+ Access-Control-Allow-Origin:
3322
+ - "*"
3323
+ Access-Control-Allow-Methods:
3324
+ - GET, POST, OPTIONS
3325
+ Access-Control-Allow-Headers:
3326
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3327
+ Strict-Transport-Security:
3328
+ - max-age=31557600; includeSubDomains; preload
3329
+ Content-Security-Policy:
3330
+ - upgrade-insecure-requests
3331
+ body:
3332
+ encoding: ASCII-8BIT
3333
+ 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\":
3334
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
3335
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
3336
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
3337
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
3338
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
3339
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
3340
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
3341
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
3342
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
3343
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
3344
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
3345
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3346
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
3347
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
3348
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
3349
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
3350
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
3351
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3352
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
3353
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
3354
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
3355
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3356
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
3357
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
3358
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
3359
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
3360
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
3361
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
3362
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
3363
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
3364
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
3365
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
3366
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
3367
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
3368
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
3369
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
3370
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
3371
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
3372
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
3373
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
3374
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
3375
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
3376
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
3377
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
3378
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
3379
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
3380
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
3381
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
3382
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
3383
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
3384
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
3385
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
3386
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
3387
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
3388
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
3389
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
3390
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
3391
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
3392
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
3393
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
3394
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
3395
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
3396
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
3397
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
3398
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
3399
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3400
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
3401
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
3402
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
3403
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
3404
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
3405
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
3406
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
3407
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
3408
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3409
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
3410
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
3411
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
3412
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
3413
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
3414
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
3415
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3416
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
3417
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
3418
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
3419
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
3420
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
3421
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
3422
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3423
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
3424
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
3425
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
3426
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
3427
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
3428
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
3429
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
3430
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
3431
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
3432
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3433
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3434
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3435
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
3436
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
3437
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
3438
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
3439
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
3440
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
3441
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
3442
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
3443
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
3444
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
3445
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
3446
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
3447
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
3448
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
3449
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
3450
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
3451
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
3452
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
3453
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
3454
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
3455
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
3456
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
3457
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
3458
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3459
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
3460
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
3461
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
3462
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
3463
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
3464
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
3465
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
3466
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
3467
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
3468
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
3469
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3470
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
3471
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
3472
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3473
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
3474
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
3475
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
3476
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
3477
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
3478
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
3479
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
3480
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
3481
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
3482
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
3483
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
3484
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
3485
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
3486
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
3487
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
3488
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
3489
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
3490
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
3491
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3492
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
3493
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
3494
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
3495
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
3496
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
3497
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
3498
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
3499
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
3500
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
3501
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
3502
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
3503
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
3504
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
3505
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
3506
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
3507
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
3508
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
3509
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
3510
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
3511
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
3512
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
3513
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
3514
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
3515
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
3516
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3517
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
3518
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3519
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
3520
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
3521
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
3522
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
3523
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
3524
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
3525
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
3526
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
3527
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3528
+ \"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
3529
+ 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
3530
+ 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
3531
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
3532
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
3533
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
3534
+ 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
3535
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":21}'
3536
+ recorded_at: Sat, 17 Oct 2020 05:03:00 GMT
3537
+ - request:
3538
+ method: post
3539
+ uri: https://api.steemit.com/
3540
+ body:
3541
+ encoding: UTF-8
3542
+ string: '{"jsonrpc":"2.0","id":22,"method":"condenser_api.get_block","params":[424377]}'
3543
+ headers:
3544
+ Content-Type:
3545
+ - application/json; charset=utf-8
3546
+ User-Agent:
3547
+ - steem-ruby/0.9.4
3548
+ Accept-Encoding:
3549
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3550
+ Accept:
3551
+ - "*/*"
3552
+ Host:
3553
+ - api.steemit.com
3554
+ Content-Length:
3555
+ - '93'
3556
+ response:
3557
+ status:
3558
+ code: 200
3559
+ message: OK
3560
+ headers:
3561
+ Date:
3562
+ - Sat, 17 Oct 2020 05:03:00 GMT
3563
+ Content-Type:
3564
+ - application/json
3565
+ Content-Length:
3566
+ - '551'
3567
+ Connection:
3568
+ - keep-alive
3569
+ Server:
3570
+ - nginx
3571
+ X-Jussi-Request-Id:
3572
+ - '000741426118380815'
3573
+ X-Amzn-Trace-Id:
3574
+ - Root=1-5f8a7b04-60ef3aff5eeae0d549b41b82
3575
+ Access-Control-Allow-Origin:
3576
+ - "*"
3577
+ Access-Control-Allow-Methods:
3578
+ - GET, POST, OPTIONS
3579
+ Access-Control-Allow-Headers:
3580
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3581
+ Strict-Transport-Security:
3582
+ - max-age=31557600; includeSubDomains; preload
3583
+ Content-Security-Policy:
3584
+ - upgrade-insecure-requests
3585
+ body:
3586
+ encoding: UTF-8
3587
+ string: '{"jsonrpc":"2.0","result":{"previous":"000679b8ca84a49ff305bca87b5940a67390eac8","timestamp":"2016-04-08T15:18:00","witness":"coldstorage20","transaction_merkle_root":"0000000000000000000000000000000000000000","extensions":[],"witness_signature":"1f330401100b39841f91e44976dd163f5fce4d0bb2c066c15c83ea1490ae91465442dace00a0f30afe4763816be0962f913a37ddd91d101ff1fd4c2a427b04d545","transactions":[],"block_id":"000679b94f18e9d523d84b7228928ce8526f2b55","signing_key":"STM7hKj2K3uyk4DwF8cLJiw14KsHYLgAUDi4n4ckrneL5geenuYjX","transaction_ids":[]},"id":22}'
3588
+ recorded_at: Sat, 17 Oct 2020 05:03:00 GMT
3589
+ recorded_with: VCR 6.0.0