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,3681 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.steemit.com/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"jsonrpc":"2.0","id":91,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
9
+ headers:
10
+ Content-Type:
11
+ - application/json; charset=utf-8
12
+ User-Agent:
13
+ - steem-ruby/0.9.4
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - "*/*"
18
+ Host:
19
+ - api.steemit.com
20
+ Content-Length:
21
+ - '98'
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Sat, 17 Oct 2020 04:08:05 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Transfer-Encoding:
32
+ - chunked
33
+ Connection:
34
+ - keep-alive
35
+ Server:
36
+ - nginx
37
+ X-Jussi-Cache-Hit:
38
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
39
+ X-Jussi-Request-Id:
40
+ - '000385188691788953'
41
+ X-Amzn-Trace-Id:
42
+ - Root=1-5f8a6e25-662f5062586a3c7a1906ff81
43
+ Access-Control-Allow-Origin:
44
+ - "*"
45
+ Access-Control-Allow-Methods:
46
+ - GET, POST, OPTIONS
47
+ Access-Control-Allow-Headers:
48
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
49
+ Strict-Transport-Security:
50
+ - max-age=31557600; includeSubDomains; preload
51
+ Content-Security-Policy:
52
+ - upgrade-insecure-requests
53
+ body:
54
+ encoding: ASCII-8BIT
55
+ string: '{"id":91,"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
56
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
57
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
58
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
59
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
60
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
61
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
62
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
63
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
64
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
65
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
66
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
67
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
68
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
69
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
70
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
71
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
72
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
73
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
74
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
75
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
76
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
77
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
78
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
79
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
80
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
81
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
82
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
83
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
84
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
85
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
86
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
87
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
88
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
89
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
90
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
91
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
92
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
93
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
94
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
95
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
96
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
97
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
98
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
99
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
100
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
101
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
102
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
103
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
104
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
105
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
106
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
107
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
108
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
109
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
110
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
111
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
112
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
113
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
114
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
115
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
116
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
117
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
118
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
119
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
120
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
121
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
122
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
123
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
124
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
125
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
126
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
127
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
128
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
129
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
130
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
131
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
132
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
133
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
134
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
135
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
136
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
137
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
138
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
139
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
140
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
141
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
142
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
143
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
144
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
145
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
146
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
147
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
148
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
149
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
150
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
151
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
152
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
153
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
154
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
155
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
156
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
157
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
158
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
159
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
160
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
161
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
162
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
163
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
164
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
165
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
166
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
167
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
168
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
169
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
170
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
171
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
172
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
173
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
174
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
175
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
176
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
177
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
178
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
179
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
180
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
181
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
182
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
183
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
184
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
185
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
186
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
187
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
188
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
189
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
190
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
191
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
192
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
193
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
194
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
195
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
196
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
197
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
198
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
199
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
200
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
201
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
202
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
203
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
204
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
205
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
206
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
207
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
208
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
209
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
210
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
211
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
212
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
213
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
214
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
215
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
216
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
217
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
218
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
219
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
220
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
221
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
222
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
223
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
224
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
225
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
226
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
227
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
228
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
229
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
230
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
231
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
232
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
233
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
234
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
235
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
236
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
237
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
238
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
239
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
240
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
241
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
242
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
243
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
244
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
245
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
246
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
247
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
248
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
249
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
250
+ \"head_delay\"]}}}}","proxy":"holger80","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2020-10-17T03:21:09","created":"2018-05-31T10:46:21","mined":false,"recovery_account":"holger80","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":687,"can_vote":true,"voting_manabar":{"current_mana":"45117490512","last_update_time":1594520553},"downvote_manabar":{"current_mana":"11509563906","last_update_time":1594520553},"voting_power":9799,"balance":"0.000
251
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.000 SBD","sbd_seconds":"61744776","sbd_seconds_last_update":"2020-06-18T05:40:09","sbd_last_interest_payment":"2020-05-27T14:51:18","savings_sbd_balance":"0.000
252
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
253
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
254
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
255
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
256
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"913432674868","to_withdraw":"913432674868","withdraw_routes":0,"curation_rewards":4100,"posting_rewards":1149926,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":0,"last_post":"2020-06-02T20:30:45","last_root_post":"2020-06-02T20:30:45","last_vote_time":"2020-07-12T02:22:33","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000
257
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
258
+ recorded_at: Sat, 17 Oct 2020 04:08:05 GMT
259
+ - request:
260
+ method: post
261
+ uri: https://api.steemit.com/
262
+ body:
263
+ encoding: UTF-8
264
+ string: '{"jsonrpc":"2.0","id":92,"method":"condenser_api.get_accounts","params":[["ned"]]}'
265
+ headers:
266
+ Content-Type:
267
+ - application/json; charset=utf-8
268
+ User-Agent:
269
+ - steem-ruby/0.9.4
270
+ Accept-Encoding:
271
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
272
+ Accept:
273
+ - "*/*"
274
+ Host:
275
+ - api.steemit.com
276
+ Content-Length:
277
+ - '93'
278
+ response:
279
+ status:
280
+ code: 200
281
+ message: OK
282
+ headers:
283
+ Date:
284
+ - Sat, 17 Oct 2020 04:08:05 GMT
285
+ Content-Type:
286
+ - application/json
287
+ Transfer-Encoding:
288
+ - chunked
289
+ Connection:
290
+ - keep-alive
291
+ Server:
292
+ - nginx
293
+ X-Jussi-Request-Id:
294
+ - '000402184106510219'
295
+ X-Amzn-Trace-Id:
296
+ - Root=1-5f8a6e25-0581fcaa6b0e4414465245ed
297
+ Access-Control-Allow-Origin:
298
+ - "*"
299
+ Access-Control-Allow-Methods:
300
+ - GET, POST, OPTIONS
301
+ Access-Control-Allow-Headers:
302
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
303
+ Strict-Transport-Security:
304
+ - max-age=31557600; includeSubDomains; preload
305
+ Content-Security-Policy:
306
+ - upgrade-insecure-requests
307
+ body:
308
+ encoding: ASCII-8BIT
309
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
310
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
311
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
312
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
313
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
314
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
315
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
316
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
317
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
318
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":92}'
319
+ recorded_at: Sat, 17 Oct 2020 04:08:05 GMT
320
+ - request:
321
+ method: post
322
+ uri: https://api.steemit.com/
323
+ body:
324
+ encoding: UTF-8
325
+ string: '{"jsonrpc":"2.0","id":37,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
326
+ headers:
327
+ Content-Type:
328
+ - application/json; charset=utf-8
329
+ User-Agent:
330
+ - steem-ruby/0.9.4
331
+ Accept-Encoding:
332
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
333
+ Accept:
334
+ - "*/*"
335
+ Host:
336
+ - api.steemit.com
337
+ Content-Length:
338
+ - '98'
339
+ response:
340
+ status:
341
+ code: 200
342
+ message: OK
343
+ headers:
344
+ Date:
345
+ - Sat, 17 Oct 2020 04:09:03 GMT
346
+ Content-Type:
347
+ - application/json
348
+ Transfer-Encoding:
349
+ - chunked
350
+ Connection:
351
+ - keep-alive
352
+ Server:
353
+ - nginx
354
+ X-Jussi-Request-Id:
355
+ - '001072349205537605'
356
+ X-Amzn-Trace-Id:
357
+ - Root=1-5f8a6e5f-5e57624e596b7f113b4eca2b
358
+ Access-Control-Allow-Origin:
359
+ - "*"
360
+ Access-Control-Allow-Methods:
361
+ - GET, POST, OPTIONS
362
+ Access-Control-Allow-Headers:
363
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
364
+ Strict-Transport-Security:
365
+ - max-age=31557600; includeSubDomains; preload
366
+ Content-Security-Policy:
367
+ - upgrade-insecure-requests
368
+ body:
369
+ encoding: ASCII-8BIT
370
+ 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\":
371
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
372
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
373
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
374
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
375
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
376
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
377
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
378
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
379
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
380
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
381
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
382
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
383
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
384
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
385
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
386
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
387
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
388
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
389
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
390
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
391
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
392
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
393
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
394
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
395
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
396
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
397
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
398
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
399
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
400
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
401
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
402
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
403
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
404
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
405
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
406
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
407
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
408
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
409
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
410
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
411
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
412
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
413
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
414
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
415
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
416
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
417
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
418
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
419
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
420
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
421
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
422
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
423
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
424
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
425
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
426
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
427
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
428
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
429
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
430
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
431
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
432
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
433
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
434
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
435
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
436
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
437
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
438
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
439
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
440
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
441
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
442
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
443
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
444
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
445
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
446
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
447
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
448
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
449
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
450
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
451
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
452
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
453
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
454
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
455
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
456
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
457
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
458
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
459
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
460
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
461
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
462
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
463
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
464
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
465
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
466
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
467
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
468
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
469
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
470
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
471
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
472
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
473
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
474
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
475
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
476
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
477
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
478
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
479
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
480
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
481
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
482
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
483
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
484
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
485
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
486
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
487
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
488
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
489
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
490
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
491
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
492
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
493
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
494
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
495
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
496
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
497
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
498
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
499
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
500
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
501
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
502
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
503
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
504
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
505
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
506
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
507
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
508
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
509
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
510
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
511
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
512
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
513
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
514
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
515
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
516
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
517
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
518
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
519
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
520
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
521
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
522
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
523
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
524
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
525
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
526
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
527
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
528
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
529
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
530
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
531
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
532
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
533
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
534
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
535
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
536
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
537
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
538
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
539
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
540
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
541
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
542
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
543
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
544
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
545
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
546
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
547
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
548
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
549
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
550
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
551
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
552
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
553
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
554
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
555
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
556
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
557
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
558
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
559
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
560
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
561
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
562
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
563
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
564
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
565
+ \"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
566
+ 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
567
+ 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
568
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
569
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
570
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
571
+ 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
572
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":37}'
573
+ recorded_at: Sat, 17 Oct 2020 04:09:03 GMT
574
+ - request:
575
+ method: post
576
+ uri: https://api.steemit.com/
577
+ body:
578
+ encoding: UTF-8
579
+ string: '{"jsonrpc":"2.0","id":38,"method":"condenser_api.get_accounts","params":[["ned"]]}'
580
+ headers:
581
+ Content-Type:
582
+ - application/json; charset=utf-8
583
+ User-Agent:
584
+ - steem-ruby/0.9.4
585
+ Accept-Encoding:
586
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
587
+ Accept:
588
+ - "*/*"
589
+ Host:
590
+ - api.steemit.com
591
+ Content-Length:
592
+ - '93'
593
+ response:
594
+ status:
595
+ code: 200
596
+ message: OK
597
+ headers:
598
+ Date:
599
+ - Sat, 17 Oct 2020 04:09:04 GMT
600
+ Content-Type:
601
+ - application/json
602
+ Transfer-Encoding:
603
+ - chunked
604
+ Connection:
605
+ - keep-alive
606
+ Server:
607
+ - nginx
608
+ X-Jussi-Request-Id:
609
+ - '000333181562585746'
610
+ X-Amzn-Trace-Id:
611
+ - Root=1-5f8a6e60-21fe99f8620355b22116d496
612
+ Access-Control-Allow-Origin:
613
+ - "*"
614
+ Access-Control-Allow-Methods:
615
+ - GET, POST, OPTIONS
616
+ Access-Control-Allow-Headers:
617
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
618
+ Strict-Transport-Security:
619
+ - max-age=31557600; includeSubDomains; preload
620
+ Content-Security-Policy:
621
+ - upgrade-insecure-requests
622
+ body:
623
+ encoding: ASCII-8BIT
624
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
625
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
626
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
627
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
628
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
629
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
630
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
631
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
632
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
633
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":38}'
634
+ recorded_at: Sat, 17 Oct 2020 04:09:04 GMT
635
+ - request:
636
+ method: post
637
+ uri: https://steemd.minnowsupportproject.org/
638
+ body:
639
+ encoding: UTF-8
640
+ string: '{"jsonrpc":"2.0","id":81,"method":"jsonrpc.get_methods","params":{}}'
641
+ headers:
642
+ Content-Type:
643
+ - application/json; charset=utf-8
644
+ User-Agent:
645
+ - steem-ruby/0.9.4
646
+ Accept-Encoding:
647
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
648
+ Accept:
649
+ - "*/*"
650
+ Host:
651
+ - api.steemit.com
652
+ Content-Length:
653
+ - '98'
654
+ response:
655
+ status:
656
+ code: 502
657
+ message: Bad Gateway
658
+ headers:
659
+ Server:
660
+ - nginx/1.17.1
661
+ Date:
662
+ - Sat, 17 Oct 2020 04:13:42 GMT
663
+ Content-Type:
664
+ - text/html
665
+ Content-Length:
666
+ - '157'
667
+ Connection:
668
+ - keep-alive
669
+ body:
670
+ encoding: UTF-8
671
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
672
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
673
+ recorded_at: Sat, 17 Oct 2020 04:13:42 GMT
674
+ - request:
675
+ method: post
676
+ uri: https://api.steemit.com/
677
+ body:
678
+ encoding: UTF-8
679
+ string: '{"jsonrpc":"2.0","id":82,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
680
+ headers:
681
+ Content-Type:
682
+ - application/json; charset=utf-8
683
+ User-Agent:
684
+ - steem-ruby/0.9.4
685
+ Accept-Encoding:
686
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
687
+ Accept:
688
+ - "*/*"
689
+ Host:
690
+ - api.steemit.com
691
+ Content-Length:
692
+ - '68'
693
+ response:
694
+ status:
695
+ code: 200
696
+ message: OK
697
+ headers:
698
+ Date:
699
+ - Sat, 17 Oct 2020 04:13:43 GMT
700
+ Content-Type:
701
+ - application/json
702
+ Transfer-Encoding:
703
+ - chunked
704
+ Connection:
705
+ - keep-alive
706
+ Server:
707
+ - nginx
708
+ X-Jussi-Request-Id:
709
+ - '000452353875838688'
710
+ X-Amzn-Trace-Id:
711
+ - Root=1-5f8a6f77-19f9c4b378d176a14548db80
712
+ Access-Control-Allow-Origin:
713
+ - "*"
714
+ Access-Control-Allow-Methods:
715
+ - GET, POST, OPTIONS
716
+ Access-Control-Allow-Headers:
717
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
718
+ Strict-Transport-Security:
719
+ - max-age=31557600; includeSubDomains; preload
720
+ Content-Security-Policy:
721
+ - upgrade-insecure-requests
722
+ body:
723
+ encoding: ASCII-8BIT
724
+ 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\":
725
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
726
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
727
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
728
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
729
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
730
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
731
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
732
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
733
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
734
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
735
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
736
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
737
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
738
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
739
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
740
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
741
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
742
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
743
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
744
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
745
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
746
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
747
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
748
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
749
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
750
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
751
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
752
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
753
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
754
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
755
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
756
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
757
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
758
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
759
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
760
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
761
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
762
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
763
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
764
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
765
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
766
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
767
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
768
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
769
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
770
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
771
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
772
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
773
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
774
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
775
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
776
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
777
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
778
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
779
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
780
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
781
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
782
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
783
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
784
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
785
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
786
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
787
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
788
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
789
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
790
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
791
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
792
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
793
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
794
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
795
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
796
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
797
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
798
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
799
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
800
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
801
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
802
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
803
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
804
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
805
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
806
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
807
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
808
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
809
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
810
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
811
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
812
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
813
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
814
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
815
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
816
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
817
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
818
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
819
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
820
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
821
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
822
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
823
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
824
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
825
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
826
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
827
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
828
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
829
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
830
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
831
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
832
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
833
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
834
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
835
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
836
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
837
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
838
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
839
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
840
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
841
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
842
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
843
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
844
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
845
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
846
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
847
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
848
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
849
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
850
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
851
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
852
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
853
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
854
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
855
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
856
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
857
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
858
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
859
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
860
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
861
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
862
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
863
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
864
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
865
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
866
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
867
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
868
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
869
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
870
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
871
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
872
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
873
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
874
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
875
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
876
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
877
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
878
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
879
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
880
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
881
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
882
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
883
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
884
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
885
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
886
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
887
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
888
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
889
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
890
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
891
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
892
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
893
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
894
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
895
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
896
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
897
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
898
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
899
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
900
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
901
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
902
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
903
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
904
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
905
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
906
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
907
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
908
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
909
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
910
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
911
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
912
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
913
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
914
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
915
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
916
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
917
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
918
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
919
+ \"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
920
+ 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
921
+ 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
922
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
923
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
924
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
925
+ 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
926
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":82}'
927
+ recorded_at: Sat, 17 Oct 2020 04:13:43 GMT
928
+ - request:
929
+ method: post
930
+ uri: https://api.steemit.com/
931
+ body:
932
+ encoding: UTF-8
933
+ string: '{"jsonrpc":"2.0","id":83,"method":"condenser_api.get_accounts","params":[["ned"]]}'
934
+ headers:
935
+ Content-Type:
936
+ - application/json; charset=utf-8
937
+ User-Agent:
938
+ - steem-ruby/0.9.4
939
+ Accept-Encoding:
940
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
941
+ Accept:
942
+ - "*/*"
943
+ Host:
944
+ - api.steemit.com
945
+ Content-Length:
946
+ - '93'
947
+ response:
948
+ status:
949
+ code: 200
950
+ message: OK
951
+ headers:
952
+ Date:
953
+ - Sat, 17 Oct 2020 04:13:43 GMT
954
+ Content-Type:
955
+ - application/json
956
+ Transfer-Encoding:
957
+ - chunked
958
+ Connection:
959
+ - keep-alive
960
+ Server:
961
+ - nginx
962
+ X-Jussi-Request-Id:
963
+ - '000154916628780970'
964
+ X-Amzn-Trace-Id:
965
+ - Root=1-5f8a6f77-47822c277358c8ef3854d6a5
966
+ Access-Control-Allow-Origin:
967
+ - "*"
968
+ Access-Control-Allow-Methods:
969
+ - GET, POST, OPTIONS
970
+ Access-Control-Allow-Headers:
971
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
972
+ Strict-Transport-Security:
973
+ - max-age=31557600; includeSubDomains; preload
974
+ Content-Security-Policy:
975
+ - upgrade-insecure-requests
976
+ body:
977
+ encoding: ASCII-8BIT
978
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
979
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
980
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
981
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
982
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
983
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
984
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
985
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
986
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
987
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":83}'
988
+ recorded_at: Sat, 17 Oct 2020 04:13:43 GMT
989
+ - request:
990
+ method: post
991
+ uri: https://steemd.minnowsupportproject.org/
992
+ body:
993
+ encoding: UTF-8
994
+ string: '{"jsonrpc":"2.0","id":111,"method":"jsonrpc.get_methods","params":{}}'
995
+ headers:
996
+ Content-Type:
997
+ - application/json; charset=utf-8
998
+ User-Agent:
999
+ - steem-ruby/0.9.4
1000
+ Accept-Encoding:
1001
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1002
+ Accept:
1003
+ - "*/*"
1004
+ Host:
1005
+ - api.steemit.com
1006
+ Content-Length:
1007
+ - '93'
1008
+ response:
1009
+ status:
1010
+ code: 502
1011
+ message: Bad Gateway
1012
+ headers:
1013
+ Server:
1014
+ - nginx/1.17.1
1015
+ Date:
1016
+ - Sat, 17 Oct 2020 04:14:45 GMT
1017
+ Content-Type:
1018
+ - text/html
1019
+ Content-Length:
1020
+ - '157'
1021
+ Connection:
1022
+ - keep-alive
1023
+ body:
1024
+ encoding: UTF-8
1025
+ string: "<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502
1026
+ Bad Gateway</h1></center>\r\n<hr><center>nginx/1.17.1</center>\r\n</body>\r\n</html>\r\n"
1027
+ recorded_at: Sat, 17 Oct 2020 04:14:45 GMT
1028
+ - request:
1029
+ method: post
1030
+ uri: https://api.steemit.com/
1031
+ body:
1032
+ encoding: UTF-8
1033
+ string: '{"jsonrpc":"2.0","id":112,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1034
+ headers:
1035
+ Content-Type:
1036
+ - application/json; charset=utf-8
1037
+ User-Agent:
1038
+ - steem-ruby/0.9.4
1039
+ Accept-Encoding:
1040
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1041
+ Accept:
1042
+ - "*/*"
1043
+ Host:
1044
+ - api.steemit.com
1045
+ Content-Length:
1046
+ - '69'
1047
+ response:
1048
+ status:
1049
+ code: 200
1050
+ message: OK
1051
+ headers:
1052
+ Date:
1053
+ - Sat, 17 Oct 2020 04:14:45 GMT
1054
+ Content-Type:
1055
+ - application/json
1056
+ Transfer-Encoding:
1057
+ - chunked
1058
+ Connection:
1059
+ - keep-alive
1060
+ Server:
1061
+ - nginx
1062
+ X-Jussi-Cache-Hit:
1063
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
1064
+ X-Jussi-Request-Id:
1065
+ - '001004104944738062'
1066
+ X-Amzn-Trace-Id:
1067
+ - Root=1-5f8a6fb5-292e0c3e46ddb4b8726db614
1068
+ Access-Control-Allow-Origin:
1069
+ - "*"
1070
+ Access-Control-Allow-Methods:
1071
+ - GET, POST, OPTIONS
1072
+ Access-Control-Allow-Headers:
1073
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1074
+ Strict-Transport-Security:
1075
+ - max-age=31557600; includeSubDomains; preload
1076
+ Content-Security-Policy:
1077
+ - upgrade-insecure-requests
1078
+ body:
1079
+ encoding: ASCII-8BIT
1080
+ string: '{"id":112,"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\":
1081
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1082
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1083
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1084
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1085
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1086
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1087
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1088
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1089
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1090
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1091
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1092
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1093
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1094
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1095
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1096
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1097
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1098
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1099
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1100
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1101
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1102
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1103
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1104
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1105
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1106
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1107
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1108
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1109
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1110
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1111
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1112
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1113
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1114
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1115
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1116
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1117
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1118
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1119
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1120
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1121
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1122
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1123
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1124
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1125
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1126
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1127
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1128
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1129
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1130
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1131
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1132
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1133
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1134
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1135
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1136
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1137
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1138
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1139
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1140
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1141
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1142
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1143
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1144
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1145
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1146
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1147
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1148
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1149
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1150
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1151
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1152
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1153
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1154
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1155
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1156
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1157
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1158
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1159
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1160
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1161
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1162
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1163
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1164
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1165
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1166
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1167
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1168
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1169
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1170
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1171
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1172
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1173
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1174
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1175
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1176
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1177
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1178
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1179
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1180
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1181
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1182
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1183
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1184
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1185
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1186
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1187
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1188
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1189
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1190
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1191
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1192
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1193
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1194
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1195
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1196
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1197
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1198
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1199
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1200
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1201
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1202
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1203
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1204
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1205
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1206
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1207
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1208
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1209
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1210
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1211
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1212
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1213
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1214
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1215
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1216
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1217
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1218
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1219
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1220
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1221
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1222
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1223
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1224
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1225
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1226
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1227
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1228
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1229
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1230
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1231
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1232
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1233
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1234
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1235
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1236
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1237
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1238
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1239
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1240
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1241
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1242
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1243
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1244
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1245
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1246
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1247
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1248
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1249
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1250
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1251
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1252
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1253
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1254
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1255
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1256
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1257
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1258
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1259
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1260
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1261
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1262
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1263
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1264
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1265
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1266
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1267
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1268
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1269
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1270
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1271
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1272
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1273
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1274
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1275
+ \"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
1276
+ 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
1277
+ 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
1278
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1279
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1280
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1281
+ 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
1282
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
1283
+ recorded_at: Sat, 17 Oct 2020 04:14:45 GMT
1284
+ - request:
1285
+ method: post
1286
+ uri: https://api.steemit.com/
1287
+ body:
1288
+ encoding: UTF-8
1289
+ string: '{"jsonrpc":"2.0","id":113,"method":"condenser_api.get_accounts","params":[["ned"]]}'
1290
+ headers:
1291
+ Content-Type:
1292
+ - application/json; charset=utf-8
1293
+ User-Agent:
1294
+ - steem-ruby/0.9.4
1295
+ Accept-Encoding:
1296
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1297
+ Accept:
1298
+ - "*/*"
1299
+ Host:
1300
+ - api.steemit.com
1301
+ Content-Length:
1302
+ - '94'
1303
+ response:
1304
+ status:
1305
+ code: 200
1306
+ message: OK
1307
+ headers:
1308
+ Date:
1309
+ - Sat, 17 Oct 2020 04:14:46 GMT
1310
+ Content-Type:
1311
+ - application/json
1312
+ Transfer-Encoding:
1313
+ - chunked
1314
+ Connection:
1315
+ - keep-alive
1316
+ Server:
1317
+ - nginx
1318
+ X-Jussi-Request-Id:
1319
+ - '000791765621520444'
1320
+ X-Amzn-Trace-Id:
1321
+ - Root=1-5f8a6fb6-4f6d8f340f07c477511ea36b
1322
+ Access-Control-Allow-Origin:
1323
+ - "*"
1324
+ Access-Control-Allow-Methods:
1325
+ - GET, POST, OPTIONS
1326
+ Access-Control-Allow-Headers:
1327
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1328
+ Strict-Transport-Security:
1329
+ - max-age=31557600; includeSubDomains; preload
1330
+ Content-Security-Policy:
1331
+ - upgrade-insecure-requests
1332
+ body:
1333
+ encoding: ASCII-8BIT
1334
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
1335
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
1336
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
1337
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
1338
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
1339
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
1340
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
1341
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
1342
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
1343
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":113}'
1344
+ recorded_at: Sat, 17 Oct 2020 04:14:46 GMT
1345
+ - request:
1346
+ method: post
1347
+ uri: https://steem.bts.tw/
1348
+ body:
1349
+ encoding: UTF-8
1350
+ string: '{"jsonrpc":"2.0","id":79,"method":"jsonrpc.get_methods","params":{}}'
1351
+ headers:
1352
+ Content-Type:
1353
+ - application/json; charset=utf-8
1354
+ User-Agent:
1355
+ - steem-ruby/0.9.4
1356
+ Accept-Encoding:
1357
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1358
+ Accept:
1359
+ - "*/*"
1360
+ Host:
1361
+ - api.steemit.com
1362
+ Content-Length:
1363
+ - '92'
1364
+ response:
1365
+ status:
1366
+ code: 403
1367
+ message: Forbidden
1368
+ headers:
1369
+ Server:
1370
+ - cloudflare
1371
+ Date:
1372
+ - Sat, 17 Oct 2020 04:18:55 GMT
1373
+ Content-Type:
1374
+ - text/html
1375
+ Content-Length:
1376
+ - '151'
1377
+ Connection:
1378
+ - keep-alive
1379
+ Cf-Ray:
1380
+ - 5e3737ebe84593fa-SJC
1381
+ body:
1382
+ encoding: UTF-8
1383
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
1384
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
1385
+ recorded_at: Sat, 17 Oct 2020 04:18:56 GMT
1386
+ - request:
1387
+ method: post
1388
+ uri: https://api.steemit.com/
1389
+ body:
1390
+ encoding: UTF-8
1391
+ string: '{"jsonrpc":"2.0","id":80,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1392
+ headers:
1393
+ Content-Type:
1394
+ - application/json; charset=utf-8
1395
+ User-Agent:
1396
+ - steem-ruby/0.9.4
1397
+ Accept-Encoding:
1398
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1399
+ Accept:
1400
+ - "*/*"
1401
+ Host:
1402
+ - api.steemit.com
1403
+ Content-Length:
1404
+ - '68'
1405
+ response:
1406
+ status:
1407
+ code: 200
1408
+ message: OK
1409
+ headers:
1410
+ Date:
1411
+ - Sat, 17 Oct 2020 04:18:56 GMT
1412
+ Content-Type:
1413
+ - application/json
1414
+ Transfer-Encoding:
1415
+ - chunked
1416
+ Connection:
1417
+ - keep-alive
1418
+ Server:
1419
+ - nginx
1420
+ X-Jussi-Request-Id:
1421
+ - '000956063563364410'
1422
+ X-Amzn-Trace-Id:
1423
+ - Root=1-5f8a70b0-5a4ff6a86ffeef863cf20283
1424
+ Access-Control-Allow-Origin:
1425
+ - "*"
1426
+ Access-Control-Allow-Methods:
1427
+ - GET, POST, OPTIONS
1428
+ Access-Control-Allow-Headers:
1429
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1430
+ Strict-Transport-Security:
1431
+ - max-age=31557600; includeSubDomains; preload
1432
+ Content-Security-Policy:
1433
+ - upgrade-insecure-requests
1434
+ body:
1435
+ encoding: ASCII-8BIT
1436
+ 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\":
1437
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1438
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1439
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1440
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1441
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1442
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1443
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1444
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1445
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1446
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1447
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1448
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1449
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1450
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1451
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1452
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1453
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1454
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1455
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1456
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1457
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1458
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1459
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1460
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1461
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1462
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1463
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1464
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1465
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1466
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1467
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1468
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1469
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1470
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1471
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1472
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1473
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1474
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1475
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1476
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1477
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1478
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1479
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1480
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1481
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1482
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1483
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1484
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1485
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1486
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1487
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1488
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1489
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1490
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1491
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1492
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1493
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1494
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1495
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1496
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1497
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1498
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1499
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1500
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1501
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1502
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1503
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1504
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1505
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1506
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1507
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1508
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1509
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1510
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1511
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1512
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1513
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1514
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1515
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1516
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1517
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1518
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1519
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1520
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1521
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1522
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1523
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1524
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1525
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1526
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1527
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1528
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1529
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1530
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1531
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1532
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1533
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1534
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1535
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1536
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1537
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1538
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1539
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1540
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1541
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1542
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1543
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1544
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1545
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1546
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1547
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1548
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1549
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1550
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1551
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1552
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1553
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1554
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1555
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1556
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1557
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1558
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1559
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1560
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1561
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1562
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1563
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1564
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1565
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1566
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1567
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1568
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1569
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1570
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1571
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1572
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1573
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1574
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1575
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1576
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1577
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1578
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1579
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1580
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1581
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1582
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1583
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1584
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1585
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1586
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1587
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1588
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1589
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1590
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1591
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1592
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1593
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1594
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1595
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1596
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1597
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1598
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1599
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1600
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1601
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1602
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1603
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1604
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1605
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1606
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1607
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1608
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1609
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1610
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1611
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1612
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1613
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1614
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1615
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1616
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1617
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1618
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1619
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1620
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1621
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1622
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1623
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1624
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1625
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1626
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1627
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1628
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1629
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1630
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1631
+ \"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
1632
+ 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
1633
+ 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
1634
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1635
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1636
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1637
+ 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
1638
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":80}'
1639
+ recorded_at: Sat, 17 Oct 2020 04:18:56 GMT
1640
+ - request:
1641
+ method: post
1642
+ uri: https://api.steemit.com/
1643
+ body:
1644
+ encoding: UTF-8
1645
+ string: '{"jsonrpc":"2.0","id":81,"method":"condenser_api.get_accounts","params":[["ned"]]}'
1646
+ headers:
1647
+ Content-Type:
1648
+ - application/json; charset=utf-8
1649
+ User-Agent:
1650
+ - steem-ruby/0.9.4
1651
+ Accept-Encoding:
1652
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1653
+ Accept:
1654
+ - "*/*"
1655
+ Host:
1656
+ - api.steemit.com
1657
+ Content-Length:
1658
+ - '93'
1659
+ response:
1660
+ status:
1661
+ code: 200
1662
+ message: OK
1663
+ headers:
1664
+ Date:
1665
+ - Sat, 17 Oct 2020 04:18:56 GMT
1666
+ Content-Type:
1667
+ - application/json
1668
+ Transfer-Encoding:
1669
+ - chunked
1670
+ Connection:
1671
+ - keep-alive
1672
+ Server:
1673
+ - nginx
1674
+ X-Jussi-Request-Id:
1675
+ - '001054194389274081'
1676
+ X-Amzn-Trace-Id:
1677
+ - Root=1-5f8a70b0-0b3c785447ad4c00188f21e3
1678
+ Access-Control-Allow-Origin:
1679
+ - "*"
1680
+ Access-Control-Allow-Methods:
1681
+ - GET, POST, OPTIONS
1682
+ Access-Control-Allow-Headers:
1683
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1684
+ Strict-Transport-Security:
1685
+ - max-age=31557600; includeSubDomains; preload
1686
+ Content-Security-Policy:
1687
+ - upgrade-insecure-requests
1688
+ body:
1689
+ encoding: ASCII-8BIT
1690
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
1691
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
1692
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
1693
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
1694
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
1695
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
1696
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
1697
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
1698
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
1699
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":81}'
1700
+ recorded_at: Sat, 17 Oct 2020 04:18:56 GMT
1701
+ - request:
1702
+ method: post
1703
+ uri: https://steem.bts.tw/
1704
+ body:
1705
+ encoding: UTF-8
1706
+ string: '{"jsonrpc":"2.0","id":54,"method":"jsonrpc.get_methods","params":{}}'
1707
+ headers:
1708
+ Content-Type:
1709
+ - application/json; charset=utf-8
1710
+ User-Agent:
1711
+ - steem-ruby/0.9.4
1712
+ Accept-Encoding:
1713
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1714
+ Accept:
1715
+ - "*/*"
1716
+ Host:
1717
+ - api.steemitdev.com
1718
+ Content-Length:
1719
+ - '92'
1720
+ response:
1721
+ status:
1722
+ code: 403
1723
+ message: Forbidden
1724
+ headers:
1725
+ Server:
1726
+ - cloudflare
1727
+ Date:
1728
+ - Sat, 17 Oct 2020 04:22:38 GMT
1729
+ Content-Type:
1730
+ - text/html
1731
+ Content-Length:
1732
+ - '151'
1733
+ Connection:
1734
+ - keep-alive
1735
+ Cf-Ray:
1736
+ - 5e373d5a6d7bed8f-SJC
1737
+ body:
1738
+ encoding: UTF-8
1739
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
1740
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
1741
+ recorded_at: Sat, 17 Oct 2020 04:22:38 GMT
1742
+ - request:
1743
+ method: post
1744
+ uri: https://api.steemit.com/
1745
+ body:
1746
+ encoding: UTF-8
1747
+ string: '{"jsonrpc":"2.0","id":55,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
1748
+ headers:
1749
+ Content-Type:
1750
+ - application/json; charset=utf-8
1751
+ User-Agent:
1752
+ - steem-ruby/0.9.4
1753
+ Accept-Encoding:
1754
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1755
+ Accept:
1756
+ - "*/*"
1757
+ Host:
1758
+ - api.steemitdev.com
1759
+ Content-Length:
1760
+ - '68'
1761
+ response:
1762
+ status:
1763
+ code: 200
1764
+ message: OK
1765
+ headers:
1766
+ Date:
1767
+ - Sat, 17 Oct 2020 04:22:38 GMT
1768
+ Content-Type:
1769
+ - application/json
1770
+ Transfer-Encoding:
1771
+ - chunked
1772
+ Connection:
1773
+ - keep-alive
1774
+ Server:
1775
+ - nginx
1776
+ X-Jussi-Cache-Hit:
1777
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
1778
+ X-Jussi-Request-Id:
1779
+ - '000913224886207952'
1780
+ X-Amzn-Trace-Id:
1781
+ - Root=1-5f8a718e-316589254749289f38bd3264
1782
+ Access-Control-Allow-Origin:
1783
+ - "*"
1784
+ Access-Control-Allow-Methods:
1785
+ - GET, POST, OPTIONS
1786
+ Access-Control-Allow-Headers:
1787
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1788
+ Strict-Transport-Security:
1789
+ - max-age=31557600; includeSubDomains; preload
1790
+ Content-Security-Policy:
1791
+ - upgrade-insecure-requests
1792
+ body:
1793
+ encoding: ASCII-8BIT
1794
+ string: '{"id":55,"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\":
1795
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
1796
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
1797
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
1798
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
1799
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
1800
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
1801
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
1802
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
1803
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
1804
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
1805
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
1806
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1807
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
1808
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
1809
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
1810
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
1811
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
1812
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1813
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
1814
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
1815
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
1816
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1817
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
1818
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
1819
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
1820
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
1821
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
1822
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
1823
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
1824
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
1825
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
1826
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
1827
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
1828
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
1829
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
1830
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
1831
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
1832
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
1833
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
1834
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
1835
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
1836
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
1837
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
1838
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
1839
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
1840
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
1841
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
1842
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
1843
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
1844
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
1845
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
1846
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
1847
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
1848
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
1849
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
1850
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
1851
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
1852
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
1853
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
1854
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
1855
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
1856
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
1857
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
1858
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
1859
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
1860
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
1861
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
1862
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
1863
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
1864
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
1865
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
1866
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
1867
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
1868
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
1869
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1870
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
1871
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
1872
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
1873
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
1874
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
1875
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
1876
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1877
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
1878
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
1879
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
1880
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
1881
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
1882
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
1883
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1884
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
1885
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
1886
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
1887
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
1888
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
1889
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
1890
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
1891
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
1892
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
1893
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
1894
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1895
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1896
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
1897
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
1898
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
1899
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
1900
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
1901
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
1902
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
1903
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
1904
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
1905
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
1906
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
1907
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
1908
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
1909
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
1910
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
1911
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
1912
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
1913
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
1914
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
1915
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
1916
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
1917
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
1918
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
1919
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1920
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
1921
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
1922
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
1923
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
1924
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
1925
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
1926
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
1927
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
1928
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
1929
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
1930
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
1931
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
1932
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
1933
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1934
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
1935
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
1936
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
1937
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
1938
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
1939
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
1940
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
1941
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
1942
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
1943
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
1944
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
1945
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
1946
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
1947
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
1948
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
1949
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
1950
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
1951
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
1952
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
1953
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
1954
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
1955
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
1956
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
1957
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
1958
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
1959
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
1960
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
1961
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
1962
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
1963
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
1964
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
1965
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
1966
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
1967
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
1968
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
1969
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
1970
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
1971
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
1972
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
1973
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
1974
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
1975
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
1976
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
1977
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
1978
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
1979
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
1980
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
1981
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
1982
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
1983
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
1984
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
1985
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
1986
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
1987
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
1988
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
1989
+ \"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
1990
+ 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
1991
+ 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
1992
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
1993
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
1994
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
1995
+ 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
1996
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
1997
+ recorded_at: Sat, 17 Oct 2020 04:22:38 GMT
1998
+ - request:
1999
+ method: post
2000
+ uri: https://api.steemit.com/
2001
+ body:
2002
+ encoding: UTF-8
2003
+ string: '{"jsonrpc":"2.0","id":56,"method":"condenser_api.get_accounts","params":[["ned"]]}'
2004
+ headers:
2005
+ Content-Type:
2006
+ - application/json; charset=utf-8
2007
+ User-Agent:
2008
+ - steem-ruby/0.9.4
2009
+ Accept-Encoding:
2010
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2011
+ Accept:
2012
+ - "*/*"
2013
+ Host:
2014
+ - api.steemitdev.com
2015
+ Content-Length:
2016
+ - '93'
2017
+ response:
2018
+ status:
2019
+ code: 200
2020
+ message: OK
2021
+ headers:
2022
+ Date:
2023
+ - Sat, 17 Oct 2020 04:22:39 GMT
2024
+ Content-Type:
2025
+ - application/json
2026
+ Transfer-Encoding:
2027
+ - chunked
2028
+ Connection:
2029
+ - keep-alive
2030
+ Server:
2031
+ - nginx
2032
+ X-Jussi-Request-Id:
2033
+ - '001006768180269570'
2034
+ X-Amzn-Trace-Id:
2035
+ - Root=1-5f8a718f-36b61c3d555ed2411fb03bb0
2036
+ Access-Control-Allow-Origin:
2037
+ - "*"
2038
+ Access-Control-Allow-Methods:
2039
+ - GET, POST, OPTIONS
2040
+ Access-Control-Allow-Headers:
2041
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2042
+ Strict-Transport-Security:
2043
+ - max-age=31557600; includeSubDomains; preload
2044
+ Content-Security-Policy:
2045
+ - upgrade-insecure-requests
2046
+ body:
2047
+ encoding: ASCII-8BIT
2048
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
2049
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
2050
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
2051
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
2052
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
2053
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
2054
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
2055
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
2056
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
2057
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":56}'
2058
+ recorded_at: Sat, 17 Oct 2020 04:22:39 GMT
2059
+ - request:
2060
+ method: post
2061
+ uri: https://api.justyy.com/
2062
+ body:
2063
+ encoding: UTF-8
2064
+ string: '{"jsonrpc":"2.0","id":87,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2065
+ headers:
2066
+ Content-Type:
2067
+ - application/json; charset=utf-8
2068
+ User-Agent:
2069
+ - steem-ruby/0.9.4
2070
+ Accept-Encoding:
2071
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2072
+ Accept:
2073
+ - "*/*"
2074
+ Host:
2075
+ - api.steemitdev.com
2076
+ Content-Length:
2077
+ - '98'
2078
+ response:
2079
+ status:
2080
+ code: 200
2081
+ message: OK
2082
+ headers:
2083
+ Server:
2084
+ - nginx/1.14.0 (Ubuntu)
2085
+ Date:
2086
+ - Sat, 17 Oct 2020 04:27:30 GMT
2087
+ Content-Type:
2088
+ - application/json
2089
+ Content-Length:
2090
+ - '17993'
2091
+ Connection:
2092
+ - keep-alive
2093
+ X-Jussi-Cache-Hit:
2094
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
2095
+ X-Jussi-Request-Id:
2096
+ - '000256995385135732'
2097
+ X-Amzn-Trace-Id:
2098
+ - ''
2099
+ Access-Control-Allow-Origin:
2100
+ - "*"
2101
+ Access-Control-Allow-Methods:
2102
+ - GET, POST, OPTIONS
2103
+ Access-Control-Allow-Headers:
2104
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2105
+ Strict-Transport-Security:
2106
+ - max-age=31557600; includeSubDomains; preload
2107
+ Content-Security-Policy:
2108
+ - upgrade-insecure-requests
2109
+ body:
2110
+ encoding: UTF-8
2111
+ string: '{"id":87,"jsonrpc":"2.0","result":[{"id":1025676,"name":"fullnodeupdate","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6TShqSeQJNa3VfjsS4KKRrCcakXJLLMa1siB9gdpQWB3XMu9fr",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5eaire16BucZBRg54SPDUt2j4d9RGEVHTfnKj1JTUQf7yex2xy",1]]},"posting":{"weight_threshold":1,"account_auths":[["rewarding",1],["steemhunt.com",1]],"key_auths":[["STM5FjB4voP6L1WD4xtwT3somNdx2WyMeu6YGGAbSkGNHkXQ6giV9",1]]},"memo_key":"STM8C2pRSyNQb6ru99n2141MwNtVHXgAfHeVFtgKYeXkAJdKN87BB","json_metadata":"{\"nodes\":
2112
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2113
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2114
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2115
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2116
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2117
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2118
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2119
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2120
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2121
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2122
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2123
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2124
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2125
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2126
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2127
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2128
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2129
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2130
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2131
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2132
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2133
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2134
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2135
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2136
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2137
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2138
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2139
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2140
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2141
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2142
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2143
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2144
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2145
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2146
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2147
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2148
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2149
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2150
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2151
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2152
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2153
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2154
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2155
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2156
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2157
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2158
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2159
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2160
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2161
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2162
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2163
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2164
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2165
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2166
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2167
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2168
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2169
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2170
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2171
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2172
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2173
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2174
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2175
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2176
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2177
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2178
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2179
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2180
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2181
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2182
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2183
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2184
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2185
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2186
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2187
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2188
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2189
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2190
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2191
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2192
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2193
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2194
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2195
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2196
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2197
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2198
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2199
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2200
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2201
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2202
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2203
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2204
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2205
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2206
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2207
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2208
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2209
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2210
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2211
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2212
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2213
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2214
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2215
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2216
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2217
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2218
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2219
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2220
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2221
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2222
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2223
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2224
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2225
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2226
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2227
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2228
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2229
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2230
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2231
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2232
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2233
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2234
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2235
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2236
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2237
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2238
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2239
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2240
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2241
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2242
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2243
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2244
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2245
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2246
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2247
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2248
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2249
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2250
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2251
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2252
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2253
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2254
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2255
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2256
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2257
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2258
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2259
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2260
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2261
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2262
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2263
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2264
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2265
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2266
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2267
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2268
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2269
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2270
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2271
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2272
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2273
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2274
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2275
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2276
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2277
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2278
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2279
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2280
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2281
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2282
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2283
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2284
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2285
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2286
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2287
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2288
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2289
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2290
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2291
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2292
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2293
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2294
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2295
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2296
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2297
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2298
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2299
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2300
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2301
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2302
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2303
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2304
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2305
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2306
+ \"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
2307
+ 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
2308
+ 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
2309
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2310
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2311
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2312
+ 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
2313
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
2314
+ recorded_at: Sat, 17 Oct 2020 04:27:30 GMT
2315
+ - request:
2316
+ method: post
2317
+ uri: https://api.steemit.com/
2318
+ body:
2319
+ encoding: UTF-8
2320
+ string: '{"jsonrpc":"2.0","id":88,"method":"condenser_api.get_accounts","params":[["ned"]]}'
2321
+ headers:
2322
+ Content-Type:
2323
+ - application/json; charset=utf-8
2324
+ User-Agent:
2325
+ - steem-ruby/0.9.4
2326
+ Accept-Encoding:
2327
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2328
+ Accept:
2329
+ - "*/*"
2330
+ Host:
2331
+ - api.steemitdev.com
2332
+ Content-Length:
2333
+ - '93'
2334
+ response:
2335
+ status:
2336
+ code: 200
2337
+ message: OK
2338
+ headers:
2339
+ Date:
2340
+ - Sat, 17 Oct 2020 04:27:31 GMT
2341
+ Content-Type:
2342
+ - application/json
2343
+ Transfer-Encoding:
2344
+ - chunked
2345
+ Connection:
2346
+ - keep-alive
2347
+ Server:
2348
+ - nginx
2349
+ X-Jussi-Request-Id:
2350
+ - '000076647312535024'
2351
+ X-Amzn-Trace-Id:
2352
+ - Root=1-5f8a72b3-53cf7ead25b83c6356eba5e8
2353
+ Access-Control-Allow-Origin:
2354
+ - "*"
2355
+ Access-Control-Allow-Methods:
2356
+ - GET, POST, OPTIONS
2357
+ Access-Control-Allow-Headers:
2358
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2359
+ Strict-Transport-Security:
2360
+ - max-age=31557600; includeSubDomains; preload
2361
+ Content-Security-Policy:
2362
+ - upgrade-insecure-requests
2363
+ body:
2364
+ encoding: ASCII-8BIT
2365
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
2366
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
2367
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
2368
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
2369
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
2370
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
2371
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
2372
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
2373
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
2374
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":88}'
2375
+ recorded_at: Sat, 17 Oct 2020 04:27:31 GMT
2376
+ - request:
2377
+ method: post
2378
+ uri: https://api.justyy.com/
2379
+ body:
2380
+ encoding: UTF-8
2381
+ string: '{"jsonrpc":"2.0","id":16,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2382
+ headers:
2383
+ Content-Type:
2384
+ - application/json; charset=utf-8
2385
+ User-Agent:
2386
+ - steem-ruby/0.9.4
2387
+ Accept-Encoding:
2388
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2389
+ Accept:
2390
+ - "*/*"
2391
+ Host:
2392
+ - api.steemitdev.com
2393
+ Content-Length:
2394
+ - '98'
2395
+ response:
2396
+ status:
2397
+ code: 200
2398
+ message: OK
2399
+ headers:
2400
+ Server:
2401
+ - nginx/1.14.0 (Ubuntu)
2402
+ Date:
2403
+ - Sat, 17 Oct 2020 04:33:56 GMT
2404
+ Content-Type:
2405
+ - application/json
2406
+ Content-Length:
2407
+ - '17993'
2408
+ Connection:
2409
+ - keep-alive
2410
+ X-Jussi-Request-Id:
2411
+ - '000384604243318852'
2412
+ X-Amzn-Trace-Id:
2413
+ - ''
2414
+ Access-Control-Allow-Origin:
2415
+ - "*"
2416
+ Access-Control-Allow-Methods:
2417
+ - GET, POST, OPTIONS
2418
+ Access-Control-Allow-Headers:
2419
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2420
+ Strict-Transport-Security:
2421
+ - max-age=31557600; includeSubDomains; preload
2422
+ Content-Security-Policy:
2423
+ - upgrade-insecure-requests
2424
+ body:
2425
+ encoding: UTF-8
2426
+ 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\":
2427
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2428
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2429
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2430
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2431
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2432
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2433
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2434
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2435
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2436
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2437
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2438
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2439
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2440
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2441
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2442
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2443
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2444
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2445
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2446
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2447
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2448
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2449
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2450
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2451
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2452
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2453
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2454
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2455
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2456
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2457
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2458
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2459
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2460
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2461
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2462
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2463
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2464
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2465
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2466
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2467
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2468
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2469
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2470
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2471
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2472
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2473
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2474
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2475
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2476
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2477
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2478
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2479
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2480
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2481
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2482
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2483
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2484
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2485
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2486
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2487
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2488
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2489
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2490
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2491
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2492
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2493
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2494
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2495
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2496
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2497
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2498
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2499
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2500
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2501
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2502
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2503
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2504
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2505
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2506
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2507
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2508
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2509
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2510
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2511
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2512
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2513
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2514
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2515
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2516
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2517
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2518
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2519
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2520
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2521
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2522
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2523
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2524
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2525
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2526
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2527
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2528
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2529
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2530
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2531
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2532
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2533
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2534
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2535
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2536
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2537
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2538
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2539
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2540
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2541
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2542
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2543
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2544
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2545
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2546
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2547
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2548
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2549
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2550
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2551
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2552
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2553
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2554
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2555
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2556
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2557
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2558
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2559
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2560
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2561
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2562
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2563
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2564
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2565
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2566
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2567
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2568
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2569
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2570
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2571
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2572
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2573
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2574
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2575
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2576
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2577
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2578
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2579
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2580
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2581
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2582
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2583
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2584
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2585
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2586
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2587
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2588
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2589
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2590
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2591
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2592
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2593
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2594
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2595
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2596
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2597
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2598
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2599
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2600
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2601
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2602
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2603
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2604
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2605
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2606
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2607
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2608
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2609
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2610
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2611
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2612
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2613
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2614
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2615
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2616
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2617
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2618
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2619
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2620
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2621
+ \"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
2622
+ 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
2623
+ 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
2624
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2625
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2626
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2627
+ 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
2628
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":16}'
2629
+ recorded_at: Sat, 17 Oct 2020 04:33:57 GMT
2630
+ - request:
2631
+ method: post
2632
+ uri: https://api.steemit.com/
2633
+ body:
2634
+ encoding: UTF-8
2635
+ string: '{"jsonrpc":"2.0","id":17,"method":"condenser_api.get_accounts","params":[["ned"]]}'
2636
+ headers:
2637
+ Content-Type:
2638
+ - application/json; charset=utf-8
2639
+ User-Agent:
2640
+ - steem-ruby/0.9.4
2641
+ Accept-Encoding:
2642
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2643
+ Accept:
2644
+ - "*/*"
2645
+ Host:
2646
+ - api.steemitdev.com
2647
+ Content-Length:
2648
+ - '93'
2649
+ response:
2650
+ status:
2651
+ code: 200
2652
+ message: OK
2653
+ headers:
2654
+ Date:
2655
+ - Sat, 17 Oct 2020 04:33:57 GMT
2656
+ Content-Type:
2657
+ - application/json
2658
+ Transfer-Encoding:
2659
+ - chunked
2660
+ Connection:
2661
+ - keep-alive
2662
+ Server:
2663
+ - nginx
2664
+ X-Jussi-Request-Id:
2665
+ - '000227478623850121'
2666
+ X-Amzn-Trace-Id:
2667
+ - Root=1-5f8a7435-75a594860857ad334ae265d4
2668
+ Access-Control-Allow-Origin:
2669
+ - "*"
2670
+ Access-Control-Allow-Methods:
2671
+ - GET, POST, OPTIONS
2672
+ Access-Control-Allow-Headers:
2673
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2674
+ Strict-Transport-Security:
2675
+ - max-age=31557600; includeSubDomains; preload
2676
+ Content-Security-Policy:
2677
+ - upgrade-insecure-requests
2678
+ body:
2679
+ encoding: ASCII-8BIT
2680
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
2681
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
2682
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
2683
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
2684
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
2685
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
2686
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
2687
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
2688
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
2689
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":17}'
2690
+ recorded_at: Sat, 17 Oct 2020 04:33:57 GMT
2691
+ - request:
2692
+ method: post
2693
+ uri: https://api.steemit.com/
2694
+ body:
2695
+ encoding: UTF-8
2696
+ string: '{"jsonrpc":"2.0","id":68,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
2697
+ headers:
2698
+ Content-Type:
2699
+ - application/json; charset=utf-8
2700
+ User-Agent:
2701
+ - steem-ruby/0.9.4
2702
+ Accept-Encoding:
2703
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2704
+ Accept:
2705
+ - "*/*"
2706
+ Host:
2707
+ - api.steemitdev.com
2708
+ Content-Length:
2709
+ - '80'
2710
+ response:
2711
+ status:
2712
+ code: 200
2713
+ message: OK
2714
+ headers:
2715
+ Date:
2716
+ - Sat, 17 Oct 2020 04:39:55 GMT
2717
+ Content-Type:
2718
+ - application/json
2719
+ Transfer-Encoding:
2720
+ - chunked
2721
+ Connection:
2722
+ - keep-alive
2723
+ Server:
2724
+ - nginx
2725
+ X-Jussi-Request-Id:
2726
+ - '000833794237316651'
2727
+ X-Amzn-Trace-Id:
2728
+ - Root=1-5f8a759b-0e68e92408a2229f221a3480
2729
+ Access-Control-Allow-Origin:
2730
+ - "*"
2731
+ Access-Control-Allow-Methods:
2732
+ - GET, POST, OPTIONS
2733
+ Access-Control-Allow-Headers:
2734
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2735
+ Strict-Transport-Security:
2736
+ - max-age=31557600; includeSubDomains; preload
2737
+ Content-Security-Policy:
2738
+ - upgrade-insecure-requests
2739
+ body:
2740
+ encoding: ASCII-8BIT
2741
+ 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\":
2742
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
2743
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
2744
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
2745
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
2746
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
2747
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
2748
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
2749
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
2750
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
2751
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
2752
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
2753
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2754
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
2755
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
2756
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
2757
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
2758
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
2759
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2760
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
2761
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
2762
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
2763
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2764
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
2765
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
2766
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
2767
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
2768
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
2769
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
2770
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
2771
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
2772
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
2773
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
2774
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
2775
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
2776
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
2777
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
2778
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
2779
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
2780
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
2781
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
2782
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
2783
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
2784
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
2785
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
2786
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
2787
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
2788
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
2789
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
2790
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
2791
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
2792
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
2793
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
2794
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
2795
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
2796
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
2797
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
2798
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
2799
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
2800
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
2801
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
2802
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
2803
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
2804
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
2805
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
2806
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
2807
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
2808
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
2809
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
2810
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
2811
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
2812
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
2813
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
2814
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
2815
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
2816
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2817
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
2818
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
2819
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
2820
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
2821
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
2822
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
2823
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2824
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
2825
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
2826
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
2827
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
2828
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
2829
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
2830
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2831
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
2832
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
2833
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
2834
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
2835
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
2836
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
2837
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
2838
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
2839
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
2840
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
2841
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2842
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2843
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
2844
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
2845
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
2846
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
2847
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
2848
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
2849
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
2850
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
2851
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
2852
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
2853
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
2854
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
2855
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
2856
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
2857
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
2858
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
2859
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
2860
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
2861
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
2862
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
2863
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
2864
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
2865
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
2866
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2867
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
2868
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
2869
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
2870
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
2871
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
2872
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
2873
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
2874
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
2875
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
2876
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
2877
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
2878
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
2879
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
2880
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2881
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
2882
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
2883
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
2884
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
2885
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
2886
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
2887
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
2888
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
2889
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
2890
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
2891
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
2892
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
2893
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
2894
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
2895
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
2896
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
2897
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
2898
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
2899
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
2900
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
2901
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
2902
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
2903
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
2904
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
2905
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
2906
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
2907
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
2908
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
2909
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
2910
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
2911
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
2912
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
2913
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
2914
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
2915
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
2916
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
2917
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
2918
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
2919
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
2920
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
2921
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
2922
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
2923
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
2924
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
2925
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
2926
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
2927
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
2928
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
2929
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
2930
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
2931
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
2932
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
2933
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
2934
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
2935
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
2936
+ \"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
2937
+ 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
2938
+ 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
2939
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
2940
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
2941
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
2942
+ 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
2943
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":68}'
2944
+ recorded_at: Sat, 17 Oct 2020 04:39:56 GMT
2945
+ - request:
2946
+ method: post
2947
+ uri: https://api.steemit.com/
2948
+ body:
2949
+ encoding: UTF-8
2950
+ string: '{"jsonrpc":"2.0","id":69,"method":"condenser_api.get_accounts","params":[["ned"]]}'
2951
+ headers:
2952
+ Content-Type:
2953
+ - application/json; charset=utf-8
2954
+ User-Agent:
2955
+ - steem-ruby/0.9.4
2956
+ Accept-Encoding:
2957
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2958
+ Accept:
2959
+ - "*/*"
2960
+ Host:
2961
+ - api.steemitdev.com
2962
+ Content-Length:
2963
+ - '93'
2964
+ response:
2965
+ status:
2966
+ code: 200
2967
+ message: OK
2968
+ headers:
2969
+ Date:
2970
+ - Sat, 17 Oct 2020 04:39:56 GMT
2971
+ Content-Type:
2972
+ - application/json
2973
+ Transfer-Encoding:
2974
+ - chunked
2975
+ Connection:
2976
+ - keep-alive
2977
+ Server:
2978
+ - nginx
2979
+ X-Jussi-Request-Id:
2980
+ - '000570084107033638'
2981
+ X-Amzn-Trace-Id:
2982
+ - Root=1-5f8a759c-3c4e283842af91b15a9eb777
2983
+ Access-Control-Allow-Origin:
2984
+ - "*"
2985
+ Access-Control-Allow-Methods:
2986
+ - GET, POST, OPTIONS
2987
+ Access-Control-Allow-Headers:
2988
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
2989
+ Strict-Transport-Security:
2990
+ - max-age=31557600; includeSubDomains; preload
2991
+ Content-Security-Policy:
2992
+ - upgrade-insecure-requests
2993
+ body:
2994
+ encoding: ASCII-8BIT
2995
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
2996
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
2997
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
2998
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
2999
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
3000
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
3001
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
3002
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
3003
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
3004
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":69}'
3005
+ recorded_at: Sat, 17 Oct 2020 04:39:56 GMT
3006
+ - request:
3007
+ method: post
3008
+ uri: https://api.justyy.com/
3009
+ body:
3010
+ encoding: UTF-8
3011
+ string: '{"jsonrpc":"2.0","id":48,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
3012
+ headers:
3013
+ Content-Type:
3014
+ - application/json; charset=utf-8
3015
+ User-Agent:
3016
+ - steem-ruby/0.9.4
3017
+ Accept-Encoding:
3018
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3019
+ Accept:
3020
+ - "*/*"
3021
+ Host:
3022
+ - api.steemitdev.com
3023
+ Content-Length:
3024
+ - '93'
3025
+ response:
3026
+ status:
3027
+ code: 200
3028
+ message: OK
3029
+ headers:
3030
+ Server:
3031
+ - nginx/1.14.0 (Ubuntu)
3032
+ Date:
3033
+ - Sat, 17 Oct 2020 04:56:24 GMT
3034
+ Content-Type:
3035
+ - application/json
3036
+ Content-Length:
3037
+ - '17993'
3038
+ Connection:
3039
+ - keep-alive
3040
+ X-Jussi-Cache-Hit:
3041
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
3042
+ X-Jussi-Request-Id:
3043
+ - '000981027074525275'
3044
+ X-Amzn-Trace-Id:
3045
+ - ''
3046
+ Access-Control-Allow-Origin:
3047
+ - "*"
3048
+ Access-Control-Allow-Methods:
3049
+ - GET, POST, OPTIONS
3050
+ Access-Control-Allow-Headers:
3051
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3052
+ Strict-Transport-Security:
3053
+ - max-age=31557600; includeSubDomains; preload
3054
+ Content-Security-Policy:
3055
+ - upgrade-insecure-requests
3056
+ body:
3057
+ encoding: UTF-8
3058
+ string: '{"id":48,"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\":
3059
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
3060
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
3061
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
3062
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
3063
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
3064
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
3065
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
3066
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
3067
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
3068
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
3069
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
3070
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3071
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
3072
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
3073
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
3074
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
3075
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
3076
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3077
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
3078
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
3079
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
3080
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3081
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
3082
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
3083
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
3084
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
3085
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
3086
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
3087
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
3088
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
3089
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
3090
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
3091
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
3092
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
3093
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
3094
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
3095
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
3096
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
3097
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
3098
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
3099
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
3100
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
3101
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
3102
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
3103
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
3104
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
3105
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
3106
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
3107
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
3108
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
3109
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
3110
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
3111
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
3112
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
3113
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
3114
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
3115
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
3116
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
3117
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
3118
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
3119
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
3120
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
3121
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
3122
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
3123
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
3124
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3125
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
3126
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
3127
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
3128
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
3129
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
3130
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
3131
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
3132
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
3133
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3134
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
3135
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
3136
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
3137
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
3138
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
3139
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
3140
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3141
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
3142
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
3143
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
3144
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
3145
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
3146
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
3147
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3148
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
3149
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
3150
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
3151
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
3152
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
3153
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
3154
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
3155
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
3156
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
3157
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3158
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3159
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3160
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
3161
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
3162
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
3163
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
3164
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
3165
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
3166
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
3167
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
3168
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
3169
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
3170
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
3171
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
3172
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
3173
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
3174
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
3175
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
3176
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
3177
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
3178
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
3179
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
3180
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
3181
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
3182
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
3183
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3184
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
3185
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
3186
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
3187
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
3188
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
3189
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
3190
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
3191
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
3192
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
3193
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
3194
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3195
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
3196
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
3197
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3198
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
3199
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
3200
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
3201
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
3202
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
3203
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
3204
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
3205
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
3206
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
3207
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
3208
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
3209
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
3210
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
3211
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
3212
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
3213
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
3214
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
3215
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
3216
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3217
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
3218
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
3219
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
3220
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
3221
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
3222
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
3223
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
3224
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
3225
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
3226
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
3227
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
3228
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
3229
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
3230
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
3231
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
3232
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
3233
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
3234
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
3235
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
3236
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
3237
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
3238
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
3239
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
3240
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
3241
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3242
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
3243
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3244
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
3245
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
3246
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
3247
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
3248
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
3249
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
3250
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
3251
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
3252
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3253
+ \"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
3254
+ 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
3255
+ 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
3256
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
3257
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
3258
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
3259
+ 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
3260
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
3261
+ recorded_at: Sat, 17 Oct 2020 04:56:24 GMT
3262
+ - request:
3263
+ method: post
3264
+ uri: https://api.steemit.com/
3265
+ body:
3266
+ encoding: UTF-8
3267
+ string: '{"jsonrpc":"2.0","id":49,"method":"condenser_api.get_accounts","params":[["ned"]]}'
3268
+ headers:
3269
+ Content-Type:
3270
+ - application/json; charset=utf-8
3271
+ User-Agent:
3272
+ - steem-ruby/0.9.4
3273
+ Accept-Encoding:
3274
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3275
+ Accept:
3276
+ - "*/*"
3277
+ Host:
3278
+ - api.steemitdev.com
3279
+ Content-Length:
3280
+ - '93'
3281
+ response:
3282
+ status:
3283
+ code: 200
3284
+ message: OK
3285
+ headers:
3286
+ Date:
3287
+ - Sat, 17 Oct 2020 04:56:25 GMT
3288
+ Content-Type:
3289
+ - application/json
3290
+ Transfer-Encoding:
3291
+ - chunked
3292
+ Connection:
3293
+ - keep-alive
3294
+ Server:
3295
+ - nginx
3296
+ X-Jussi-Request-Id:
3297
+ - '000718687957012197'
3298
+ X-Amzn-Trace-Id:
3299
+ - Root=1-5f8a7979-0a747c58675f3f8912b7ba44
3300
+ Access-Control-Allow-Origin:
3301
+ - "*"
3302
+ Access-Control-Allow-Methods:
3303
+ - GET, POST, OPTIONS
3304
+ Access-Control-Allow-Headers:
3305
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3306
+ Strict-Transport-Security:
3307
+ - max-age=31557600; includeSubDomains; preload
3308
+ Content-Security-Policy:
3309
+ - upgrade-insecure-requests
3310
+ body:
3311
+ encoding: ASCII-8BIT
3312
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
3313
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
3314
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
3315
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
3316
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
3317
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
3318
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
3319
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
3320
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
3321
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":49}'
3322
+ recorded_at: Sat, 17 Oct 2020 04:56:25 GMT
3323
+ - request:
3324
+ method: post
3325
+ uri: https://steem.bts.tw/
3326
+ body:
3327
+ encoding: UTF-8
3328
+ string: '{"jsonrpc":"2.0","id":33,"method":"jsonrpc.get_methods","params":{}}'
3329
+ headers:
3330
+ Content-Type:
3331
+ - application/json; charset=utf-8
3332
+ User-Agent:
3333
+ - steem-ruby/0.9.4
3334
+ Accept-Encoding:
3335
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3336
+ Accept:
3337
+ - "*/*"
3338
+ Host:
3339
+ - api.steemit.com
3340
+ Content-Length:
3341
+ - '92'
3342
+ response:
3343
+ status:
3344
+ code: 403
3345
+ message: Forbidden
3346
+ headers:
3347
+ Server:
3348
+ - cloudflare
3349
+ Date:
3350
+ - Sat, 17 Oct 2020 05:03:07 GMT
3351
+ Content-Type:
3352
+ - text/html
3353
+ Content-Length:
3354
+ - '151'
3355
+ Connection:
3356
+ - keep-alive
3357
+ Cf-Ray:
3358
+ - 5e3778a58ffded1b-SJC
3359
+ body:
3360
+ encoding: UTF-8
3361
+ string: "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403
3362
+ Forbidden</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n"
3363
+ recorded_at: Sat, 17 Oct 2020 05:03:07 GMT
3364
+ - request:
3365
+ method: post
3366
+ uri: https://api.steemit.com/
3367
+ body:
3368
+ encoding: UTF-8
3369
+ string: '{"jsonrpc":"2.0","id":34,"method":"condenser_api.get_accounts","params":[["fullnodeupdate"]]}'
3370
+ headers:
3371
+ Content-Type:
3372
+ - application/json; charset=utf-8
3373
+ User-Agent:
3374
+ - steem-ruby/0.9.4
3375
+ Accept-Encoding:
3376
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3377
+ Accept:
3378
+ - "*/*"
3379
+ Host:
3380
+ - api.steemit.com
3381
+ Content-Length:
3382
+ - '68'
3383
+ response:
3384
+ status:
3385
+ code: 200
3386
+ message: OK
3387
+ headers:
3388
+ Date:
3389
+ - Sat, 17 Oct 2020 05:03:07 GMT
3390
+ Content-Type:
3391
+ - application/json
3392
+ Transfer-Encoding:
3393
+ - chunked
3394
+ Connection:
3395
+ - keep-alive
3396
+ Server:
3397
+ - nginx
3398
+ X-Jussi-Cache-Hit:
3399
+ - appbase.condenser_api.get_accounts.params=[["fullnodeupdate"]]
3400
+ X-Jussi-Request-Id:
3401
+ - '000877135776570068'
3402
+ X-Amzn-Trace-Id:
3403
+ - Root=1-5f8a7b0b-154a1ab71db2eb9750b388eb
3404
+ Access-Control-Allow-Origin:
3405
+ - "*"
3406
+ Access-Control-Allow-Methods:
3407
+ - GET, POST, OPTIONS
3408
+ Access-Control-Allow-Headers:
3409
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3410
+ Strict-Transport-Security:
3411
+ - max-age=31557600; includeSubDomains; preload
3412
+ Content-Security-Policy:
3413
+ - upgrade-insecure-requests
3414
+ body:
3415
+ encoding: ASCII-8BIT
3416
+ string: '{"id":34,"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\":
3417
+ [\"https:\/\/hive.roelandp.nl\", \"https:\/\/rpc.ausbit.dev\", \"https:\/\/api.hive.blog\",
3418
+ \"https:\/\/hive-api.arcange.eu\", \"https:\/\/api.pharesim.me\", \"https:\/\/anyx.io\",
3419
+ \"https:\/\/api.steemit.com\", \"https:\/\/api.deathwing.me\", \"https:\/\/api.openhive.network\",
3420
+ \"http:\/\/anyx.io\", \"https:\/\/steem.61bts.com\"], \"failing_nodes\": {\"https:\/\/steem.bts.tw\":
3421
+ \"NumRetriesReached\"}, \"report\": [{\"node\": \"https:\/\/api.hive.blog\",
3422
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 11, \"ok\":
3423
+ true, \"count\": 194, \"time\": 30.46}, \"history\": {\"rank\": 9, \"ok\":
3424
+ true, \"count\": 8586, \"time\": 15.05}, \"apicall\": {\"rank\": 4, \"ok\":
3425
+ true, \"time\": 1.11, \"access_time\": 0.215}, \"config\": {\"rank\": 4, \"ok\":
3426
+ true, \"time\": 0.34, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 3,
3427
+ \"ok\": true, \"head_delay\": 2.69, \"diff_head_irreversible\": 17.0, \"time\":
3428
+ 18.76}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3429
+ true, \"block\": {\"rank\": 16, \"ok\": true, \"count\": 115, \"time\": 30.01},
3430
+ \"history\": {\"rank\": 12, \"ok\": true, \"count\": 7576, \"time\": 15.1},
3431
+ \"apicall\": {\"rank\": 5, \"ok\": true, \"time\": 1.18, \"access_time\":
3432
+ 0.251}, \"config\": {\"rank\": 5, \"ok\": true, \"time\": 0.67, \"access_time\":
3433
+ 0.11}, \"block_diff\": {\"rank\": -1, \"ok\": false, \"error\": \"output:
3434
+ {} of identifier 47864187\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3435
+ 0.0, \"time\": 0.77}}, {\"node\": \"https:\/\/api.hivekings.com\", \"version\":
3436
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 13, \"ok\": true, \"count\":
3437
+ 143, \"time\": 30.06}, \"history\": {\"rank\": 11, \"ok\": true, \"count\":
3438
+ 7980, \"time\": 15.04}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3439
+ \"@manoldonchev\/why-so-cereal\", \"time\": 1.01, \"access_time\": 30.0},
3440
+ \"config\": {\"rank\": 6, \"ok\": true, \"time\": 0.94, \"access_time\": 0.16},
3441
+ \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\": 2.41, \"diff_head_irreversible\":
3442
+ 20.0, \"time\": 18.92}}, {\"node\": \"https:\/\/api.openhive.network\", \"version\":
3443
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 12, \"ok\": true, \"count\":
3444
+ 146, \"time\": 30.1}, \"history\": {\"rank\": 10, \"ok\": true, \"count\":
3445
+ 8283, \"time\": 15.07}, \"apicall\": {\"rank\": 3, \"ok\": true, \"time\":
3446
+ 0.77, \"access_time\": 0.188}, \"config\": {\"rank\": 7, \"ok\": true, \"time\":
3447
+ 0.23, \"access_time\": 0.03}, \"block_diff\": {\"rank\": 15, \"ok\": true,
3448
+ \"head_delay\": 4.26, \"diff_head_irreversible\": 24.0, \"time\": 19.42}},
3449
+ {\"node\": \"https:\/\/rpc.ausbit.dev\", \"version\": \"1.24.4\", \"hive\":
3450
+ true, \"block\": {\"rank\": 3, \"ok\": true, \"count\": 645, \"time\": 30.01},
3451
+ \"history\": {\"rank\": 5, \"ok\": true, \"count\": 16767, \"time\": 15.05},
3452
+ \"apicall\": {\"rank\": 1, \"ok\": true, \"time\": 0.33, \"access_time\":
3453
+ 0.067}, \"config\": {\"rank\": 8, \"ok\": true, \"time\": 0.23, \"access_time\":
3454
+ 0.04}, \"block_diff\": {\"rank\": 13, \"ok\": true, \"head_delay\": 2.59,
3455
+ \"diff_head_irreversible\": 23.0, \"time\": 15.96}}, {\"node\": \"https:\/\/hive.roelandp.nl\",
3456
+ \"version\": \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 4, \"ok\":
3457
+ true, \"count\": 641, \"time\": 30.03}, \"history\": {\"rank\": 2, \"ok\":
3458
+ true, \"count\": 27978, \"time\": 15.0}, \"apicall\": {\"rank\": 2, \"ok\":
3459
+ true, \"time\": 0.41, \"access_time\": 0.072}, \"config\": {\"rank\": 9, \"ok\":
3460
+ true, \"time\": 0.24, \"access_time\": 0.04}, \"block_diff\": {\"rank\": 2,
3461
+ \"ok\": true, \"head_delay\": 0.94, \"diff_head_irreversible\": 17.0, \"time\":
3462
+ 16.04}}, {\"node\": \"https:\/\/api.c0ff33a.uk\", \"version\": \"1.24.2\",
3463
+ \"hive\": true, \"block\": {\"rank\": 8, \"ok\": true, \"count\": 274, \"time\":
3464
+ 30.08}, \"history\": {\"rank\": 3, \"ok\": true, \"count\": 19191, \"time\":
3465
+ 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"@manoldonchev\/why-so-cereal\",
3466
+ \"time\": 12.81, \"access_time\": 30.0}, \"config\": {\"rank\": 10, \"ok\":
3467
+ true, \"time\": 0.3, \"access_time\": 0.05}, \"block_diff\": {\"rank\": 12,
3468
+ \"ok\": true, \"head_delay\": 2.45, \"diff_head_irreversible\": 21.0, \"time\":
3469
+ 16.91}}, {\"node\": \"https:\/\/api.deathwing.me\", \"version\": \"1.24.4\",
3470
+ \"hive\": true, \"block\": {\"rank\": 5, \"ok\": true, \"count\": 370, \"time\":
3471
+ 30.02}, \"history\": {\"rank\": 7, \"ok\": true, \"count\": 12626, \"time\":
3472
+ 15.02}, \"apicall\": {\"rank\": 10, \"ok\": true, \"time\": 15.67, \"access_time\":
3473
+ 5.15}, \"config\": {\"rank\": 11, \"ok\": true, \"time\": 0.43, \"access_time\":
3474
+ 0.04}, \"block_diff\": {\"rank\": 14, \"ok\": true, \"head_delay\": 3.94,
3475
+ \"diff_head_irreversible\": 23.0, \"time\": 16.31}}, {\"node\": \"https:\/\/hive-api.arcange.eu\",
3476
+ \"version\": \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 6, \"ok\":
3477
+ true, \"count\": 360, \"time\": 30.04}, \"history\": {\"rank\": 4, \"ok\":
3478
+ true, \"count\": 18080, \"time\": 15.06}, \"apicall\": {\"rank\": 11, \"ok\":
3479
+ true, \"time\": 21.01, \"access_time\": 6.954}, \"config\": {\"rank\": 12,
3480
+ \"ok\": true, \"time\": 0.25, \"access_time\": 0.07}, \"block_diff\": {\"rank\":
3481
+ 6, \"ok\": true, \"head_delay\": 2.71, \"diff_head_irreversible\": 18.0, \"time\":
3482
+ 16.68}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"1.24.4\", \"hive\":
3483
+ true, \"block\": {\"rank\": 14, \"ok\": true, \"count\": 142, \"time\": 30.12},
3484
+ \"history\": {\"rank\": 13, \"ok\": true, \"count\": 7475, \"time\": 15.02},
3485
+ \"apicall\": {\"rank\": 6, \"ok\": true, \"time\": 0.88, \"access_time\":
3486
+ 0.255}, \"config\": {\"rank\": 13, \"ok\": true, \"time\": 0.39, \"access_time\":
3487
+ 0.1}, \"block_diff\": {\"rank\": 7, \"ok\": true, \"head_delay\": 7.19, \"diff_head_irreversible\":
3488
+ 18.0, \"time\": 17.49}}, {\"node\": \"https:\/\/techcoderx.com\", \"version\":
3489
+ \"1.24.2\", \"hive\": true, \"block\": {\"rank\": 15, \"ok\": true, \"count\":
3490
+ 133, \"time\": 30.06}, \"history\": {\"rank\": 14, \"ok\": true, \"count\":
3491
+ 7273, \"time\": 15.0}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3492
+ \"@manoldonchev\/why-so-cereal\", \"time\": 13.74, \"access_time\": 30.0},
3493
+ \"config\": {\"rank\": 14, \"ok\": true, \"time\": 0.87, \"access_time\":
3494
+ 0.2}, \"block_diff\": {\"rank\": 11, \"ok\": true, \"head_delay\": 2.17, \"diff_head_irreversible\":
3495
+ 21.0, \"time\": 19.36}}, {\"node\": \"https:\/\/rpc.esteem.app\", \"version\":
3496
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 1, \"ok\": true, \"count\":
3497
+ 826, \"time\": 30.01}, \"history\": {\"rank\": 1, \"ok\": true, \"count\":
3498
+ 29998, \"time\": 15.05}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3499
+ \"@manoldonchev\/why-so-cereal|holger80\", \"time\": 5.74, \"access_time\":
3500
+ 30.0}, \"config\": {\"rank\": 15, \"ok\": true, \"time\": 0.16, \"access_time\":
3501
+ 0.02}, \"block_diff\": {\"rank\": 5, \"ok\": true, \"head_delay\": 1.41, \"diff_head_irreversible\":
3502
+ 18.0, \"time\": 15.67}}, {\"node\": \"https:\/\/hived.privex.io\", \"version\":
3503
+ \"1.24.3\", \"hive\": true, \"block\": {\"rank\": 7, \"ok\": true, \"count\":
3504
+ 333, \"time\": 30.1}, \"history\": {\"rank\": 6, \"ok\": true, \"count\":
3505
+ 15656, \"time\": 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3506
+ \"@manoldonchev\/why-so-cereal\", \"time\": 6.96, \"access_time\": 30.0},
3507
+ \"config\": {\"rank\": 16, \"ok\": true, \"time\": 0.61, \"access_time\":
3508
+ 0.2}, \"block_diff\": {\"rank\": 1, \"ok\": true, \"head_delay\": 3.01, \"diff_head_irreversible\":
3509
+ 16.0, \"time\": 16.72}}, {\"node\": \"https:\/\/api.pharesim.me\", \"version\":
3510
+ \"1.24.4\", \"hive\": true, \"block\": {\"rank\": 10, \"ok\": true, \"count\":
3511
+ 207, \"time\": 30.11}, \"history\": {\"rank\": 15, \"ok\": true, \"count\":
3512
+ 7172, \"time\": 15.18}, \"apicall\": {\"rank\": 7, \"ok\": true, \"time\":
3513
+ 0.99, \"access_time\": 0.268}, \"config\": {\"rank\": 17, \"ok\": true, \"time\":
3514
+ 0.37, \"access_time\": 0.02}, \"block_diff\": {\"rank\": -1, \"ok\": false,
3515
+ \"error\": \"output: {} of identifier 47864254\", \"head_delay\": 0.0, \"diff_head_irreversible\":
3516
+ 0.0, \"time\": 10.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3517
+ \"0.23.0\", \"hive\": false, \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3518
+ 235, \"time\": 30.1}, \"history\": {\"rank\": 8, \"ok\": true, \"count\":
3519
+ 10404, \"time\": 15.09}, \"apicall\": {\"rank\": 8, \"ok\": true, \"time\":
3520
+ 1.42, \"access_time\": 0.324}, \"config\": {\"rank\": 1, \"ok\": true, \"time\":
3521
+ 0.65, \"access_time\": 0.11}, \"block_diff\": {\"rank\": 10, \"ok\": true,
3522
+ \"head_delay\": 5.03, \"diff_head_irreversible\": 20.0, \"time\": 17.68}},
3523
+ {\"node\": \"https:\/\/api.justyy.com\", \"version\": \"0.23.1\", \"hive\":
3524
+ false, \"block\": {\"rank\": 2, \"ok\": true, \"count\": 692, \"time\": 30.03},
3525
+ \"history\": {\"rank\": 16, \"ok\": true, \"count\": 6869, \"time\": 15.1},
3526
+ \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Invalid Request\",
3527
+ \"time\": 0.33, \"access_time\": 30.0}, \"config\": {\"rank\": 2, \"ok\":
3528
+ true, \"time\": 0.24, \"access_time\": 0.06}, \"block_diff\": {\"rank\": 4,
3529
+ \"ok\": true, \"head_delay\": 2.82, \"diff_head_irreversible\": 17.0, \"time\":
3530
+ 15.46}}, {\"node\": \"https:\/\/steem.61bts.com\", \"version\": \"0.23.0\",
3531
+ \"hive\": false, \"block\": {\"rank\": 17, \"ok\": true, \"count\": 42, \"time\":
3532
+ 30.5}, \"history\": {\"rank\": 17, \"ok\": true, \"count\": 1516, \"time\":
3533
+ 15.43}, \"apicall\": {\"rank\": 9, \"ok\": true, \"time\": 4.89, \"access_time\":
3534
+ 0.963}, \"config\": {\"rank\": 3, \"ok\": true, \"time\": 1.97, \"access_time\":
3535
+ 0.29}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 4.61, \"diff_head_irreversible\":
3536
+ 20.0, \"time\": 25.31}}], \"parameter\": {\"num_retries\": 3, \"num_retries_call\":
3537
+ 3, \"timeout\": 30, \"threading\": false, \"beem_version\": \"0.24.13\", \"start_time\":
3538
+ \"2020-10-17T03:00:33\", \"end_time\": \"2020-10-17T03:21:04\", \"script_version\":
3539
+ \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]}, \"history\":
3540
+ {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]}, \"config\":
3541
+ {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3542
+ \"head_delay\"]}}}}","posting_json_metadata":"{\"nodes\": [\"https:\/\/anyx.io\",
3543
+ \"http:\/\/anyx.io\", \"https:\/\/rpc.usesteem.com\"], \"failing_nodes\":
3544
+ {\"https:\/\/api.steemitstage.com\": \"NumRetriesReached\"}, \"report\": [{\"node\":
3545
+ \"https:\/\/steemd.minnowsupportproject.org\", \"version\": \"0.21.0\", \"block\":
3546
+ {\"rank\": 1, \"ok\": true, \"count\": 713, \"time\": 30.03}, \"history\":
3547
+ {\"rank\": 5, \"ok\": true, \"count\": 5859, \"time\": 15.24}, \"apicall\":
3548
+ {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr != _registered_apis.end():
3549
+ Could not find API tags_api\", \"time\": 0.19, \"access_time\": 30.0}, \"config\":
3550
+ {\"rank\": 1, \"ok\": true, \"time\": 0.43, \"access_time\": 0.03}, \"block_diff\":
3551
+ {\"rank\": 2, \"ok\": true, \"head_delay\": 3.2, \"diff_head_irreversible\":
3552
+ 16.0, \"time\": 16.21}}, {\"node\": \"https:\/\/api.steemit.com\", \"version\":
3553
+ \"0.21.0\", \"block\": {\"rank\": 3, \"ok\": true, \"count\": 249, \"time\":
3554
+ 30.01}, \"history\": {\"rank\": 2, \"ok\": true, \"count\": 12626, \"time\":
3555
+ 15.06}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3556
+ found\", \"time\": 0.5, \"access_time\": 30.0}, \"config\": {\"rank\": 2,
3557
+ \"ok\": true, \"time\": 1.01, \"access_time\": 0.1}, \"block_diff\": {\"rank\":
3558
+ 3, \"ok\": true, \"head_delay\": 3.06, \"diff_head_irreversible\": 17.0, \"time\":
3559
+ 18.1}}, {\"node\": \"http:\/\/anyx.io\", \"version\": \"0.20.10\", \"block\":
3560
+ {\"rank\": 4, \"ok\": true, \"count\": 133, \"time\": 30.35}, \"history\":
3561
+ {\"rank\": 3, \"ok\": true, \"count\": 6768, \"time\": 15.16}, \"apicall\":
3562
+ {\"rank\": 2, \"ok\": true, \"time\": 1.54, \"access_time\": 0.449}, \"config\":
3563
+ {\"rank\": 3, \"ok\": true, \"time\": 1.13, \"access_time\": 0.09}, \"block_diff\":
3564
+ {\"rank\": 6, \"ok\": true, \"head_delay\": 4.29, \"diff_head_irreversible\":
3565
+ 19.0, \"time\": 19.34}}, {\"node\": \"https:\/\/anyx.io\", \"version\": \"0.20.10\",
3566
+ \"block\": {\"rank\": 5, \"ok\": true, \"count\": 128, \"time\": 30.15}, \"history\":
3567
+ {\"rank\": 4, \"ok\": true, \"count\": 6667, \"time\": 15.06}, \"apicall\":
3568
+ {\"rank\": 1, \"ok\": true, \"time\": 1.3, \"access_time\": 0.4}, \"config\":
3569
+ {\"rank\": 4, \"ok\": true, \"time\": 1.33, \"access_time\": 0.09}, \"block_diff\":
3570
+ {\"rank\": 1, \"ok\": true, \"head_delay\": 2.67, \"diff_head_irreversible\":
3571
+ 16.0, \"time\": 19.44}}, {\"node\": \"https:\/\/api.steemitdev.com\", \"version\":
3572
+ \"0.21.0\", \"block\": {\"rank\": 2, \"ok\": true, \"count\": 275, \"time\":
3573
+ 30.04}, \"history\": {\"rank\": 1, \"ok\": true, \"count\": 13131, \"time\":
3574
+ 15.09}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Method not
3575
+ found\", \"time\": 0.54, \"access_time\": 30.0}, \"config\": {\"rank\": 5,
3576
+ \"ok\": true, \"time\": 1.4, \"access_time\": 0.09}, \"block_diff\": {\"rank\":
3577
+ 4, \"ok\": true, \"head_delay\": 2.76, \"diff_head_irreversible\": 18.0, \"time\":
3578
+ 18.35}}, {\"node\": \"https:\/\/api.steem.house\", \"version\": \"0.21.0\",
3579
+ \"block\": {\"rank\": 6, \"ok\": true, \"count\": 93, \"time\": 30.22}, \"history\":
3580
+ {\"rank\": 6, \"ok\": true, \"count\": 5152, \"time\": 15.21}, \"apicall\":
3581
+ {\"rank\": -1, \"ok\": false, \"error\": \"Method not found\", \"time\": 0.66,
3582
+ \"access_time\": 30.0}, \"config\": {\"rank\": 6, \"ok\": true, \"time\":
3583
+ 2.77, \"access_time\": 0.26}, \"block_diff\": {\"rank\": 7, \"ok\": true,
3584
+ \"head_delay\": 3.3, \"diff_head_irreversible\": 21.0, \"time\": 22.91}},
3585
+ {\"node\": \"https:\/\/rpc.usesteem.com\", \"version\": \"0.20.10\", \"block\":
3586
+ {\"rank\": 7, \"ok\": true, \"count\": 57, \"time\": 30.31}, \"history\":
3587
+ {\"rank\": 7, \"ok\": true, \"count\": 2728, \"time\": 15.26}, \"apicall\":
3588
+ {\"rank\": 3, \"ok\": true, \"time\": 5.9, \"access_time\": 1.679}, \"config\":
3589
+ {\"rank\": 7, \"ok\": true, \"time\": 4.09, \"access_time\": 0.39}, \"block_diff\":
3590
+ {\"rank\": 5, \"ok\": true, \"head_delay\": 3.23, \"diff_head_irreversible\":
3591
+ 19.0, \"time\": 28.42}}, {\"node\": \"https:\/\/steemd.privex.io\", \"version\":
3592
+ \"0.21.0\", \"block\": {\"rank\": 8, \"ok\": true, \"count\": 28, \"time\":
3593
+ 30.99}, \"history\": {\"rank\": 8, \"ok\": true, \"count\": 1314, \"time\":
3594
+ 15.02}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\": \"Assert Exception:api_itr
3595
+ != _registered_apis.end(): Could not find API tags_api\", \"time\": 1.09,
3596
+ \"access_time\": 30.0}, \"config\": {\"rank\": 8, \"ok\": true, \"time\":
3597
+ 9.11, \"access_time\": 1.0}, \"block_diff\": {\"rank\": 8, \"ok\": true, \"head_delay\":
3598
+ 4.33, \"diff_head_irreversible\": 22.0, \"time\": 39.83}}, {\"node\": \"https:\/\/appbasetest.timcliff.com\",
3599
+ \"version\": \"0.21.0\", \"block\": {\"rank\": 9, \"ok\": true, \"count\":
3600
+ 17, \"time\": 30.16}, \"history\": {\"rank\": 9, \"ok\": true, \"count\":
3601
+ 1314, \"time\": 15.01}, \"apicall\": {\"rank\": -1, \"ok\": false, \"error\":
3602
+ \"@taskmaster4450\/rewards-are-rewards|holger80\", \"time\": 2.01, \"access_time\":
3603
+ 30.0}, \"config\": {\"rank\": 9, \"ok\": true, \"time\": 10.11, \"access_time\":
3604
+ 0.08}, \"block_diff\": {\"rank\": 9, \"ok\": true, \"head_delay\": 2822132.87,
3605
+ \"diff_head_irreversible\": 16.0, \"time\": 53.19}}], \"parameter\": {\"num_retries\":
3606
+ 3, \"num_retries_call\": 3, \"timeout\": 30, \"threading\": false, \"beem_version\":
3607
+ \"0.20.23\", \"start_time\": \"2019-08-27T14:10:02\", \"end_time\": \"2019-08-27T14:22:42\",
3608
+ \"script_version\": \"1.2.3\", \"benchmarks\": {\"block\": {\"data\": [\"count\"]},
3609
+ \"history\": {\"data\": [\"count\"]}, \"apicall\": {\"data\": [\"access_time\"]},
3610
+ \"config\": {\"data\": [\"access_time\"]}, \"block_diff\": {\"data\": [\"diff_head_irreversible\",
3611
+ \"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
3612
+ 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
3613
+ 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
3614
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"5.828499
3615
+ VESTS","reward_vesting_steem":"0.003 STEEM","vesting_shares":"37837.752919
3616
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"8200.502706
3617
+ 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
3618
+ STEEM","reputation":"22865758503573","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}]}'
3619
+ recorded_at: Sat, 17 Oct 2020 05:03:07 GMT
3620
+ - request:
3621
+ method: post
3622
+ uri: https://api.steemit.com/
3623
+ body:
3624
+ encoding: UTF-8
3625
+ string: '{"jsonrpc":"2.0","id":35,"method":"condenser_api.get_accounts","params":[["ned"]]}'
3626
+ headers:
3627
+ Content-Type:
3628
+ - application/json; charset=utf-8
3629
+ User-Agent:
3630
+ - steem-ruby/0.9.4
3631
+ Accept-Encoding:
3632
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3633
+ Accept:
3634
+ - "*/*"
3635
+ Host:
3636
+ - api.steemit.com
3637
+ Content-Length:
3638
+ - '93'
3639
+ response:
3640
+ status:
3641
+ code: 200
3642
+ message: OK
3643
+ headers:
3644
+ Date:
3645
+ - Sat, 17 Oct 2020 05:03:07 GMT
3646
+ Content-Type:
3647
+ - application/json
3648
+ Transfer-Encoding:
3649
+ - chunked
3650
+ Connection:
3651
+ - keep-alive
3652
+ Server:
3653
+ - nginx
3654
+ X-Jussi-Request-Id:
3655
+ - '000888854002374863'
3656
+ X-Amzn-Trace-Id:
3657
+ - Root=1-5f8a7b0b-3cebf21d2a7ec2a66504b1db
3658
+ Access-Control-Allow-Origin:
3659
+ - "*"
3660
+ Access-Control-Allow-Methods:
3661
+ - GET, POST, OPTIONS
3662
+ Access-Control-Allow-Headers:
3663
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
3664
+ Strict-Transport-Security:
3665
+ - max-age=31557600; includeSubDomains; preload
3666
+ Content-Security-Policy:
3667
+ - upgrade-insecure-requests
3668
+ body:
3669
+ encoding: ASCII-8BIT
3670
+ string: '{"jsonrpc":"2.0","result":[{"id":497,"name":"ned","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM81Ft8iwQk7M8vYgQgri23HHPafcJji58Jy9ubu372ZYNLwpmC3",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM739EcxvhQRrWQZtHJmBqwF1DxNwnaTAxwzQrQov7N642zmW34J",1]]},"posting":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM8dvbzCXcVk3kn4Ps58ioVS1qRBb9Hgg2V737pMAZ2NHiN6XQiF",1]]},"memo_key":"STM7VSfc1GcHND9ihAd6xxLFoqtJk8Ynhwi5dd2mFS2bAFthvGQg3","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmTnCCqNRTrCtaXNF9xYa7RNtP4DEnoxg47WXjinUiAzoi\/IMG_9261.jpg\",\"location\":\"Welcome
3671
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7\",\"location\":\"Welcome
3672
+ to Steemit!\",\"name\":\"ned\",\"cover_image\":\"https:\/\/steemit.com\/images\/steemit.png\",\"website\":\"https:\/\/smt.steem.io\"}}","proxy":"","last_owner_update":"2020-01-24T04:37:09","last_account_update":"2020-02-16T02:38:27","created":"2016-03-31T14:21:45","mined":false,"recovery_account":"steem","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":1040,"can_vote":true,"voting_manabar":{"current_mana":"23383848981693","last_update_time":1590183048},"downvote_manabar":{"current_mana":"5845962245423","last_update_time":1590183048},"voting_power":0,"balance":"13.530
3673
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"6823.211 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2020-02-14T22:14:12","sbd_last_interest_payment":"2020-02-14T22:14:12","savings_sbd_balance":"1249.949
3674
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2017-01-01T19:19:27","savings_sbd_last_interest_payment":"2017-01-01T19:19:27","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
3675
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"3162.928310
3676
+ VESTS","reward_vesting_steem":"1.614 STEEM","vesting_shares":"23383848.981693
3677
+ VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"0.000000
3678
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"3673423395323719","to_withdraw":"3673423395323719","withdraw_routes":0,"curation_rewards":734765434,"posting_rewards":8682597,"proxied_vsf_votes":["9900390092",0,0,0],"witnesses_voted_for":0,"last_post":"2020-04-15T06:49:03","last_root_post":"2020-04-15T06:49:03","last_vote_time":"2020-04-18T06:13:54","post_bandwidth":10000,"pending_claimed_accounts":0,"vesting_balance":"0.000
3679
+ STEEM","reputation":"94618884951942","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":[],"tags_usage":[],"guest_bloggers":[]}],"id":35}'
3680
+ recorded_at: Sat, 17 Oct 2020 05:03:07 GMT
3681
+ recorded_with: VCR 6.0.0