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,3176 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://steem.bts.tw/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"jsonrpc":"2.0","id":2,"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
+ response:
19
+ status:
20
+ code: 502
21
+ message: Bad Gateway
22
+ headers:
23
+ Date:
24
+ - Sat, 17 Oct 2020 04:26:20 GMT
25
+ Content-Type:
26
+ - text/html; charset=UTF-8
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - cf_ob_info=502:5e3742c20edf6d28:SJC; path=/; expires=Sat, 17-Oct-20 04:26:50
33
+ GMT
34
+ - cf_use_ob=443; path=/; expires=Sat, 17-Oct-20 04:26:50 GMT
35
+ X-Frame-Options:
36
+ - SAMEORIGIN
37
+ Cache-Control:
38
+ - private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
39
+ Expires:
40
+ - Thu, 01 Jan 1970 00:00:01 GMT
41
+ Cf-Ray:
42
+ - 5e3742c20edf6d28-SJC
43
+ Server:
44
+ - cloudflare
45
+ body:
46
+ encoding: UTF-8
47
+ string: "<!DOCTYPE html>\n<!--[if lt IE 7]> <html class=\"no-js ie6 oldie\"
48
+ lang=\"en-US\"> <![endif]-->\n<!--[if IE 7]> <html class=\"no-js ie7 oldie\"
49
+ lang=\"en-US\"> <![endif]-->\n<!--[if IE 8]> <html class=\"no-js ie8 oldie\"
50
+ lang=\"en-US\"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class=\"no-js\"
51
+ lang=\"en-US\"> <!--<![endif]-->\n<head>\n<meta http-equiv=\"refresh\" content=\"0\">\n\n<title>steem.bts.tw
52
+ | 502: Bad gateway</title>\n<meta charset=\"UTF-8\" />\n<meta http-equiv=\"Content-Type\"
53
+ content=\"text/html; charset=UTF-8\" />\n<meta http-equiv=\"X-UA-Compatible\"
54
+ content=\"IE=Edge,chrome=1\" />\n<meta name=\"robots\" content=\"noindex,
55
+ nofollow\" />\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"
56
+ />\n<link rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
57
+ type=\"text/css\" media=\"screen,projection\" />\n\n\n</head>\n<body>\n<div
58
+ id=\"cf-wrapper\">\n\n \n\n <div id=\"cf-error-details\" class=\"p-0\">\n
59
+ \ <header class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-8\">\n
60
+ \ <h1 class=\"inline-block sm:block sm:mb-2 font-light text-60 lg:text-4xl
61
+ text-black-dark leading-tight mr-2\">\n \n <span
62
+ class=\"cf-error-type\">Error</span>\n <span class=\"cf-error-code\">502</span>\n
63
+ \ </h1>\n <span class=\"inline-block sm:block font-mono
64
+ text-15 lg:text-sm lg:leading-relaxed\">Ray ID: 5e3742c20edf6d28 &bull;</span>\n
65
+ \ <span class=\"inline-block sm:block font-mono text-15 lg:text-sm
66
+ lg:leading-relaxed\">2020-10-17 04:26:20 UTC</span>\n <h2 class=\"text-gray-600
67
+ leading-1.3 text-3xl font-light\">Bad gateway</h2>\n </header>\n \n
68
+ \ <div class=\"my-8 bg-gradient-gray\">\n <div class=\"w-240
69
+ lg:w-full mx-auto\">\n <div class=\"clearfix md:px-8\">\n \n<div
70
+ id=\"cf-browser-status\" class=\" relative w-1/3 md:w-full py-15 md:p-0 md:py-8
71
+ md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden
72
+ float-left md:float-none text-center\">\n <div class=\"relative mb-10 md:m-0\">\n
73
+ \ <span class=\"cf-icon-browser block md:hidden h-20 bg-center bg-no-repeat\"></span>\n
74
+ \ <span class=\"cf-icon-ok w-12 h-12 absolute left-1/2 md:left-auto md:right-0
75
+ md:top-0 -ml-6 -bottom-4\"></span>\n </div>\n <span class=\"md:block w-full
76
+ truncate\">You</span>\n <h3 class=\"md:inline-block mt-3 md:mt-0 text-2xl
77
+ text-gray-600 font-light leading-1.3\">Browser</h3>\n <span class=\"leading-1.3
78
+ text-2xl text-green-success\">Working</span>\n</div>\n\n<div id=\"cf-cloudflare-status\"
79
+ class=\" relative w-1/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid
80
+ md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none
81
+ text-center\">\n <div class=\"relative mb-10 md:m-0\">\n <span class=\"cf-icon-cloud
82
+ block md:hidden h-20 bg-center bg-no-repeat\"></span>\n <span class=\"cf-icon-ok
83
+ w-12 h-12 absolute left-1/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"></span>\n
84
+ \ </div>\n <span class=\"md:block w-full truncate\">San Jose</span>\n <h3
85
+ class=\"md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">Cloudflare</h3>\n
86
+ \ <span class=\"leading-1.3 text-2xl text-green-success\">Working</span>\n</div>\n\n<div
87
+ id=\"cf-host-status\" class=\"cf-error-source relative w-1/3 md:w-full py-15
88
+ md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400
89
+ overflow-hidden float-left md:float-none text-center\">\n <div class=\"relative
90
+ mb-10 md:m-0\">\n <span class=\"cf-icon-server block md:hidden h-20 bg-center
91
+ bg-no-repeat\"></span>\n <span class=\"cf-icon-error w-12 h-12 absolute
92
+ left-1/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"></span>\n </div>\n
93
+ \ <span class=\"md:block w-full truncate\">steem.bts.tw</span>\n <h3 class=\"md:inline-block
94
+ mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">Host</h3>\n <span
95
+ class=\"leading-1.3 text-2xl text-red-error\">Error</span>\n</div>\n\n </div>\n
96
+ \ \n </div>\n </div>\n\n <div class=\"w-240
97
+ lg:w-full mx-auto mb-8 lg:px-8\">\n <div class=\"clearfix\">\n
98
+ \ <div class=\"w-1/2 md:w-full float-left pr-6 md:pb-10 md:pr-0
99
+ leading-relaxed\">\n <h2 class=\"text-3xl font-normal leading-1.3
100
+ mb-4\">What happened?</h2>\n <p>The web server reported
101
+ a bad gateway error.</p>\n </div>\n \n <div
102
+ class=\"w-1/2 md:w-full float-left leading-relaxed\">\n <h2
103
+ class=\"text-3xl font-normal leading-1.3 mb-4\">What can I do?</h2>\n <p
104
+ class=\"mb-6\">Please try again in a few minutes.</p>\n </div>\n
105
+ \ </div>\n \n </div>\n\n <div class=\"cf-error-footer
106
+ cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left
107
+ border-solid border-0 border-t border-gray-300\">\n <p class=\"text-13\">\n
108
+ \ <span class=\"cf-footer-item sm:block sm:mb-1\">Cloudflare Ray ID: <strong
109
+ class=\"font-semibold\">5e3742c20edf6d28</strong></span>\n <span class=\"cf-footer-separator
110
+ sm:hidden\">&bull;</span>\n <span class=\"cf-footer-item sm:block sm:mb-1\"><span>Your
111
+ IP</span>: 47.208.230.76</span>\n <span class=\"cf-footer-separator sm:hidden\">&bull;</span>\n
112
+ \ <span class=\"cf-footer-item sm:block sm:mb-1\"><span>Performance &amp;
113
+ security by</span> <a href=\"https://www.cloudflare.com/5xx-error-landing\"
114
+ id=\"brand_link\" target=\"_blank\">Cloudflare</a></span>\n \n </p>\n</div><!--
115
+ /.error-footer -->\n\n\n </div>\n</div>\n</body>\n</html>\n\n"
116
+ recorded_at: Sat, 17 Oct 2020 04:26:20 GMT
117
+ - request:
118
+ method: post
119
+ uri: https://api.steemit.com/
120
+ body:
121
+ encoding: UTF-8
122
+ string: '{"jsonrpc":"2.0","id":3,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
123
+ headers:
124
+ Content-Type:
125
+ - application/json; charset=utf-8
126
+ User-Agent:
127
+ - steem-ruby/0.9.4
128
+ Accept-Encoding:
129
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
130
+ Accept:
131
+ - "*/*"
132
+ Host:
133
+ - steem.bts.tw
134
+ Content-Length:
135
+ - '67'
136
+ response:
137
+ status:
138
+ code: 200
139
+ message: OK
140
+ headers:
141
+ Date:
142
+ - Sat, 17 Oct 2020 04:26:20 GMT
143
+ Content-Type:
144
+ - application/json
145
+ Transfer-Encoding:
146
+ - chunked
147
+ Connection:
148
+ - keep-alive
149
+ Server:
150
+ - nginx
151
+ X-Jussi-Request-Id:
152
+ - '000334312975204324'
153
+ X-Amzn-Trace-Id:
154
+ - Root=1-5f8a726c-756aabba3f3bd4a24e07e383
155
+ Access-Control-Allow-Origin:
156
+ - "*"
157
+ Access-Control-Allow-Methods:
158
+ - GET, POST, OPTIONS
159
+ Access-Control-Allow-Headers:
160
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
161
+ Strict-Transport-Security:
162
+ - max-age=31557600; includeSubDomains; preload
163
+ Content-Security-Policy:
164
+ - upgrade-insecure-requests
165
+ body:
166
+ encoding: ASCII-8BIT
167
+ 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\":
168
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
169
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
170
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
171
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
172
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
173
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
174
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
175
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
176
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
177
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
178
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
179
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
180
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
181
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
182
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
183
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
184
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
185
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
186
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
187
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
188
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
189
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
190
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
191
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
192
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
193
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
194
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
195
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
196
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
197
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
198
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
199
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
200
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
201
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
202
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
203
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
204
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
205
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
206
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
207
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
208
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
209
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
210
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
211
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
212
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
213
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
214
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
215
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
216
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
217
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
218
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
219
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
220
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
221
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
222
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
223
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
224
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
225
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
226
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
227
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
228
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
229
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
230
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
231
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
232
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
233
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
234
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
235
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
236
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
237
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
238
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
239
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
240
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
241
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
242
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
243
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
244
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
245
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
246
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
247
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
248
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
249
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
250
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
251
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
252
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
253
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
254
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
255
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
256
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
257
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
258
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
259
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
260
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
261
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
262
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
263
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
264
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
265
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
266
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
267
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
268
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
269
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
270
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
271
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
272
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
273
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
274
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
275
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
276
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
277
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
278
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
279
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
280
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
281
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
282
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
283
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
284
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
285
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
286
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
287
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
288
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
289
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
290
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
291
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
292
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
293
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
294
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
295
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
296
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
297
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
298
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
299
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
300
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
301
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
302
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
303
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
304
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
305
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
306
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
307
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
308
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
309
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
310
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
311
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
312
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
313
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
314
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
315
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
316
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
317
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
318
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
319
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
320
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
321
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
322
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
323
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
324
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
325
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
326
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
327
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
328
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
329
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
330
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
331
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
332
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
333
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
334
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
335
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
336
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
337
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
338
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
339
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
340
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
341
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
342
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
343
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
344
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
345
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
346
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
347
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
348
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
349
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
350
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
351
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
352
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
353
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
354
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
355
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
356
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
357
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
358
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
359
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
360
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
361
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
362
+ \"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
363
+ 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
364
+ 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
365
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
366
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
367
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
368
+ 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
369
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":3}'
370
+ recorded_at: Sat, 17 Oct 2020 04:26:20 GMT
371
+ - request:
372
+ method: post
373
+ uri: https://steemd.minnowsupportproject.org/
374
+ body:
375
+ encoding: UTF-8
376
+ string: '{"jsonrpc":"2.0","id":4,"method":"jsonrpc.get_methods","params":{}}'
377
+ headers:
378
+ Content-Type:
379
+ - application/json; charset=utf-8
380
+ User-Agent:
381
+ - steem-ruby/0.9.4
382
+ Accept-Encoding:
383
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
384
+ Accept:
385
+ - "*/*"
386
+ Host:
387
+ - steem.bts.tw
388
+ Content-Length:
389
+ - '92'
390
+ response:
391
+ status:
392
+ code: 502
393
+ message: Bad Gateway
394
+ headers:
395
+ Server:
396
+ - nginx/1.17.1
397
+ Date:
398
+ - Sat, 17 Oct 2020 04:26:22 GMT
399
+ Content-Type:
400
+ - text/html
401
+ Content-Length:
402
+ - '157'
403
+ Connection:
404
+ - keep-alive
405
+ body:
406
+ encoding: UTF-8
407
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
408
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
409
+ recorded_at: Sat, 17 Oct 2020 04:26:22 GMT
410
+ - request:
411
+ method: post
412
+ uri: https://api.steemit.com/
413
+ body:
414
+ encoding: UTF-8
415
+ string: '{"jsonrpc":"2.0","id":5,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
416
+ headers:
417
+ Content-Type:
418
+ - application/json; charset=utf-8
419
+ User-Agent:
420
+ - steem-ruby/0.9.4
421
+ Accept-Encoding:
422
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
423
+ Accept:
424
+ - "*/*"
425
+ Host:
426
+ - steem.bts.tw
427
+ Content-Length:
428
+ - '67'
429
+ response:
430
+ status:
431
+ code: 200
432
+ message: OK
433
+ headers:
434
+ Date:
435
+ - Sat, 17 Oct 2020 04:26:23 GMT
436
+ Content-Type:
437
+ - application/json
438
+ Transfer-Encoding:
439
+ - chunked
440
+ Connection:
441
+ - keep-alive
442
+ Server:
443
+ - nginx
444
+ X-Jussi-Cache-Hit:
445
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
446
+ X-Jussi-Request-Id:
447
+ - '000310469076023149'
448
+ X-Amzn-Trace-Id:
449
+ - Root=1-5f8a726f-367266ed7f79482445ea1718
450
+ Access-Control-Allow-Origin:
451
+ - "*"
452
+ Access-Control-Allow-Methods:
453
+ - GET, POST, OPTIONS
454
+ Access-Control-Allow-Headers:
455
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
456
+ Strict-Transport-Security:
457
+ - max-age=31557600; includeSubDomains; preload
458
+ Content-Security-Policy:
459
+ - upgrade-insecure-requests
460
+ body:
461
+ encoding: ASCII-8BIT
462
+ string: '{"id":5,"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
463
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
464
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
465
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
466
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
467
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
468
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
469
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
470
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
471
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
472
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
473
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
474
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
475
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
476
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
477
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
478
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
479
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
480
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
481
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
482
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
483
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
484
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
485
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
486
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
487
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
488
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
489
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
490
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
491
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
492
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
493
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
494
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
495
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
496
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
497
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
498
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
499
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
500
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
501
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
502
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
503
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
504
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
505
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
506
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
507
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
508
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
509
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
510
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
511
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
512
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
513
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
514
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
515
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
516
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
517
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
518
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
519
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
520
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
521
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
522
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
523
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
524
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
525
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
526
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
527
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
528
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
529
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
530
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
531
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
532
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
533
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
534
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
535
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
536
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
537
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
538
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
539
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
540
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
541
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
542
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
543
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
544
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
545
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
546
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
547
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
548
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
549
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
550
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
551
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
552
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
553
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
554
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
555
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
556
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
557
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
558
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
559
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
560
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
561
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
562
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
563
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
564
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
565
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
566
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
567
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
568
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
569
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
570
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
571
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
572
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
573
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
574
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
575
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
576
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
577
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
578
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
579
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
580
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
581
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
582
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
583
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
584
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
585
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
586
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
587
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
588
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
589
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
590
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
591
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
592
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
593
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
594
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
595
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
596
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
597
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
598
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
599
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
600
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
601
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
602
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
603
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
604
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
605
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
606
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
607
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
608
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
609
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
610
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
611
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
612
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
613
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
614
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
615
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
616
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
617
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
618
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
619
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
620
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
621
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
622
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
623
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
624
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
625
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
626
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
627
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
628
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
629
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
630
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
631
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
632
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
633
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
634
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
635
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
636
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
637
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
638
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
639
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
640
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
641
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
642
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
643
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
644
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
645
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
646
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
647
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
648
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
649
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
650
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
651
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
652
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
653
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
654
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
655
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
656
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
657
+ \"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
658
+ 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
659
+ 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
660
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
661
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
662
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
663
+ 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
664
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
665
+ recorded_at: Sat, 17 Oct 2020 04:26:23 GMT
666
+ - request:
667
+ method: post
668
+ uri: https://steemd.minnowsupportproject.org/
669
+ body:
670
+ encoding: UTF-8
671
+ string: '{"jsonrpc":"2.0","id":39,"method":"jsonrpc.get_methods","params":{}}'
672
+ headers:
673
+ Content-Type:
674
+ - application/json; charset=utf-8
675
+ User-Agent:
676
+ - steem-ruby/0.9.4
677
+ Accept-Encoding:
678
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
679
+ Accept:
680
+ - "*/*"
681
+ Host:
682
+ - api.steemitdev.com
683
+ Content-Length:
684
+ - '68'
685
+ response:
686
+ status:
687
+ code: 502
688
+ message: Bad Gateway
689
+ headers:
690
+ Server:
691
+ - nginx/1.17.1
692
+ Date:
693
+ - Sat, 17 Oct 2020 04:26:58 GMT
694
+ Content-Type:
695
+ - text/html
696
+ Content-Length:
697
+ - '157'
698
+ Connection:
699
+ - keep-alive
700
+ body:
701
+ encoding: UTF-8
702
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
703
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
704
+ recorded_at: Sat, 17 Oct 2020 04:26:58 GMT
705
+ - request:
706
+ method: post
707
+ uri: https://api.steemit.com/
708
+ body:
709
+ encoding: UTF-8
710
+ string: '{"jsonrpc":"2.0","id":40,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
711
+ headers:
712
+ Content-Type:
713
+ - application/json; charset=utf-8
714
+ User-Agent:
715
+ - steem-ruby/0.9.4
716
+ Accept-Encoding:
717
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
718
+ Accept:
719
+ - "*/*"
720
+ Host:
721
+ - api.steemitdev.com
722
+ Content-Length:
723
+ - '68'
724
+ response:
725
+ status:
726
+ code: 200
727
+ message: OK
728
+ headers:
729
+ Date:
730
+ - Sat, 17 Oct 2020 04:26:58 GMT
731
+ Content-Type:
732
+ - application/json
733
+ Transfer-Encoding:
734
+ - chunked
735
+ Connection:
736
+ - keep-alive
737
+ Server:
738
+ - nginx
739
+ X-Jussi-Request-Id:
740
+ - '000705516308860800'
741
+ X-Amzn-Trace-Id:
742
+ - Root=1-5f8a7292-783711097862af9c4c36bbea
743
+ Access-Control-Allow-Origin:
744
+ - "*"
745
+ Access-Control-Allow-Methods:
746
+ - GET, POST, OPTIONS
747
+ Access-Control-Allow-Headers:
748
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
749
+ Strict-Transport-Security:
750
+ - max-age=31557600; includeSubDomains; preload
751
+ Content-Security-Policy:
752
+ - upgrade-insecure-requests
753
+ body:
754
+ encoding: ASCII-8BIT
755
+ 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\":
756
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
757
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
758
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
759
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
760
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
761
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
762
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
763
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
764
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
765
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
766
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
767
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
768
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
769
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
770
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
771
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
772
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
773
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
774
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
775
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
776
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
777
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
778
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
779
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
780
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
781
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
782
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
783
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
784
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
785
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
786
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
787
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
788
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
789
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
790
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
791
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
792
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
793
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
794
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
795
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
796
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
797
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
798
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
799
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
800
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
801
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
802
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
803
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
804
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
805
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
806
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
807
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
808
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
809
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
810
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
811
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
812
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
813
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
814
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
815
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
816
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
817
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
818
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
819
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
820
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
821
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
822
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
823
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
824
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
825
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
826
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
827
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
828
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
829
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
830
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
831
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
832
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
833
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
834
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
835
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
836
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
837
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
838
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
839
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
840
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
841
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
842
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
843
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
844
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
845
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
846
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
847
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
848
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
849
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
850
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
851
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
852
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
853
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
854
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
855
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
856
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
857
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
858
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
859
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
860
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
861
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
862
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
863
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
864
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
865
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
866
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
867
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
868
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
869
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
870
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
871
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
872
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
873
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
874
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
875
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
876
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
877
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
878
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
879
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
880
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
881
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
882
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
883
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
884
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
885
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
886
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
887
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
888
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
889
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
890
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
891
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
892
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
893
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
894
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
895
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
896
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
897
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
898
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
899
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
900
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
901
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
902
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
903
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
904
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
905
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
906
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
907
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
908
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
909
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
910
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
911
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
912
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
913
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
914
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
915
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
916
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
917
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
918
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
919
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
920
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
921
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
922
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
923
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
924
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
925
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
926
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
927
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
928
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
929
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
930
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
931
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
932
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
933
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
934
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
935
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
936
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
937
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
938
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
939
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
940
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
941
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
942
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
943
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
944
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
945
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
946
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
947
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
948
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
949
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
950
+ \"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
951
+ 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
952
+ 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
953
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
954
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
955
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
956
+ 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
957
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":40}'
958
+ recorded_at: Sat, 17 Oct 2020 04:26:58 GMT
959
+ - request:
960
+ method: post
961
+ uri: https://api.justyy.com/
962
+ body:
963
+ encoding: UTF-8
964
+ string: '{"jsonrpc":"2.0","id":41,"method":"jsonrpc.get_methods","params":{}}'
965
+ headers:
966
+ Content-Type:
967
+ - application/json; charset=utf-8
968
+ User-Agent:
969
+ - steem-ruby/0.9.4
970
+ Accept-Encoding:
971
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
972
+ Accept:
973
+ - "*/*"
974
+ Host:
975
+ - api.steemitdev.com
976
+ Content-Length:
977
+ - '93'
978
+ response:
979
+ status:
980
+ code: 200
981
+ message: OK
982
+ headers:
983
+ Server:
984
+ - nginx/1.14.0 (Ubuntu)
985
+ Date:
986
+ - Sat, 17 Oct 2020 04:26:59 GMT
987
+ Content-Type:
988
+ - application/json
989
+ Content-Length:
990
+ - '5672'
991
+ Connection:
992
+ - keep-alive
993
+ X-Jussi-Request-Id:
994
+ - '000805781645287489'
995
+ X-Amzn-Trace-Id:
996
+ - ''
997
+ Access-Control-Allow-Origin:
998
+ - "*"
999
+ Access-Control-Allow-Methods:
1000
+ - GET, POST, OPTIONS
1001
+ Access-Control-Allow-Headers:
1002
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1003
+ Strict-Transport-Security:
1004
+ - max-age=31557600; includeSubDomains; preload
1005
+ Content-Security-Policy:
1006
+ - upgrade-insecure-requests
1007
+ body:
1008
+ encoding: UTF-8
1009
+ 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":41}'
1010
+ recorded_at: Sat, 17 Oct 2020 04:26:59 GMT
1011
+ - request:
1012
+ method: post
1013
+ uri: https://api.justyy.com/
1014
+ body:
1015
+ encoding: UTF-8
1016
+ string: '{"jsonrpc":"2.0","id":42,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1017
+ headers:
1018
+ Content-Type:
1019
+ - application/json; charset=utf-8
1020
+ User-Agent:
1021
+ - steem-ruby/0.9.4
1022
+ Accept-Encoding:
1023
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1024
+ Accept:
1025
+ - "*/*"
1026
+ Host:
1027
+ - api.steemitdev.com
1028
+ Content-Length:
1029
+ - '68'
1030
+ response:
1031
+ status:
1032
+ code: 200
1033
+ message: OK
1034
+ headers:
1035
+ Server:
1036
+ - nginx/1.14.0 (Ubuntu)
1037
+ Date:
1038
+ - Sat, 17 Oct 2020 04:27:01 GMT
1039
+ Content-Type:
1040
+ - application/json
1041
+ Content-Length:
1042
+ - '17993'
1043
+ Connection:
1044
+ - keep-alive
1045
+ X-Jussi-Request-Id:
1046
+ - '000020685105257764'
1047
+ X-Amzn-Trace-Id:
1048
+ - ''
1049
+ Access-Control-Allow-Origin:
1050
+ - "*"
1051
+ Access-Control-Allow-Methods:
1052
+ - GET, POST, OPTIONS
1053
+ Access-Control-Allow-Headers:
1054
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1055
+ Strict-Transport-Security:
1056
+ - max-age=31557600; includeSubDomains; preload
1057
+ Content-Security-Policy:
1058
+ - upgrade-insecure-requests
1059
+ body:
1060
+ encoding: UTF-8
1061
+ 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\":
1062
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1063
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1064
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1065
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1066
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1067
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1068
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1069
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1070
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1071
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1072
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1073
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1074
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1075
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1076
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1077
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1078
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1079
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1080
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1081
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1082
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1083
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1084
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1085
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1086
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1087
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1088
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1089
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1090
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1091
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1092
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1093
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1094
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1095
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1096
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1097
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1098
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1099
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1100
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1101
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1102
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1103
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1104
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1105
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1106
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1107
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1108
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1109
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1110
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1111
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1112
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1113
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1114
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1115
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1116
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1117
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1118
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1119
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1120
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1121
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1122
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1123
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1124
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1125
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1126
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1127
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1128
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1129
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1130
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1131
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1132
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1133
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1134
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1135
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1136
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1137
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1138
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1139
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1140
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1141
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1142
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1143
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1144
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1145
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1146
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1147
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1148
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1149
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1150
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1151
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1152
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1153
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1154
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1155
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1156
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1157
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1158
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1159
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1160
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1161
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1162
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1163
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1164
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1165
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1166
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1167
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1168
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1169
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1170
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1171
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1172
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1173
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1174
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1175
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1176
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1177
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1178
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1179
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1180
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1181
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1182
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1183
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1184
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1185
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1186
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1187
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1188
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1189
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1190
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1191
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1192
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1193
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1194
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1195
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1196
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1197
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1198
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1199
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1200
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1201
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1202
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1203
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1204
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1205
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1206
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1207
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1208
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1209
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1210
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1211
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1212
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1213
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1214
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1215
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1216
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1217
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1218
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1219
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1220
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1221
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1222
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1223
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1224
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1225
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1226
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1227
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1228
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1229
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1230
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1231
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1232
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1233
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1234
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1235
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1236
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1237
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1238
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1239
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1240
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1241
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1242
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1243
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1244
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1245
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1246
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1247
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1248
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1249
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1250
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1251
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1252
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1253
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1254
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1255
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1256
+ \"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
1257
+ 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
1258
+ 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
1259
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1260
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1261
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1262
+ 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
1263
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":42}'
1264
+ recorded_at: Sat, 17 Oct 2020 04:27:01 GMT
1265
+ - request:
1266
+ method: post
1267
+ uri: https://steem.bts.tw/
1268
+ body:
1269
+ encoding: UTF-8
1270
+ string: '{"jsonrpc":"2.0","id":88,"method":"jsonrpc.get_methods","params":{}}'
1271
+ headers:
1272
+ Content-Type:
1273
+ - application/json; charset=utf-8
1274
+ User-Agent:
1275
+ - steem-ruby/0.9.4
1276
+ Accept-Encoding:
1277
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1278
+ Accept:
1279
+ - "*/*"
1280
+ Host:
1281
+ - api.steemitdev.com
1282
+ Content-Length:
1283
+ - '93'
1284
+ response:
1285
+ status:
1286
+ code: 403
1287
+ message: Forbidden
1288
+ headers:
1289
+ Server:
1290
+ - cloudflare
1291
+ Date:
1292
+ - Sat, 17 Oct 2020 04:34:58 GMT
1293
+ Content-Type:
1294
+ - text/html
1295
+ Content-Length:
1296
+ - '151'
1297
+ Connection:
1298
+ - keep-alive
1299
+ Cf-Ray:
1300
+ - 5e374f6cee4f9b9d-SJC
1301
+ body:
1302
+ encoding: UTF-8
1303
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
1304
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
1305
+ recorded_at: Sat, 17 Oct 2020 04:34:58 GMT
1306
+ - request:
1307
+ method: post
1308
+ uri: https://api.steemit.com/
1309
+ body:
1310
+ encoding: UTF-8
1311
+ string: '{"jsonrpc":"2.0","id":89,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1312
+ headers:
1313
+ Content-Type:
1314
+ - application/json; charset=utf-8
1315
+ User-Agent:
1316
+ - steem-ruby/0.9.4
1317
+ Accept-Encoding:
1318
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1319
+ Accept:
1320
+ - "*/*"
1321
+ Host:
1322
+ - api.steemitdev.com
1323
+ Content-Length:
1324
+ - '68'
1325
+ response:
1326
+ status:
1327
+ code: 200
1328
+ message: OK
1329
+ headers:
1330
+ Date:
1331
+ - Sat, 17 Oct 2020 04:34:59 GMT
1332
+ Content-Type:
1333
+ - application/json
1334
+ Transfer-Encoding:
1335
+ - chunked
1336
+ Connection:
1337
+ - keep-alive
1338
+ Server:
1339
+ - nginx
1340
+ X-Jussi-Cache-Hit:
1341
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
1342
+ X-Jussi-Request-Id:
1343
+ - '000638286940061442'
1344
+ X-Amzn-Trace-Id:
1345
+ - Root=1-5f8a7473-3f3d17431499fa3377526a32
1346
+ Access-Control-Allow-Origin:
1347
+ - "*"
1348
+ Access-Control-Allow-Methods:
1349
+ - GET, POST, OPTIONS
1350
+ Access-Control-Allow-Headers:
1351
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1352
+ Strict-Transport-Security:
1353
+ - max-age=31557600; includeSubDomains; preload
1354
+ Content-Security-Policy:
1355
+ - upgrade-insecure-requests
1356
+ body:
1357
+ encoding: ASCII-8BIT
1358
+ string: '{"id":89,"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\":
1359
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1360
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1361
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1362
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1363
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1364
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1365
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1366
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1367
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1368
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1369
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1370
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1371
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1372
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1373
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1374
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1375
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1376
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1377
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1378
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1379
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1380
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1381
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1382
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1383
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1384
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1385
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1386
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1387
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1388
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1389
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1390
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1391
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1392
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1393
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1394
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1395
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1396
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1397
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1398
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1399
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1400
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1401
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1402
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1403
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1404
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1405
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1406
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1407
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1408
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1409
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1410
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1411
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1412
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1413
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1414
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1415
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1416
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1417
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1418
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1419
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1420
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1421
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1422
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1423
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1424
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1425
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1426
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1427
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1428
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1429
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1430
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1431
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1432
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1433
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1434
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1435
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1436
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1437
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1438
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1439
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1440
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1441
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1442
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1443
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1444
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1445
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1446
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1447
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1448
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1449
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1450
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1451
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1452
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1453
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1454
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1455
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1456
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1457
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1458
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1459
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1460
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1461
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1462
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1463
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1464
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1465
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1466
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1467
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1468
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1469
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1470
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1471
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1472
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1473
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1474
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1475
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1476
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1477
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1478
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1479
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1480
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1481
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1482
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1483
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1484
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1485
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1486
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1487
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1488
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1489
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1490
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1491
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1492
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1493
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1494
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1495
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1496
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1497
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1498
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1499
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1500
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1501
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1502
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1503
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1504
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1505
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1506
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1507
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1508
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1509
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1510
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1511
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1512
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1513
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1514
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1515
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1516
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1517
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1518
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1519
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1520
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1521
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1522
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1523
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1524
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1525
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1526
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1527
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1528
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1529
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1530
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1531
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1532
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1533
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1534
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1535
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1536
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1537
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1538
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1539
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1540
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1541
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1542
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1543
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1544
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1545
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1546
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1547
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1548
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1549
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1550
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1551
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1552
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1553
+ \"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
1554
+ 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
1555
+ 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
1556
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1557
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1558
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1559
+ 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
1560
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
1561
+ recorded_at: Sat, 17 Oct 2020 04:34:59 GMT
1562
+ - request:
1563
+ method: post
1564
+ uri: https://api.justyy.com/
1565
+ body:
1566
+ encoding: UTF-8
1567
+ string: '{"jsonrpc":"2.0","id":90,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1568
+ headers:
1569
+ Content-Type:
1570
+ - application/json; charset=utf-8
1571
+ User-Agent:
1572
+ - steem-ruby/0.9.4
1573
+ Accept-Encoding:
1574
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1575
+ Accept:
1576
+ - "*/*"
1577
+ Host:
1578
+ - api.steemitdev.com
1579
+ Content-Length:
1580
+ - '93'
1581
+ response:
1582
+ status:
1583
+ code: 200
1584
+ message: OK
1585
+ headers:
1586
+ Server:
1587
+ - nginx/1.14.0 (Ubuntu)
1588
+ Date:
1589
+ - Sat, 17 Oct 2020 04:34:59 GMT
1590
+ Content-Type:
1591
+ - application/json
1592
+ Content-Length:
1593
+ - '17993'
1594
+ Connection:
1595
+ - keep-alive
1596
+ X-Jussi-Cache-Hit:
1597
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
1598
+ X-Jussi-Request-Id:
1599
+ - '000068299478600536'
1600
+ X-Amzn-Trace-Id:
1601
+ - ''
1602
+ Access-Control-Allow-Origin:
1603
+ - "*"
1604
+ Access-Control-Allow-Methods:
1605
+ - GET, POST, OPTIONS
1606
+ Access-Control-Allow-Headers:
1607
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1608
+ Strict-Transport-Security:
1609
+ - max-age=31557600; includeSubDomains; preload
1610
+ Content-Security-Policy:
1611
+ - upgrade-insecure-requests
1612
+ body:
1613
+ encoding: UTF-8
1614
+ string: '{"id":90,"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\":
1615
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1616
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1617
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1618
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1619
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1620
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1621
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1622
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1623
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1624
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1625
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1626
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1627
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1628
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1629
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1630
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1631
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1632
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1633
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1634
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1635
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1636
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1637
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1638
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1639
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1640
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1641
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1642
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1643
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1644
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1645
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1646
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1647
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1648
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1649
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1650
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1651
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1652
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1653
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1654
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1655
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1656
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1657
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1658
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1659
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1660
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1661
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1662
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1663
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1664
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1665
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1666
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1667
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1668
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1669
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1670
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1671
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1672
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1673
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1674
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1675
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1676
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1677
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1678
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1679
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1680
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1681
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1682
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1683
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1684
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1685
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1686
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1687
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1688
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1689
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1690
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1691
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1692
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1693
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1694
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1695
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1696
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1697
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1698
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1699
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1700
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1701
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1702
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1703
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1704
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1705
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1706
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1707
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1708
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1709
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1710
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1711
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1712
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1713
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1714
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1715
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1716
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1717
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1718
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1719
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1720
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1721
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1722
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1723
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1724
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1725
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1726
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1727
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1728
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1729
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1730
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1731
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1732
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1733
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1734
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1735
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1736
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1737
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1738
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1739
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1740
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1741
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1742
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1743
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1744
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1745
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1746
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1747
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1748
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1749
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1750
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1751
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1752
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1753
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1754
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1755
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1756
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1757
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1758
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1759
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1760
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1761
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1762
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1763
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1764
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1765
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1766
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1767
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1768
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1769
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1770
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1771
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1772
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1773
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1774
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1775
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1776
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1777
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1778
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1779
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1780
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1781
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1782
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1783
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1784
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1785
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1786
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1787
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1788
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1789
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1790
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1791
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1792
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1793
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1794
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1795
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1796
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1797
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1798
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1799
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1800
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1801
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1802
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1803
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1804
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1805
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1806
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1807
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1808
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1809
+ \"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
1810
+ 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
1811
+ 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
1812
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1813
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1814
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1815
+ 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
1816
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
1817
+ recorded_at: Sat, 17 Oct 2020 04:35:00 GMT
1818
+ - request:
1819
+ method: post
1820
+ uri: https://steem.bts.tw/
1821
+ body:
1822
+ encoding: UTF-8
1823
+ string: '{"jsonrpc":"2.0","id":51,"method":"jsonrpc.get_methods","params":{}}'
1824
+ headers:
1825
+ Content-Type:
1826
+ - application/json; charset=utf-8
1827
+ User-Agent:
1828
+ - steem-ruby/0.9.4
1829
+ Accept-Encoding:
1830
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1831
+ Accept:
1832
+ - "*/*"
1833
+ Host:
1834
+ - api.steemitdev.com
1835
+ Content-Length:
1836
+ - '93'
1837
+ response:
1838
+ status:
1839
+ code: 403
1840
+ message: Forbidden
1841
+ headers:
1842
+ Server:
1843
+ - cloudflare
1844
+ Date:
1845
+ - Sat, 17 Oct 2020 04:39:48 GMT
1846
+ Content-Type:
1847
+ - text/html
1848
+ Content-Length:
1849
+ - '151'
1850
+ Connection:
1851
+ - keep-alive
1852
+ Cf-Ray:
1853
+ - 5e375682e91b1fa1-SJC
1854
+ body:
1855
+ encoding: UTF-8
1856
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
1857
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
1858
+ recorded_at: Sat, 17 Oct 2020 04:39:48 GMT
1859
+ - request:
1860
+ method: post
1861
+ uri: https://api.steemit.com/
1862
+ body:
1863
+ encoding: UTF-8
1864
+ string: '{"jsonrpc":"2.0","id":52,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1865
+ headers:
1866
+ Content-Type:
1867
+ - application/json; charset=utf-8
1868
+ User-Agent:
1869
+ - steem-ruby/0.9.4
1870
+ Accept-Encoding:
1871
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1872
+ Accept:
1873
+ - "*/*"
1874
+ Host:
1875
+ - api.steemitdev.com
1876
+ Content-Length:
1877
+ - '68'
1878
+ response:
1879
+ status:
1880
+ code: 200
1881
+ message: OK
1882
+ headers:
1883
+ Date:
1884
+ - Sat, 17 Oct 2020 04:39:49 GMT
1885
+ Content-Type:
1886
+ - application/json
1887
+ Transfer-Encoding:
1888
+ - chunked
1889
+ Connection:
1890
+ - keep-alive
1891
+ Server:
1892
+ - nginx
1893
+ X-Jussi-Cache-Hit:
1894
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
1895
+ X-Jussi-Request-Id:
1896
+ - '000424381440054178'
1897
+ X-Amzn-Trace-Id:
1898
+ - Root=1-5f8a7595-1306c5e05a17d8845d615f55
1899
+ Access-Control-Allow-Origin:
1900
+ - "*"
1901
+ Access-Control-Allow-Methods:
1902
+ - GET, POST, OPTIONS
1903
+ Access-Control-Allow-Headers:
1904
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1905
+ Strict-Transport-Security:
1906
+ - max-age=31557600; includeSubDomains; preload
1907
+ Content-Security-Policy:
1908
+ - upgrade-insecure-requests
1909
+ body:
1910
+ encoding: ASCII-8BIT
1911
+ string: '{"id":52,"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\":
1912
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1913
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1914
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1915
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1916
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1917
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1918
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1919
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1920
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1921
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1922
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1923
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1924
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1925
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1926
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1927
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1928
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1929
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1930
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1931
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1932
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1933
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1934
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1935
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1936
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1937
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1938
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1939
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1940
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1941
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1942
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1943
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1944
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1945
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1946
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1947
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1948
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1949
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1950
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1951
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1952
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1953
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1954
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1955
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1956
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1957
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1958
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1959
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1960
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1961
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1962
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1963
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1964
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1965
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1966
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1967
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1968
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1969
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1970
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1971
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1972
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1973
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1974
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1975
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1976
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1977
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1978
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1979
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1980
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1981
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1982
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1983
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1984
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1985
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1986
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1987
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1988
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1989
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1990
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1991
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1992
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1993
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1994
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1995
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1996
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1997
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1998
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1999
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2000
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2001
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2002
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2003
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2004
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2005
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2006
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2007
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2008
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2009
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2010
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2011
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2012
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2013
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2014
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2015
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2016
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2017
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2018
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2019
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2020
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2021
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2022
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2023
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2024
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2025
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2026
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2027
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2028
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2029
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2030
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2031
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2032
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2033
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2034
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2035
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2036
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2037
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2038
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2039
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2040
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2041
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2042
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2043
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2044
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2045
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2046
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2047
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2048
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2049
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2050
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2051
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2052
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2053
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2054
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2055
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2056
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2057
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2058
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2059
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2060
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2061
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2062
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2063
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2064
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2065
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2066
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2067
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2068
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2069
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2070
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2071
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2072
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2073
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2074
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2075
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2076
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2077
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2078
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2079
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2080
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2081
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2082
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2083
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2084
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2085
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2086
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2087
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2088
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2089
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2090
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2091
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2092
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2093
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2094
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2095
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2096
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2097
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2098
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2099
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2100
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2101
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2102
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2103
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2104
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2105
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2106
+ \"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
2107
+ 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
2108
+ 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
2109
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2110
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2111
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2112
+ 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
2113
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
2114
+ recorded_at: Sat, 17 Oct 2020 04:39:49 GMT
2115
+ - request:
2116
+ method: post
2117
+ uri: https://api.justyy.com/
2118
+ body:
2119
+ encoding: UTF-8
2120
+ string: '{"jsonrpc":"2.0","id":53,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2121
+ headers:
2122
+ Content-Type:
2123
+ - application/json; charset=utf-8
2124
+ User-Agent:
2125
+ - steem-ruby/0.9.4
2126
+ Accept-Encoding:
2127
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2128
+ Accept:
2129
+ - "*/*"
2130
+ Host:
2131
+ - api.steemitdev.com
2132
+ Content-Length:
2133
+ - '93'
2134
+ response:
2135
+ status:
2136
+ code: 200
2137
+ message: OK
2138
+ headers:
2139
+ Server:
2140
+ - nginx/1.14.0 (Ubuntu)
2141
+ Date:
2142
+ - Sat, 17 Oct 2020 04:39:49 GMT
2143
+ Content-Type:
2144
+ - application/json
2145
+ Content-Length:
2146
+ - '17993'
2147
+ Connection:
2148
+ - keep-alive
2149
+ X-Jussi-Cache-Hit:
2150
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
2151
+ X-Jussi-Request-Id:
2152
+ - '001055508815053168'
2153
+ X-Amzn-Trace-Id:
2154
+ - ''
2155
+ Access-Control-Allow-Origin:
2156
+ - "*"
2157
+ Access-Control-Allow-Methods:
2158
+ - GET, POST, OPTIONS
2159
+ Access-Control-Allow-Headers:
2160
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2161
+ Strict-Transport-Security:
2162
+ - max-age=31557600; includeSubDomains; preload
2163
+ Content-Security-Policy:
2164
+ - upgrade-insecure-requests
2165
+ body:
2166
+ encoding: UTF-8
2167
+ string: '{"id":53,"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\":
2168
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2169
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2170
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2171
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2172
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2173
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2174
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2175
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2176
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2177
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2178
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2179
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2180
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2181
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2182
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2183
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2184
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2185
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2186
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2187
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2188
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2189
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2190
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2191
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2192
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2193
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2194
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2195
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2196
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2197
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2198
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2199
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2200
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2201
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2202
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2203
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2204
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2205
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2206
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2207
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2208
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2209
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2210
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2211
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2212
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2213
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2214
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2215
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2216
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2217
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2218
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2219
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2220
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2221
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2222
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2223
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2224
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2225
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2226
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2227
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2228
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2229
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2230
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2231
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2232
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2233
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2234
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2235
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2236
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2237
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2238
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2239
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2240
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2241
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2242
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2243
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2244
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2245
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2246
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2247
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2248
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2249
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2250
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2251
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2252
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2253
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2254
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2255
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2256
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2257
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2258
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2259
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2260
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2261
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2262
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2263
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2264
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2265
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2266
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2267
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2268
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2269
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2270
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2271
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2272
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2273
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2274
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2275
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2276
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2277
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2278
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2279
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2280
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2281
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2282
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2283
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2284
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2285
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2286
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2287
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2288
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2289
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2290
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2291
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2292
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2293
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2294
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2295
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2296
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2297
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2298
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2299
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2300
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2301
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2302
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2303
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2304
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2305
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2306
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2307
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2308
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2309
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2310
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2311
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2312
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2313
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2314
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2315
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2316
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2317
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2318
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2319
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2320
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2321
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2322
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2323
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2324
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2325
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2326
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2327
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2328
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2329
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2330
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2331
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2332
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2333
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2334
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2335
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2336
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2337
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2338
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2339
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2340
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2341
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2342
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2343
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2344
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2345
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2346
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2347
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2348
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2349
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2350
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2351
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2352
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2353
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2354
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2355
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2356
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2357
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2358
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2359
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2360
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2361
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2362
+ \"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
2363
+ 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
2364
+ 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
2365
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2366
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2367
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2368
+ 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
2369
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
2370
+ recorded_at: Sat, 17 Oct 2020 04:39:50 GMT
2371
+ - request:
2372
+ method: post
2373
+ uri: https://api.justyy.com/
2374
+ body:
2375
+ encoding: UTF-8
2376
+ string: '{"jsonrpc":"2.0","id":39,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2377
+ headers:
2378
+ Content-Type:
2379
+ - application/json; charset=utf-8
2380
+ User-Agent:
2381
+ - steem-ruby/0.9.4
2382
+ Accept-Encoding:
2383
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2384
+ Accept:
2385
+ - "*/*"
2386
+ Host:
2387
+ - api.steemitdev.com
2388
+ Content-Length:
2389
+ - '93'
2390
+ response:
2391
+ status:
2392
+ code: 200
2393
+ message: OK
2394
+ headers:
2395
+ Server:
2396
+ - nginx/1.14.0 (Ubuntu)
2397
+ Date:
2398
+ - Sat, 17 Oct 2020 04:56:19 GMT
2399
+ Content-Type:
2400
+ - application/json
2401
+ Content-Length:
2402
+ - '17993'
2403
+ Connection:
2404
+ - keep-alive
2405
+ X-Jussi-Request-Id:
2406
+ - '000070609491903431'
2407
+ X-Amzn-Trace-Id:
2408
+ - ''
2409
+ Access-Control-Allow-Origin:
2410
+ - "*"
2411
+ Access-Control-Allow-Methods:
2412
+ - GET, POST, OPTIONS
2413
+ Access-Control-Allow-Headers:
2414
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2415
+ Strict-Transport-Security:
2416
+ - max-age=31557600; includeSubDomains; preload
2417
+ Content-Security-Policy:
2418
+ - upgrade-insecure-requests
2419
+ body:
2420
+ encoding: UTF-8
2421
+ 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\":
2422
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2423
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2424
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2425
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2426
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2427
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2428
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2429
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2430
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2431
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2432
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2433
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2434
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2435
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2436
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2437
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2438
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2439
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2440
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2441
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2442
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2443
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2444
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2445
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2446
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2447
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2448
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2449
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2450
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2451
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2452
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2453
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2454
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2455
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2456
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2457
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2458
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2459
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2460
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2461
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2462
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2463
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2464
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2465
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2466
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2467
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2468
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2469
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2470
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2471
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2472
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2473
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2474
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2475
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2476
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2477
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2478
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2479
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2480
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2481
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2482
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2483
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2484
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2485
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2486
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2487
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2488
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2489
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2490
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2491
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2492
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2493
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2494
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2495
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2496
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2497
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2498
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2499
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2500
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2501
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2502
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2503
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2504
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2505
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2506
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2507
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2508
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2509
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2510
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2511
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2512
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2513
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2514
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2515
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2516
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2517
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2518
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2519
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2520
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2521
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2522
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2523
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2524
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2525
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2526
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2527
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2528
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2529
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2530
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2531
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2532
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2533
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2534
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2535
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2536
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2537
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2538
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2539
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2540
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2541
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2542
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2543
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2544
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2545
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2546
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2547
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2548
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2549
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2550
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2551
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2552
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2553
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2554
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2555
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2556
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2557
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2558
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2559
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2560
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2561
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2562
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2563
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2564
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2565
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2566
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2567
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2568
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2569
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2570
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2571
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2572
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2573
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2574
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2575
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2576
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2577
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2578
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2579
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2580
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2581
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2582
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2583
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2584
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2585
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2586
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2587
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2588
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2589
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2590
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2591
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2592
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2593
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2594
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2595
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2596
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2597
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2598
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2599
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2600
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2601
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2602
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2603
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2604
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2605
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2606
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2607
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2608
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2609
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2610
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2611
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2612
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2613
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2614
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2615
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2616
+ \"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
2617
+ 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
2618
+ 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
2619
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2620
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2621
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2622
+ 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
2623
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":39}'
2624
+ recorded_at: Sat, 17 Oct 2020 04:56:19 GMT
2625
+ - request:
2626
+ method: post
2627
+ uri: https://api.justyy.com/
2628
+ body:
2629
+ encoding: UTF-8
2630
+ string: '{"jsonrpc":"2.0","id":6,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2631
+ headers:
2632
+ Content-Type:
2633
+ - application/json; charset=utf-8
2634
+ User-Agent:
2635
+ - steem-ruby/0.9.4
2636
+ Accept-Encoding:
2637
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2638
+ Accept:
2639
+ - "*/*"
2640
+ Host:
2641
+ - api.steemit.com
2642
+ Content-Length:
2643
+ - '92'
2644
+ response:
2645
+ status:
2646
+ code: 200
2647
+ message: OK
2648
+ headers:
2649
+ Server:
2650
+ - nginx/1.14.0 (Ubuntu)
2651
+ Date:
2652
+ - Sat, 17 Oct 2020 05:02:53 GMT
2653
+ Content-Type:
2654
+ - application/json
2655
+ Content-Length:
2656
+ - '17992'
2657
+ Connection:
2658
+ - keep-alive
2659
+ X-Jussi-Cache-Hit:
2660
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
2661
+ X-Jussi-Request-Id:
2662
+ - '000701319317145070'
2663
+ X-Amzn-Trace-Id:
2664
+ - ''
2665
+ Access-Control-Allow-Origin:
2666
+ - "*"
2667
+ Access-Control-Allow-Methods:
2668
+ - GET, POST, OPTIONS
2669
+ Access-Control-Allow-Headers:
2670
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2671
+ Strict-Transport-Security:
2672
+ - max-age=31557600; includeSubDomains; preload
2673
+ Content-Security-Policy:
2674
+ - upgrade-insecure-requests
2675
+ body:
2676
+ encoding: UTF-8
2677
+ string: '{"id":6,"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\":
2678
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2679
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2680
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2681
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2682
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2683
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2684
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2685
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2686
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2687
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2688
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2689
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2690
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2691
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2692
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2693
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2694
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2695
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2696
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2697
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2698
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2699
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2700
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2701
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2702
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2703
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2704
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2705
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2706
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2707
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2708
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2709
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2710
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2711
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2712
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2713
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2714
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2715
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2716
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2717
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2718
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2719
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2720
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2721
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2722
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2723
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2724
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2725
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2726
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2727
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2728
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2729
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2730
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2731
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2732
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2733
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2734
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2735
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2736
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2737
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2738
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2739
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2740
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2741
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2742
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2743
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2744
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2745
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2746
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2747
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2748
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2749
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2750
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2751
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2752
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2753
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2754
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2755
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2756
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2757
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2758
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2759
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2760
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2761
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2762
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2763
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2764
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2765
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2766
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2767
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2768
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2769
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2770
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2771
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2772
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2773
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2774
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2775
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2776
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2777
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2778
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2779
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2780
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2781
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2782
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2783
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2784
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2785
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2786
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2787
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2788
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2789
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2790
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2791
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2792
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2793
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2794
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2795
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2796
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2797
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2798
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2799
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2800
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2801
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2802
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2803
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2804
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2805
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2806
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2807
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2808
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2809
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2810
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2811
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2812
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2813
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2814
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2815
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2816
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2817
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2818
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2819
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2820
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2821
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2822
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2823
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2824
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2825
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2826
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2827
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2828
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2829
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2830
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2831
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2832
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2833
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2834
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2835
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2836
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2837
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2838
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2839
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2840
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2841
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2842
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2843
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2844
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2845
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2846
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2847
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2848
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2849
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2850
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2851
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2852
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2853
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2854
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2855
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2856
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2857
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2858
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2859
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2860
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2861
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2862
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2863
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2864
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2865
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2866
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2867
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2868
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2869
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2870
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2871
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2872
+ \"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
2873
+ 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
2874
+ 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
2875
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2876
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2877
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2878
+ 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
2879
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
2880
+ recorded_at: Sat, 17 Oct 2020 05:02:53 GMT
2881
+ - request:
2882
+ method: post
2883
+ uri: https://steem.bts.tw/
2884
+ body:
2885
+ encoding: UTF-8
2886
+ string: '{"jsonrpc":"2.0","id":7,"method":"jsonrpc.get_methods","params":{}}'
2887
+ headers:
2888
+ Content-Type:
2889
+ - application/json; charset=utf-8
2890
+ User-Agent:
2891
+ - steem-ruby/0.9.4
2892
+ Accept-Encoding:
2893
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2894
+ Accept:
2895
+ - "*/*"
2896
+ Host:
2897
+ - api.steemit.com
2898
+ Content-Length:
2899
+ - '92'
2900
+ response:
2901
+ status:
2902
+ code: 403
2903
+ message: Forbidden
2904
+ headers:
2905
+ Server:
2906
+ - cloudflare
2907
+ Date:
2908
+ - Sat, 17 Oct 2020 05:02:53 GMT
2909
+ Content-Type:
2910
+ - text/html
2911
+ Content-Length:
2912
+ - '151'
2913
+ Connection:
2914
+ - keep-alive
2915
+ Cf-Ray:
2916
+ - 5e3778518a66023f-SJC
2917
+ body:
2918
+ encoding: UTF-8
2919
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
2920
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
2921
+ recorded_at: Sat, 17 Oct 2020 05:02:53 GMT
2922
+ - request:
2923
+ method: post
2924
+ uri: https://api.steemit.com/
2925
+ body:
2926
+ encoding: UTF-8
2927
+ string: '{"jsonrpc":"2.0","id":8,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2928
+ headers:
2929
+ Content-Type:
2930
+ - application/json; charset=utf-8
2931
+ User-Agent:
2932
+ - steem-ruby/0.9.4
2933
+ Accept-Encoding:
2934
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2935
+ Accept:
2936
+ - "*/*"
2937
+ Host:
2938
+ - api.steemit.com
2939
+ Content-Length:
2940
+ - '67'
2941
+ response:
2942
+ status:
2943
+ code: 200
2944
+ message: OK
2945
+ headers:
2946
+ Date:
2947
+ - Sat, 17 Oct 2020 05:02:54 GMT
2948
+ Content-Type:
2949
+ - application/json
2950
+ Transfer-Encoding:
2951
+ - chunked
2952
+ Connection:
2953
+ - keep-alive
2954
+ Server:
2955
+ - nginx
2956
+ X-Jussi-Request-Id:
2957
+ - '000378821048322454'
2958
+ X-Amzn-Trace-Id:
2959
+ - Root=1-5f8a7afe-1050a70527bc79c426af6b3d
2960
+ Access-Control-Allow-Origin:
2961
+ - "*"
2962
+ Access-Control-Allow-Methods:
2963
+ - GET, POST, OPTIONS
2964
+ Access-Control-Allow-Headers:
2965
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2966
+ Strict-Transport-Security:
2967
+ - max-age=31557600; includeSubDomains; preload
2968
+ Content-Security-Policy:
2969
+ - upgrade-insecure-requests
2970
+ body:
2971
+ encoding: ASCII-8BIT
2972
+ 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\":
2973
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2974
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2975
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2976
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2977
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2978
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2979
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2980
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2981
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2982
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2983
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2984
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2985
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2986
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2987
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2988
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2989
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2990
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2991
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2992
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2993
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2994
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2995
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2996
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2997
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2998
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2999
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
3000
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
3001
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
3002
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
3003
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
3004
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
3005
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
3006
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
3007
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
3008
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
3009
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
3010
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
3011
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
3012
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
3013
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
3014
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
3015
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
3016
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
3017
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
3018
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
3019
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
3020
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
3021
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
3022
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
3023
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
3024
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
3025
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
3026
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
3027
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
3028
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
3029
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
3030
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
3031
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
3032
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
3033
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
3034
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
3035
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
3036
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
3037
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
3038
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3039
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
3040
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
3041
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
3042
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
3043
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
3044
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
3045
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
3046
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
3047
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3048
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
3049
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
3050
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
3051
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
3052
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
3053
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
3054
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3055
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
3056
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
3057
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
3058
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
3059
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
3060
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
3061
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3062
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
3063
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
3064
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
3065
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
3066
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
3067
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
3068
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
3069
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
3070
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
3071
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3072
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3073
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3074
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
3075
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
3076
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
3077
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
3078
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
3079
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
3080
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
3081
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
3082
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
3083
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
3084
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
3085
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
3086
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
3087
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
3088
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
3089
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
3090
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
3091
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
3092
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
3093
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
3094
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
3095
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
3096
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
3097
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3098
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
3099
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
3100
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
3101
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
3102
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
3103
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
3104
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
3105
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
3106
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
3107
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
3108
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3109
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
3110
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
3111
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3112
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
3113
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
3114
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
3115
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
3116
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
3117
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
3118
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
3119
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
3120
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
3121
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
3122
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
3123
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
3124
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
3125
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
3126
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
3127
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
3128
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
3129
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
3130
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3131
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
3132
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
3133
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
3134
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
3135
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
3136
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
3137
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
3138
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
3139
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
3140
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
3141
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
3142
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
3143
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
3144
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
3145
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
3146
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
3147
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
3148
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
3149
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
3150
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
3151
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
3152
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
3153
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
3154
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
3155
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3156
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
3157
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3158
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
3159
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
3160
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
3161
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
3162
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
3163
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
3164
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
3165
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
3166
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3167
+ \"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
3168
+ 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
3169
+ 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
3170
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
3171
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
3172
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
3173
+ 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
3174
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":8}'
3175
+ recorded_at: Sat, 17 Oct 2020 05:02:54 GMT
3176
+ recorded_with: VCR 6.0.0