radiator 0.4.6pre1 → 0.4.8.pre.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -12
  3. data/Rakefile +53 -23
  4. data/lib/radiator.rb +3 -1
  5. data/lib/radiator/api.rb +111 -16
  6. data/lib/radiator/bridge.rb +34 -0
  7. data/lib/radiator/broadcast_operations.json +7 -7
  8. data/lib/radiator/chain.rb +1 -1
  9. data/lib/radiator/chain_config.rb +9 -2
  10. data/lib/radiator/database_api.rb +1 -1
  11. data/lib/radiator/error_parser.rb +1 -1
  12. data/lib/radiator/follow_api.rb +1 -1
  13. data/lib/radiator/market_history_api.rb +1 -1
  14. data/lib/radiator/mixins/acts_as_poster.rb +4 -4
  15. data/lib/radiator/operation.rb +3 -2
  16. data/lib/radiator/operation_types.rb +43 -27
  17. data/lib/radiator/ssc/base_steem_smart_contract_rpc.rb +1 -1
  18. data/lib/radiator/stream.rb +21 -8
  19. data/lib/radiator/transaction.rb +43 -3
  20. data/lib/radiator/type/amount.rb +8 -50
  21. data/lib/radiator/type/beneficiaries.rb +8 -1
  22. data/lib/radiator/type/price.rb +2 -2
  23. data/lib/radiator/version.rb +1 -1
  24. data/radiator.gemspec +17 -13
  25. data/test/fixtures/empty.json +1 -0
  26. data/test/fixtures/error.json +29 -0
  27. data/test/fixtures/follow_api_get_followers.json +1 -0
  28. data/test/fixtures/get_account.json +165 -0
  29. data/test/fixtures/get_account_count.json +1 -0
  30. data/test/fixtures/get_account_references.json +1 -0
  31. data/test/fixtures/get_block.json +193 -0
  32. data/test/fixtures/get_dynamic_global_properties.json +32 -0
  33. data/test/fixtures/get_feed_history.json +684 -0
  34. data/test/fixtures/get_hardfork_version.json +1 -0
  35. data/test/fixtures/get_key_references.json +14 -0
  36. data/test/fixtures/get_stats_for_time.json +57 -0
  37. data/test/fixtures/get_vesting_delegation.json +936 -0
  38. data/test/fixtures/golos_get_dynamic_global_properties.json +32 -0
  39. data/test/fixtures/market_history_api_get_market_history_buckets.json +1 -0
  40. data/test/fixtures/market_history_api_get_order_book.json +109 -0
  41. data/test/fixtures/market_history_api_get_recent_trades.json +55 -0
  42. data/test/fixtures/market_history_api_get_ticker.json +11 -0
  43. data/test/fixtures/market_history_api_get_volume.json +1 -0
  44. data/test/fixtures/null.json +1 -0
  45. data/test/fixtures/vcr_cassettes/account_by_key_api_all_methods.yml +1465 -0
  46. data/test/fixtures/vcr_cassettes/account_by_key_api_jsonrpc.yml +199 -0
  47. data/test/fixtures/vcr_cassettes/api_all_methods.yml +13802 -0
  48. data/test/fixtures/vcr_cassettes/api_jsonrpc.yml +53 -0
  49. data/test/fixtures/vcr_cassettes/base_per_debt.yml +11068 -0
  50. data/test/fixtures/vcr_cassettes/base_per_mvest.yml +6024 -0
  51. data/test/fixtures/vcr_cassettes/block_time.yml +5368 -0
  52. data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +1723 -0
  53. data/test/fixtures/vcr_cassettes/chain_stats_api_jsonrpc.yml +51 -0
  54. data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +13770 -0
  55. data/test/fixtures/vcr_cassettes/condenser_api_jsonrpc.yml +103 -0
  56. data/test/fixtures/vcr_cassettes/expiration_initialize.yml +16108 -0
  57. data/test/fixtures/vcr_cassettes/find_account.yml +5732 -0
  58. data/test/fixtures/vcr_cassettes/find_block.yml +5322 -0
  59. data/test/fixtures/vcr_cassettes/find_comment.yml +16386 -0
  60. data/test/fixtures/vcr_cassettes/follow_api_jsonrpc.yml +99 -0
  61. data/test/fixtures/vcr_cassettes/get_account_count.yml +783 -0
  62. data/test/fixtures/vcr_cassettes/get_account_references.yml +773 -0
  63. data/test/fixtures/vcr_cassettes/get_accounts.yml +918 -0
  64. data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +773 -0
  65. data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +893 -0
  66. data/test/fixtures/vcr_cassettes/get_feed_history.yml +1432 -0
  67. data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +835 -0
  68. data/test/fixtures/vcr_cassettes/get_key_references.yml +1571 -0
  69. data/test/fixtures/vcr_cassettes/get_market_history.yml +1563 -0
  70. data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +1665 -0
  71. data/test/fixtures/vcr_cassettes/get_order_book.yml +1459 -0
  72. data/test/fixtures/vcr_cassettes/get_recent_trades.yml +1459 -0
  73. data/test/fixtures/vcr_cassettes/get_ticker.yml +1563 -0
  74. data/test/fixtures/vcr_cassettes/get_trade_history.yml +1459 -0
  75. data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +731 -0
  76. data/test/fixtures/vcr_cassettes/get_volume.yml +1561 -0
  77. data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +835 -0
  78. data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +831 -0
  79. data/test/fixtures/vcr_cassettes/market_history_api_all_methods.yml +10191 -0
  80. data/test/fixtures/vcr_cassettes/market_history_api_jsonrpc.yml +51 -0
  81. data/test/fixtures/vcr_cassettes/network_broadcast_api_all_methods.yml +2455 -0
  82. data/test/fixtures/vcr_cassettes/network_broadcast_api_jsonrpc.yml +51 -0
  83. data/test/fixtures/vcr_cassettes/properties.yml +5551 -0
  84. data/test/fixtures/vcr_cassettes/recover_transaction.yml +1815 -0
  85. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info.yml +90 -0
  86. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info_invalid.yml +88 -0
  87. data/test/fixtures/vcr_cassettes/ssc_blockchain_latest_block_info.yml +90 -0
  88. data/test/fixtures/vcr_cassettes/ssc_blockchain_transaction_info.yml +90 -0
  89. data/test/fixtures/vcr_cassettes/ssc_contracts_contract.yml +364 -0
  90. data/test/fixtures/vcr_cassettes/ssc_contracts_find.yml +89 -0
  91. data/test/fixtures/vcr_cassettes/ssc_contracts_find_one.yml +87 -0
  92. data/test/fixtures/vcr_cassettes/stream_jsonrpc.yml +27502 -0
  93. data/test/fixtures/vcr_cassettes/tag_api_jsonrpc.yml +155 -0
  94. data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +17597 -0
  95. data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +61 -0
  96. data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +13038 -0
  97. data/test/fixtures/vcr_cassettes/valid_chains.yml +11450 -0
  98. data/test/radiator/account_by_key_api_test.rb +46 -0
  99. data/test/radiator/api_test.rb +135 -0
  100. data/test/radiator/chain_stats_api_test.rb +49 -0
  101. data/test/radiator/chain_test.rb +153 -0
  102. data/test/radiator/condenser_api_test.rb +48 -0
  103. data/test/radiator/follow_api_test.rb +48 -0
  104. data/test/radiator/market_history_api_test.rb +100 -0
  105. data/test/radiator/network_broadcast_api_test.rb +48 -0
  106. data/test/radiator/operation_test.rb +116 -0
  107. data/test/radiator/ssc/blockchain_test.rb +58 -0
  108. data/test/radiator/ssc/contracts_test.rb +65 -0
  109. data/test/radiator/stream_test.rb +48 -0
  110. data/test/radiator/tag_api_test.rb +40 -0
  111. data/test/radiator/transaction_test.rb +755 -0
  112. data/test/test_helper.rb +66 -0
  113. metadata +187 -79
  114. data/.codeclimate.yml +0 -19
  115. data/.gitignore +0 -52
  116. data/.travis.yml +0 -23
  117. data/gource.sh +0 -8
  118. data/images/Anthony Martin.png +0 -0
  119. data/images/Marvin Hofmann.jpg +0 -0
  120. data/images/Marvin Hofmann.png +0 -0
  121. data/lib/steem.rb +0 -17
@@ -0,0 +1,1665 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.steemitdev.com/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"jsonrpc":"2.0","id":8,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
9
+ headers:
10
+ Content-Type:
11
+ - application/json; charset=utf-8
12
+ User-Agent:
13
+ - steem-ruby/0.9.5
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - "*/*"
18
+ Host:
19
+ - api.steemitdev.com
20
+ Content-Length:
21
+ - '94'
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Sat, 07 Nov 2020 19:44:21 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '71'
33
+ Connection:
34
+ - keep-alive
35
+ Server:
36
+ - nginx
37
+ X-Jussi-Request-Id:
38
+ - '000485615469389391'
39
+ X-Amzn-Trace-Id:
40
+ - Root=1-5fa6f914-1e0597da2521eca344467539
41
+ Access-Control-Allow-Origin:
42
+ - "*"
43
+ Access-Control-Allow-Methods:
44
+ - GET, POST, OPTIONS
45
+ Access-Control-Allow-Headers:
46
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
47
+ Strict-Transport-Security:
48
+ - max-age=31557600; includeSubDomains; preload
49
+ Content-Security-Policy:
50
+ - upgrade-insecure-requests
51
+ body:
52
+ encoding: UTF-8
53
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":8}'
54
+ recorded_at: Sat, 07 Nov 2020 19:44:22 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://api.steemitdev.com/
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"jsonrpc":"2.0","id":9,"method":"market_history_api.get_market_history_buckets","params":{}}'
61
+ headers:
62
+ Content-Type:
63
+ - application/json; charset=utf-8
64
+ User-Agent:
65
+ - steem-ruby/0.9.5
66
+ Accept-Encoding:
67
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
68
+ Accept:
69
+ - "*/*"
70
+ Host:
71
+ - api.steemitdev.com
72
+ Content-Length:
73
+ - '125'
74
+ response:
75
+ status:
76
+ code: 200
77
+ message: OK
78
+ headers:
79
+ Date:
80
+ - Sat, 07 Nov 2020 19:44:24 GMT
81
+ Content-Type:
82
+ - application/json
83
+ Content-Length:
84
+ - '73'
85
+ Connection:
86
+ - keep-alive
87
+ Server:
88
+ - nginx
89
+ X-Jussi-Request-Id:
90
+ - '000445239534113032'
91
+ X-Amzn-Trace-Id:
92
+ - Root=1-5fa6f916-40d74d023af6015267126386
93
+ Access-Control-Allow-Origin:
94
+ - "*"
95
+ Access-Control-Allow-Methods:
96
+ - GET, POST, OPTIONS
97
+ Access-Control-Allow-Headers:
98
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
99
+ Strict-Transport-Security:
100
+ - max-age=31557600; includeSubDomains; preload
101
+ Content-Security-Policy:
102
+ - upgrade-insecure-requests
103
+ body:
104
+ encoding: UTF-8
105
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":9}'
106
+ recorded_at: Sat, 07 Nov 2020 19:44:24 GMT
107
+ - request:
108
+ method: post
109
+ uri: https://api.steemitdev.com/
110
+ body:
111
+ encoding: UTF-8
112
+ string: '{"jsonrpc":"2.0","id":10,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
113
+ headers:
114
+ Content-Type:
115
+ - application/json; charset=utf-8
116
+ User-Agent:
117
+ - steem-ruby/0.9.5
118
+ Accept-Encoding:
119
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
120
+ Accept:
121
+ - "*/*"
122
+ Host:
123
+ - api.steemitdev.com
124
+ Content-Length:
125
+ - '77'
126
+ response:
127
+ status:
128
+ code: 200
129
+ message: OK
130
+ headers:
131
+ Date:
132
+ - Sat, 07 Nov 2020 20:12:27 GMT
133
+ Content-Type:
134
+ - application/json
135
+ Content-Length:
136
+ - '72'
137
+ Connection:
138
+ - keep-alive
139
+ Server:
140
+ - nginx
141
+ X-Jussi-Request-Id:
142
+ - '000909022495227919'
143
+ X-Amzn-Trace-Id:
144
+ - Root=1-5fa6ffa9-7a4f609448b520f13cbab065
145
+ Access-Control-Allow-Origin:
146
+ - "*"
147
+ Access-Control-Allow-Methods:
148
+ - GET, POST, OPTIONS
149
+ Access-Control-Allow-Headers:
150
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
151
+ Strict-Transport-Security:
152
+ - max-age=31557600; includeSubDomains; preload
153
+ Content-Security-Policy:
154
+ - upgrade-insecure-requests
155
+ body:
156
+ encoding: UTF-8
157
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":10}'
158
+ recorded_at: Sat, 07 Nov 2020 20:12:27 GMT
159
+ - request:
160
+ method: post
161
+ uri: https://api.steemitdev.com/
162
+ body:
163
+ encoding: UTF-8
164
+ string: '{"jsonrpc":"2.0","id":11,"method":"market_history_api.get_market_history_buckets","params":{}}'
165
+ headers:
166
+ Content-Type:
167
+ - application/json; charset=utf-8
168
+ User-Agent:
169
+ - steem-ruby/0.9.5
170
+ Accept-Encoding:
171
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
172
+ Accept:
173
+ - "*/*"
174
+ Host:
175
+ - api.steemitdev.com
176
+ Content-Length:
177
+ - '126'
178
+ response:
179
+ status:
180
+ code: 200
181
+ message: OK
182
+ headers:
183
+ Date:
184
+ - Sat, 07 Nov 2020 20:12:27 GMT
185
+ Content-Type:
186
+ - application/json
187
+ Content-Length:
188
+ - '74'
189
+ Connection:
190
+ - keep-alive
191
+ Server:
192
+ - nginx
193
+ X-Jussi-Request-Id:
194
+ - '000086425559151632'
195
+ X-Amzn-Trace-Id:
196
+ - Root=1-5fa6ffab-4ab4f9de3bb02f747d229023
197
+ Access-Control-Allow-Origin:
198
+ - "*"
199
+ Access-Control-Allow-Methods:
200
+ - GET, POST, OPTIONS
201
+ Access-Control-Allow-Headers:
202
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
203
+ Strict-Transport-Security:
204
+ - max-age=31557600; includeSubDomains; preload
205
+ Content-Security-Policy:
206
+ - upgrade-insecure-requests
207
+ body:
208
+ encoding: UTF-8
209
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":11}'
210
+ recorded_at: Sat, 07 Nov 2020 20:12:27 GMT
211
+ - request:
212
+ method: post
213
+ uri: https://api.steemitdev.com/
214
+ body:
215
+ encoding: UTF-8
216
+ string: '{"jsonrpc":"2.0","id":36,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
217
+ headers:
218
+ Content-Type:
219
+ - application/json; charset=utf-8
220
+ User-Agent:
221
+ - steem-ruby/0.9.5
222
+ Accept-Encoding:
223
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
224
+ Accept:
225
+ - "*/*"
226
+ Host:
227
+ - api.steemitdev.com
228
+ Content-Length:
229
+ - '95'
230
+ response:
231
+ status:
232
+ code: 200
233
+ message: OK
234
+ headers:
235
+ Date:
236
+ - Sat, 07 Nov 2020 20:21:17 GMT
237
+ Content-Type:
238
+ - application/json
239
+ Content-Length:
240
+ - '72'
241
+ Connection:
242
+ - keep-alive
243
+ Server:
244
+ - nginx
245
+ X-Jussi-Request-Id:
246
+ - '000797568439912626'
247
+ X-Amzn-Trace-Id:
248
+ - Root=1-5fa701bc-78cc36013c3700354c97d015
249
+ Access-Control-Allow-Origin:
250
+ - "*"
251
+ Access-Control-Allow-Methods:
252
+ - GET, POST, OPTIONS
253
+ Access-Control-Allow-Headers:
254
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
255
+ Strict-Transport-Security:
256
+ - max-age=31557600; includeSubDomains; preload
257
+ Content-Security-Policy:
258
+ - upgrade-insecure-requests
259
+ body:
260
+ encoding: UTF-8
261
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":36}'
262
+ recorded_at: Sat, 07 Nov 2020 20:21:17 GMT
263
+ - request:
264
+ method: post
265
+ uri: https://api.steemitdev.com/
266
+ body:
267
+ encoding: UTF-8
268
+ string: '{"jsonrpc":"2.0","id":37,"method":"market_history_api.get_market_history_buckets","params":{}}'
269
+ headers:
270
+ Content-Type:
271
+ - application/json; charset=utf-8
272
+ User-Agent:
273
+ - steem-ruby/0.9.5
274
+ Accept-Encoding:
275
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
276
+ Accept:
277
+ - "*/*"
278
+ Host:
279
+ - api.steemitdev.com
280
+ Content-Length:
281
+ - '126'
282
+ response:
283
+ status:
284
+ code: 200
285
+ message: OK
286
+ headers:
287
+ Date:
288
+ - Sat, 07 Nov 2020 20:21:19 GMT
289
+ Content-Type:
290
+ - application/json
291
+ Content-Length:
292
+ - '74'
293
+ Connection:
294
+ - keep-alive
295
+ Server:
296
+ - nginx
297
+ X-Jussi-Request-Id:
298
+ - '000010924246673772'
299
+ X-Amzn-Trace-Id:
300
+ - Root=1-5fa701be-62b47e7d1a199907740c212e
301
+ Access-Control-Allow-Origin:
302
+ - "*"
303
+ Access-Control-Allow-Methods:
304
+ - GET, POST, OPTIONS
305
+ Access-Control-Allow-Headers:
306
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
307
+ Strict-Transport-Security:
308
+ - max-age=31557600; includeSubDomains; preload
309
+ Content-Security-Policy:
310
+ - upgrade-insecure-requests
311
+ body:
312
+ encoding: UTF-8
313
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":37}'
314
+ recorded_at: Sat, 07 Nov 2020 20:21:19 GMT
315
+ - request:
316
+ method: post
317
+ uri: https://api.steemitdev.com/
318
+ body:
319
+ encoding: UTF-8
320
+ string: '{"jsonrpc":"2.0","id":103,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
321
+ headers:
322
+ Content-Type:
323
+ - application/json; charset=utf-8
324
+ User-Agent:
325
+ - steem-ruby/0.9.5
326
+ Accept-Encoding:
327
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
328
+ Accept:
329
+ - "*/*"
330
+ Host:
331
+ - api.steemit.com
332
+ Content-Length:
333
+ - '86'
334
+ response:
335
+ status:
336
+ code: 200
337
+ message: OK
338
+ headers:
339
+ Date:
340
+ - Sat, 07 Nov 2020 20:28:06 GMT
341
+ Content-Type:
342
+ - application/json
343
+ Content-Length:
344
+ - '73'
345
+ Connection:
346
+ - keep-alive
347
+ Server:
348
+ - nginx
349
+ X-Jussi-Request-Id:
350
+ - '000399342580834376'
351
+ X-Amzn-Trace-Id:
352
+ - Root=1-5fa70354-657175d41cfbf839395f5978
353
+ Access-Control-Allow-Origin:
354
+ - "*"
355
+ Access-Control-Allow-Methods:
356
+ - GET, POST, OPTIONS
357
+ Access-Control-Allow-Headers:
358
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
359
+ Strict-Transport-Security:
360
+ - max-age=31557600; includeSubDomains; preload
361
+ Content-Security-Policy:
362
+ - upgrade-insecure-requests
363
+ body:
364
+ encoding: UTF-8
365
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":103}'
366
+ recorded_at: Sat, 07 Nov 2020 20:28:06 GMT
367
+ - request:
368
+ method: post
369
+ uri: https://api.steemitdev.com/
370
+ body:
371
+ encoding: UTF-8
372
+ string: '{"jsonrpc":"2.0","id":104,"method":"market_history_api.get_market_history_buckets","params":{}}'
373
+ headers:
374
+ Content-Type:
375
+ - application/json; charset=utf-8
376
+ User-Agent:
377
+ - steem-ruby/0.9.5
378
+ Accept-Encoding:
379
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
380
+ Accept:
381
+ - "*/*"
382
+ Host:
383
+ - api.steemit.com
384
+ Content-Length:
385
+ - '127'
386
+ response:
387
+ status:
388
+ code: 200
389
+ message: OK
390
+ headers:
391
+ Date:
392
+ - Sat, 07 Nov 2020 20:28:06 GMT
393
+ Content-Type:
394
+ - application/json
395
+ Content-Length:
396
+ - '75'
397
+ Connection:
398
+ - keep-alive
399
+ Server:
400
+ - nginx
401
+ X-Jussi-Request-Id:
402
+ - '000219877784589658'
403
+ X-Amzn-Trace-Id:
404
+ - Root=1-5fa70356-2bbeeff6280598362c972835
405
+ Access-Control-Allow-Origin:
406
+ - "*"
407
+ Access-Control-Allow-Methods:
408
+ - GET, POST, OPTIONS
409
+ Access-Control-Allow-Headers:
410
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
411
+ Strict-Transport-Security:
412
+ - max-age=31557600; includeSubDomains; preload
413
+ Content-Security-Policy:
414
+ - upgrade-insecure-requests
415
+ body:
416
+ encoding: UTF-8
417
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":104}'
418
+ recorded_at: Sat, 07 Nov 2020 20:28:06 GMT
419
+ - request:
420
+ method: post
421
+ uri: https://api.steemitdev.com/
422
+ body:
423
+ encoding: UTF-8
424
+ string: '{"jsonrpc":"2.0","id":62,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
425
+ headers:
426
+ Content-Type:
427
+ - application/json; charset=utf-8
428
+ User-Agent:
429
+ - steem-ruby/0.9.5
430
+ Accept-Encoding:
431
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
432
+ Accept:
433
+ - "*/*"
434
+ Host:
435
+ - api.steemitdev.com
436
+ Content-Length:
437
+ - '78'
438
+ response:
439
+ status:
440
+ code: 200
441
+ message: OK
442
+ headers:
443
+ Date:
444
+ - Sat, 07 Nov 2020 20:31:11 GMT
445
+ Content-Type:
446
+ - application/json
447
+ Content-Length:
448
+ - '72'
449
+ Connection:
450
+ - keep-alive
451
+ Server:
452
+ - nginx
453
+ X-Jussi-Request-Id:
454
+ - '000278224021313402'
455
+ X-Amzn-Trace-Id:
456
+ - Root=1-5fa7040e-0caa0c8e304f844f0813d9b7
457
+ Access-Control-Allow-Origin:
458
+ - "*"
459
+ Access-Control-Allow-Methods:
460
+ - GET, POST, OPTIONS
461
+ Access-Control-Allow-Headers:
462
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
463
+ Strict-Transport-Security:
464
+ - max-age=31557600; includeSubDomains; preload
465
+ Content-Security-Policy:
466
+ - upgrade-insecure-requests
467
+ body:
468
+ encoding: UTF-8
469
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":62}'
470
+ recorded_at: Sat, 07 Nov 2020 20:31:11 GMT
471
+ - request:
472
+ method: post
473
+ uri: https://api.steemitdev.com/
474
+ body:
475
+ encoding: UTF-8
476
+ string: '{"jsonrpc":"2.0","id":63,"method":"market_history_api.get_market_history_buckets","params":{}}'
477
+ headers:
478
+ Content-Type:
479
+ - application/json; charset=utf-8
480
+ User-Agent:
481
+ - steem-ruby/0.9.5
482
+ Accept-Encoding:
483
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
484
+ Accept:
485
+ - "*/*"
486
+ Host:
487
+ - api.steemitdev.com
488
+ Content-Length:
489
+ - '126'
490
+ response:
491
+ status:
492
+ code: 200
493
+ message: OK
494
+ headers:
495
+ Date:
496
+ - Sat, 07 Nov 2020 20:31:11 GMT
497
+ Content-Type:
498
+ - application/json
499
+ Content-Length:
500
+ - '74'
501
+ Connection:
502
+ - keep-alive
503
+ Server:
504
+ - nginx
505
+ X-Jussi-Request-Id:
506
+ - '001005172003324250'
507
+ X-Amzn-Trace-Id:
508
+ - Root=1-5fa7040f-27a3d7cb1d144504567a4c45
509
+ Access-Control-Allow-Origin:
510
+ - "*"
511
+ Access-Control-Allow-Methods:
512
+ - GET, POST, OPTIONS
513
+ Access-Control-Allow-Headers:
514
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
515
+ Strict-Transport-Security:
516
+ - max-age=31557600; includeSubDomains; preload
517
+ Content-Security-Policy:
518
+ - upgrade-insecure-requests
519
+ body:
520
+ encoding: UTF-8
521
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":63}'
522
+ recorded_at: Sat, 07 Nov 2020 20:31:11 GMT
523
+ - request:
524
+ method: post
525
+ uri: https://api.steemitdev.com/
526
+ body:
527
+ encoding: UTF-8
528
+ string: '{"jsonrpc":"2.0","id":50,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
529
+ headers:
530
+ Content-Type:
531
+ - application/json; charset=utf-8
532
+ User-Agent:
533
+ - steem-ruby/0.9.5
534
+ Accept-Encoding:
535
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
536
+ Accept:
537
+ - "*/*"
538
+ Host:
539
+ - api.steemitdev.com
540
+ Content-Length:
541
+ - '78'
542
+ response:
543
+ status:
544
+ code: 200
545
+ message: OK
546
+ headers:
547
+ Date:
548
+ - Sat, 07 Nov 2020 20:34:32 GMT
549
+ Content-Type:
550
+ - application/json
551
+ Content-Length:
552
+ - '72'
553
+ Connection:
554
+ - keep-alive
555
+ Server:
556
+ - nginx
557
+ X-Jussi-Request-Id:
558
+ - '000374665354343426'
559
+ X-Amzn-Trace-Id:
560
+ - Root=1-5fa704d0-12fded0b0de69080168aa0f9
561
+ Access-Control-Allow-Origin:
562
+ - "*"
563
+ Access-Control-Allow-Methods:
564
+ - GET, POST, OPTIONS
565
+ Access-Control-Allow-Headers:
566
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
567
+ Strict-Transport-Security:
568
+ - max-age=31557600; includeSubDomains; preload
569
+ Content-Security-Policy:
570
+ - upgrade-insecure-requests
571
+ body:
572
+ encoding: UTF-8
573
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":50}'
574
+ recorded_at: Sat, 07 Nov 2020 20:34:32 GMT
575
+ - request:
576
+ method: post
577
+ uri: https://api.steemitdev.com/
578
+ body:
579
+ encoding: UTF-8
580
+ string: '{"jsonrpc":"2.0","id":51,"method":"market_history_api.get_market_history_buckets","params":{}}'
581
+ headers:
582
+ Content-Type:
583
+ - application/json; charset=utf-8
584
+ User-Agent:
585
+ - steem-ruby/0.9.5
586
+ Accept-Encoding:
587
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
588
+ Accept:
589
+ - "*/*"
590
+ Host:
591
+ - api.steemitdev.com
592
+ Content-Length:
593
+ - '126'
594
+ response:
595
+ status:
596
+ code: 200
597
+ message: OK
598
+ headers:
599
+ Date:
600
+ - Sat, 07 Nov 2020 20:34:43 GMT
601
+ Content-Type:
602
+ - application/json
603
+ Content-Length:
604
+ - '174'
605
+ Connection:
606
+ - keep-alive
607
+ Server:
608
+ - nginx
609
+ X-Jussi-Error-Id:
610
+ - d83c4f2b-176c-4798-af98-df701ca4c40e
611
+ X-Jussi-Request-Id:
612
+ - '000613255503156942'
613
+ X-Amzn-Trace-Id:
614
+ - Root=1-5fa704d8-1a9d809203bf7aa229be8c89
615
+ Access-Control-Allow-Origin:
616
+ - "*"
617
+ Access-Control-Allow-Methods:
618
+ - GET, POST, OPTIONS
619
+ Access-Control-Allow-Headers:
620
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
621
+ Strict-Transport-Security:
622
+ - max-age=31557600; includeSubDomains; preload
623
+ Content-Security-Policy:
624
+ - upgrade-insecure-requests
625
+ body:
626
+ encoding: UTF-8
627
+ string: '{"jsonrpc":"2.0","id":51,"error":{"code":1000,"message":"Request Timeout","data":{"error_id":"d83c4f2b-176c-4798-af98-df701ca4c40e","jussi_request_id":"000856821111472545"}}}'
628
+ recorded_at: Sat, 07 Nov 2020 20:34:43 GMT
629
+ - request:
630
+ method: post
631
+ uri: https://api.steemitdev.com/
632
+ body:
633
+ encoding: UTF-8
634
+ string: '{"jsonrpc":"2.0","id":34,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
635
+ headers:
636
+ Content-Type:
637
+ - application/json; charset=utf-8
638
+ User-Agent:
639
+ - steem-ruby/0.9.5
640
+ Accept-Encoding:
641
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
642
+ Accept:
643
+ - "*/*"
644
+ Host:
645
+ - api.steemitdev.com
646
+ Content-Length:
647
+ - '90'
648
+ response:
649
+ status:
650
+ code: 200
651
+ message: OK
652
+ headers:
653
+ Date:
654
+ - Sat, 07 Nov 2020 20:41:15 GMT
655
+ Content-Type:
656
+ - application/json
657
+ Content-Length:
658
+ - '72'
659
+ Connection:
660
+ - keep-alive
661
+ Server:
662
+ - nginx
663
+ X-Jussi-Request-Id:
664
+ - '000061255354548539'
665
+ X-Amzn-Trace-Id:
666
+ - Root=1-5fa7066a-42783f0a50f2ba19428dbfdb
667
+ Access-Control-Allow-Origin:
668
+ - "*"
669
+ Access-Control-Allow-Methods:
670
+ - GET, POST, OPTIONS
671
+ Access-Control-Allow-Headers:
672
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
673
+ Strict-Transport-Security:
674
+ - max-age=31557600; includeSubDomains; preload
675
+ Content-Security-Policy:
676
+ - upgrade-insecure-requests
677
+ body:
678
+ encoding: UTF-8
679
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":34}'
680
+ recorded_at: Sat, 07 Nov 2020 20:41:15 GMT
681
+ - request:
682
+ method: post
683
+ uri: https://api.steemitdev.com/
684
+ body:
685
+ encoding: UTF-8
686
+ string: '{"jsonrpc":"2.0","id":35,"method":"market_history_api.get_market_history_buckets","params":{}}'
687
+ headers:
688
+ Content-Type:
689
+ - application/json; charset=utf-8
690
+ User-Agent:
691
+ - steem-ruby/0.9.5
692
+ Accept-Encoding:
693
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
694
+ Accept:
695
+ - "*/*"
696
+ Host:
697
+ - api.steemitdev.com
698
+ Content-Length:
699
+ - '126'
700
+ response:
701
+ status:
702
+ code: 200
703
+ message: OK
704
+ headers:
705
+ Date:
706
+ - Sat, 07 Nov 2020 20:41:17 GMT
707
+ Content-Type:
708
+ - application/json
709
+ Content-Length:
710
+ - '74'
711
+ Connection:
712
+ - keep-alive
713
+ Server:
714
+ - nginx
715
+ X-Jussi-Request-Id:
716
+ - '000296735637915796'
717
+ X-Amzn-Trace-Id:
718
+ - Root=1-5fa7066b-31a7ab2f647dbeef6b95991f
719
+ Access-Control-Allow-Origin:
720
+ - "*"
721
+ Access-Control-Allow-Methods:
722
+ - GET, POST, OPTIONS
723
+ Access-Control-Allow-Headers:
724
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
725
+ Strict-Transport-Security:
726
+ - max-age=31557600; includeSubDomains; preload
727
+ Content-Security-Policy:
728
+ - upgrade-insecure-requests
729
+ body:
730
+ encoding: UTF-8
731
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":35}'
732
+ recorded_at: Sat, 07 Nov 2020 20:41:17 GMT
733
+ - request:
734
+ method: post
735
+ uri: https://api.steemitdev.com/
736
+ body:
737
+ encoding: UTF-8
738
+ string: '{"jsonrpc":"2.0","id":31,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
739
+ headers:
740
+ Content-Type:
741
+ - application/json; charset=utf-8
742
+ User-Agent:
743
+ - steem-ruby/0.9.5
744
+ Accept-Encoding:
745
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
746
+ Accept:
747
+ - "*/*"
748
+ Host:
749
+ - api.steemitdev.com
750
+ Content-Length:
751
+ - '85'
752
+ response:
753
+ status:
754
+ code: 200
755
+ message: OK
756
+ headers:
757
+ Date:
758
+ - Sat, 07 Nov 2020 20:46:53 GMT
759
+ Content-Type:
760
+ - application/json
761
+ Content-Length:
762
+ - '72'
763
+ Connection:
764
+ - keep-alive
765
+ Server:
766
+ - nginx
767
+ X-Jussi-Request-Id:
768
+ - '000484136401006530'
769
+ X-Amzn-Trace-Id:
770
+ - Root=1-5fa707bc-3b93deb2403adef02278c0de
771
+ Access-Control-Allow-Origin:
772
+ - "*"
773
+ Access-Control-Allow-Methods:
774
+ - GET, POST, OPTIONS
775
+ Access-Control-Allow-Headers:
776
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
777
+ Strict-Transport-Security:
778
+ - max-age=31557600; includeSubDomains; preload
779
+ Content-Security-Policy:
780
+ - upgrade-insecure-requests
781
+ body:
782
+ encoding: UTF-8
783
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":31}'
784
+ recorded_at: Sat, 07 Nov 2020 20:46:53 GMT
785
+ - request:
786
+ method: post
787
+ uri: https://api.steemitdev.com/
788
+ body:
789
+ encoding: UTF-8
790
+ string: '{"jsonrpc":"2.0","id":32,"method":"market_history_api.get_market_history_buckets","params":{}}'
791
+ headers:
792
+ Content-Type:
793
+ - application/json; charset=utf-8
794
+ User-Agent:
795
+ - steem-ruby/0.9.5
796
+ Accept-Encoding:
797
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
798
+ Accept:
799
+ - "*/*"
800
+ Host:
801
+ - api.steemitdev.com
802
+ Content-Length:
803
+ - '126'
804
+ response:
805
+ status:
806
+ code: 200
807
+ message: OK
808
+ headers:
809
+ Date:
810
+ - Sat, 07 Nov 2020 20:46:57 GMT
811
+ Content-Type:
812
+ - application/json
813
+ Content-Length:
814
+ - '74'
815
+ Connection:
816
+ - keep-alive
817
+ Server:
818
+ - nginx
819
+ X-Jussi-Request-Id:
820
+ - '000536770393116413'
821
+ X-Amzn-Trace-Id:
822
+ - Root=1-5fa707be-3f505e940b4248371178600c
823
+ Access-Control-Allow-Origin:
824
+ - "*"
825
+ Access-Control-Allow-Methods:
826
+ - GET, POST, OPTIONS
827
+ Access-Control-Allow-Headers:
828
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
829
+ Strict-Transport-Security:
830
+ - max-age=31557600; includeSubDomains; preload
831
+ Content-Security-Policy:
832
+ - upgrade-insecure-requests
833
+ body:
834
+ encoding: UTF-8
835
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":32}'
836
+ recorded_at: Sat, 07 Nov 2020 20:46:58 GMT
837
+ - request:
838
+ method: post
839
+ uri: https://api.steemitdev.com/
840
+ body:
841
+ encoding: UTF-8
842
+ string: '{"jsonrpc":"2.0","id":24,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
843
+ headers:
844
+ Content-Type:
845
+ - application/json; charset=utf-8
846
+ User-Agent:
847
+ - steem-ruby/0.9.5
848
+ Accept-Encoding:
849
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
850
+ Accept:
851
+ - "*/*"
852
+ Host:
853
+ - api.steemitdev.com
854
+ Content-Length:
855
+ - '78'
856
+ response:
857
+ status:
858
+ code: 200
859
+ message: OK
860
+ headers:
861
+ Date:
862
+ - Sat, 07 Nov 2020 20:53:00 GMT
863
+ Content-Type:
864
+ - application/json
865
+ Content-Length:
866
+ - '72'
867
+ Connection:
868
+ - keep-alive
869
+ Server:
870
+ - nginx
871
+ X-Jussi-Request-Id:
872
+ - '000355119169585701'
873
+ X-Amzn-Trace-Id:
874
+ - Root=1-5fa7092b-1f81ef18141216e7127816c4
875
+ Access-Control-Allow-Origin:
876
+ - "*"
877
+ Access-Control-Allow-Methods:
878
+ - GET, POST, OPTIONS
879
+ Access-Control-Allow-Headers:
880
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
881
+ Strict-Transport-Security:
882
+ - max-age=31557600; includeSubDomains; preload
883
+ Content-Security-Policy:
884
+ - upgrade-insecure-requests
885
+ body:
886
+ encoding: UTF-8
887
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":24}'
888
+ recorded_at: Sat, 07 Nov 2020 20:53:00 GMT
889
+ - request:
890
+ method: post
891
+ uri: https://api.steemitdev.com/
892
+ body:
893
+ encoding: UTF-8
894
+ string: '{"jsonrpc":"2.0","id":25,"method":"market_history_api.get_market_history_buckets","params":{}}'
895
+ headers:
896
+ Content-Type:
897
+ - application/json; charset=utf-8
898
+ User-Agent:
899
+ - steem-ruby/0.9.5
900
+ Accept-Encoding:
901
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
902
+ Accept:
903
+ - "*/*"
904
+ Host:
905
+ - api.steemitdev.com
906
+ Content-Length:
907
+ - '126'
908
+ response:
909
+ status:
910
+ code: 200
911
+ message: OK
912
+ headers:
913
+ Date:
914
+ - Sat, 07 Nov 2020 20:53:01 GMT
915
+ Content-Type:
916
+ - application/json
917
+ Content-Length:
918
+ - '74'
919
+ Connection:
920
+ - keep-alive
921
+ Server:
922
+ - nginx
923
+ X-Jussi-Request-Id:
924
+ - '001057076013987964'
925
+ X-Amzn-Trace-Id:
926
+ - Root=1-5fa7092d-67b5348e2e25649974843696
927
+ Access-Control-Allow-Origin:
928
+ - "*"
929
+ Access-Control-Allow-Methods:
930
+ - GET, POST, OPTIONS
931
+ Access-Control-Allow-Headers:
932
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
933
+ Strict-Transport-Security:
934
+ - max-age=31557600; includeSubDomains; preload
935
+ Content-Security-Policy:
936
+ - upgrade-insecure-requests
937
+ body:
938
+ encoding: UTF-8
939
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":25}'
940
+ recorded_at: Sat, 07 Nov 2020 20:53:01 GMT
941
+ - request:
942
+ method: post
943
+ uri: https://api.steemitdev.com/
944
+ body:
945
+ encoding: UTF-8
946
+ string: '{"jsonrpc":"2.0","id":28,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
947
+ headers:
948
+ Content-Type:
949
+ - application/json; charset=utf-8
950
+ User-Agent:
951
+ - steem-ruby/0.9.5
952
+ Accept-Encoding:
953
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
954
+ Accept:
955
+ - "*/*"
956
+ Host:
957
+ - api.steemitdev.com
958
+ Content-Length:
959
+ - '78'
960
+ response:
961
+ status:
962
+ code: 200
963
+ message: OK
964
+ headers:
965
+ Date:
966
+ - Sat, 07 Nov 2020 21:01:16 GMT
967
+ Content-Type:
968
+ - application/json
969
+ Content-Length:
970
+ - '72'
971
+ Connection:
972
+ - keep-alive
973
+ Server:
974
+ - nginx
975
+ X-Jussi-Request-Id:
976
+ - '000698186387778410'
977
+ X-Amzn-Trace-Id:
978
+ - Root=1-5fa70b1b-184e49ea6920aa51466514d8
979
+ Access-Control-Allow-Origin:
980
+ - "*"
981
+ Access-Control-Allow-Methods:
982
+ - GET, POST, OPTIONS
983
+ Access-Control-Allow-Headers:
984
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
985
+ Strict-Transport-Security:
986
+ - max-age=31557600; includeSubDomains; preload
987
+ Content-Security-Policy:
988
+ - upgrade-insecure-requests
989
+ body:
990
+ encoding: UTF-8
991
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":28}'
992
+ recorded_at: Sat, 07 Nov 2020 21:01:16 GMT
993
+ - request:
994
+ method: post
995
+ uri: https://api.steemitdev.com/
996
+ body:
997
+ encoding: UTF-8
998
+ string: '{"jsonrpc":"2.0","id":29,"method":"market_history_api.get_market_history_buckets","params":{}}'
999
+ headers:
1000
+ Content-Type:
1001
+ - application/json; charset=utf-8
1002
+ User-Agent:
1003
+ - steem-ruby/0.9.5
1004
+ Accept-Encoding:
1005
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1006
+ Accept:
1007
+ - "*/*"
1008
+ Host:
1009
+ - api.steemitdev.com
1010
+ Content-Length:
1011
+ - '126'
1012
+ response:
1013
+ status:
1014
+ code: 200
1015
+ message: OK
1016
+ headers:
1017
+ Date:
1018
+ - Sat, 07 Nov 2020 21:01:18 GMT
1019
+ Content-Type:
1020
+ - application/json
1021
+ Content-Length:
1022
+ - '74'
1023
+ Connection:
1024
+ - keep-alive
1025
+ Server:
1026
+ - nginx
1027
+ X-Jussi-Request-Id:
1028
+ - '000410391942549088'
1029
+ X-Amzn-Trace-Id:
1030
+ - Root=1-5fa70b1c-477f80063b75dad53606dbe5
1031
+ Access-Control-Allow-Origin:
1032
+ - "*"
1033
+ Access-Control-Allow-Methods:
1034
+ - GET, POST, OPTIONS
1035
+ Access-Control-Allow-Headers:
1036
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1037
+ Strict-Transport-Security:
1038
+ - max-age=31557600; includeSubDomains; preload
1039
+ Content-Security-Policy:
1040
+ - upgrade-insecure-requests
1041
+ body:
1042
+ encoding: UTF-8
1043
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":29}'
1044
+ recorded_at: Sat, 07 Nov 2020 21:01:18 GMT
1045
+ - request:
1046
+ method: post
1047
+ uri: https://api.steemitdev.com/
1048
+ body:
1049
+ encoding: UTF-8
1050
+ string: '{"jsonrpc":"2.0","id":100,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
1051
+ headers:
1052
+ Content-Type:
1053
+ - application/json; charset=utf-8
1054
+ User-Agent:
1055
+ - steem-ruby/0.9.5
1056
+ Accept-Encoding:
1057
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1058
+ Accept:
1059
+ - "*/*"
1060
+ Host:
1061
+ - api.steemit.com
1062
+ Content-Length:
1063
+ - '92'
1064
+ response:
1065
+ status:
1066
+ code: 200
1067
+ message: OK
1068
+ headers:
1069
+ Date:
1070
+ - Sat, 07 Nov 2020 21:08:39 GMT
1071
+ Content-Type:
1072
+ - application/json
1073
+ Content-Length:
1074
+ - '73'
1075
+ Connection:
1076
+ - keep-alive
1077
+ Server:
1078
+ - nginx
1079
+ X-Jussi-Request-Id:
1080
+ - '000247370812962047'
1081
+ X-Amzn-Trace-Id:
1082
+ - Root=1-5fa70cd7-2ae144414a211e6523239e19
1083
+ Access-Control-Allow-Origin:
1084
+ - "*"
1085
+ Access-Control-Allow-Methods:
1086
+ - GET, POST, OPTIONS
1087
+ Access-Control-Allow-Headers:
1088
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1089
+ Strict-Transport-Security:
1090
+ - max-age=31557600; includeSubDomains; preload
1091
+ Content-Security-Policy:
1092
+ - upgrade-insecure-requests
1093
+ body:
1094
+ encoding: UTF-8
1095
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":100}'
1096
+ recorded_at: Sat, 07 Nov 2020 21:08:39 GMT
1097
+ - request:
1098
+ method: post
1099
+ uri: https://api.steemitdev.com/
1100
+ body:
1101
+ encoding: UTF-8
1102
+ string: '{"jsonrpc":"2.0","id":101,"method":"market_history_api.get_market_history_buckets","params":{}}'
1103
+ headers:
1104
+ Content-Type:
1105
+ - application/json; charset=utf-8
1106
+ User-Agent:
1107
+ - steem-ruby/0.9.5
1108
+ Accept-Encoding:
1109
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1110
+ Accept:
1111
+ - "*/*"
1112
+ Host:
1113
+ - api.steemit.com
1114
+ Content-Length:
1115
+ - '127'
1116
+ response:
1117
+ status:
1118
+ code: 200
1119
+ message: OK
1120
+ headers:
1121
+ Date:
1122
+ - Sat, 07 Nov 2020 21:08:41 GMT
1123
+ Content-Type:
1124
+ - application/json
1125
+ Content-Length:
1126
+ - '75'
1127
+ Connection:
1128
+ - keep-alive
1129
+ Server:
1130
+ - nginx
1131
+ X-Jussi-Request-Id:
1132
+ - '000989753612950740'
1133
+ X-Amzn-Trace-Id:
1134
+ - Root=1-5fa70cd8-1993e46343f3b58a58620d4c
1135
+ Access-Control-Allow-Origin:
1136
+ - "*"
1137
+ Access-Control-Allow-Methods:
1138
+ - GET, POST, OPTIONS
1139
+ Access-Control-Allow-Headers:
1140
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1141
+ Strict-Transport-Security:
1142
+ - max-age=31557600; includeSubDomains; preload
1143
+ Content-Security-Policy:
1144
+ - upgrade-insecure-requests
1145
+ body:
1146
+ encoding: UTF-8
1147
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":101}'
1148
+ recorded_at: Sat, 07 Nov 2020 21:08:41 GMT
1149
+ - request:
1150
+ method: post
1151
+ uri: https://api.steemitdev.com/
1152
+ body:
1153
+ encoding: UTF-8
1154
+ string: '{"jsonrpc":"2.0","id":59,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
1155
+ headers:
1156
+ Content-Type:
1157
+ - application/json; charset=utf-8
1158
+ User-Agent:
1159
+ - steem-ruby/0.9.5
1160
+ Accept-Encoding:
1161
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1162
+ Accept:
1163
+ - "*/*"
1164
+ Host:
1165
+ - api.steemitdev.com
1166
+ Content-Length:
1167
+ - '78'
1168
+ response:
1169
+ status:
1170
+ code: 200
1171
+ message: OK
1172
+ headers:
1173
+ Date:
1174
+ - Sat, 07 Nov 2020 21:11:00 GMT
1175
+ Content-Type:
1176
+ - application/json
1177
+ Content-Length:
1178
+ - '72'
1179
+ Connection:
1180
+ - keep-alive
1181
+ Server:
1182
+ - nginx
1183
+ X-Jussi-Request-Id:
1184
+ - '000544974872227701'
1185
+ X-Amzn-Trace-Id:
1186
+ - Root=1-5fa70d60-4a6eeaf90c63a4032c02bf17
1187
+ Access-Control-Allow-Origin:
1188
+ - "*"
1189
+ Access-Control-Allow-Methods:
1190
+ - GET, POST, OPTIONS
1191
+ Access-Control-Allow-Headers:
1192
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1193
+ Strict-Transport-Security:
1194
+ - max-age=31557600; includeSubDomains; preload
1195
+ Content-Security-Policy:
1196
+ - upgrade-insecure-requests
1197
+ body:
1198
+ encoding: UTF-8
1199
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":59}'
1200
+ recorded_at: Sat, 07 Nov 2020 21:11:00 GMT
1201
+ - request:
1202
+ method: post
1203
+ uri: https://api.steemitdev.com/
1204
+ body:
1205
+ encoding: UTF-8
1206
+ string: '{"jsonrpc":"2.0","id":60,"method":"market_history_api.get_market_history_buckets","params":{}}'
1207
+ headers:
1208
+ Content-Type:
1209
+ - application/json; charset=utf-8
1210
+ User-Agent:
1211
+ - steem-ruby/0.9.5
1212
+ Accept-Encoding:
1213
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1214
+ Accept:
1215
+ - "*/*"
1216
+ Host:
1217
+ - api.steemitdev.com
1218
+ Content-Length:
1219
+ - '126'
1220
+ response:
1221
+ status:
1222
+ code: 200
1223
+ message: OK
1224
+ headers:
1225
+ Date:
1226
+ - Sat, 07 Nov 2020 21:11:02 GMT
1227
+ Content-Type:
1228
+ - application/json
1229
+ Content-Length:
1230
+ - '74'
1231
+ Connection:
1232
+ - keep-alive
1233
+ Server:
1234
+ - nginx
1235
+ X-Jussi-Request-Id:
1236
+ - '000903006719983416'
1237
+ X-Amzn-Trace-Id:
1238
+ - Root=1-5fa70d64-30a877723fc4ffd640cdccc4
1239
+ Access-Control-Allow-Origin:
1240
+ - "*"
1241
+ Access-Control-Allow-Methods:
1242
+ - GET, POST, OPTIONS
1243
+ Access-Control-Allow-Headers:
1244
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1245
+ Strict-Transport-Security:
1246
+ - max-age=31557600; includeSubDomains; preload
1247
+ Content-Security-Policy:
1248
+ - upgrade-insecure-requests
1249
+ body:
1250
+ encoding: UTF-8
1251
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":60}'
1252
+ recorded_at: Sat, 07 Nov 2020 21:11:02 GMT
1253
+ - request:
1254
+ method: post
1255
+ uri: https://api.steemitdev.com/
1256
+ body:
1257
+ encoding: UTF-8
1258
+ string: '{"jsonrpc":"2.0","id":12,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
1259
+ headers:
1260
+ Content-Type:
1261
+ - application/json; charset=utf-8
1262
+ User-Agent:
1263
+ - steem-ruby/0.9.5
1264
+ Accept-Encoding:
1265
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1266
+ Accept:
1267
+ - "*/*"
1268
+ Host:
1269
+ - api.steemitdev.com
1270
+ Content-Length:
1271
+ - '78'
1272
+ response:
1273
+ status:
1274
+ code: 200
1275
+ message: OK
1276
+ headers:
1277
+ Date:
1278
+ - Sun, 08 Nov 2020 05:35:24 GMT
1279
+ Content-Type:
1280
+ - application/json
1281
+ Content-Length:
1282
+ - '72'
1283
+ Connection:
1284
+ - keep-alive
1285
+ Server:
1286
+ - nginx
1287
+ X-Jussi-Request-Id:
1288
+ - '001033427450773965'
1289
+ X-Amzn-Trace-Id:
1290
+ - Root=1-5fa7839a-5c62495d4322b99a5ade058f
1291
+ Access-Control-Allow-Origin:
1292
+ - "*"
1293
+ Access-Control-Allow-Methods:
1294
+ - GET, POST, OPTIONS
1295
+ Access-Control-Allow-Headers:
1296
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1297
+ Strict-Transport-Security:
1298
+ - max-age=31557600; includeSubDomains; preload
1299
+ Content-Security-Policy:
1300
+ - upgrade-insecure-requests
1301
+ body:
1302
+ encoding: UTF-8
1303
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":12}'
1304
+ recorded_at: Sun, 08 Nov 2020 05:35:24 GMT
1305
+ - request:
1306
+ method: post
1307
+ uri: https://api.steemitdev.com/
1308
+ body:
1309
+ encoding: UTF-8
1310
+ string: '{"jsonrpc":"2.0","id":13,"method":"market_history_api.get_market_history_buckets","params":{}}'
1311
+ headers:
1312
+ Content-Type:
1313
+ - application/json; charset=utf-8
1314
+ User-Agent:
1315
+ - steem-ruby/0.9.5
1316
+ Accept-Encoding:
1317
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1318
+ Accept:
1319
+ - "*/*"
1320
+ Host:
1321
+ - api.steemitdev.com
1322
+ Content-Length:
1323
+ - '126'
1324
+ response:
1325
+ status:
1326
+ code: 200
1327
+ message: OK
1328
+ headers:
1329
+ Date:
1330
+ - Sun, 08 Nov 2020 05:35:25 GMT
1331
+ Content-Type:
1332
+ - application/json
1333
+ Content-Length:
1334
+ - '74'
1335
+ Connection:
1336
+ - keep-alive
1337
+ Server:
1338
+ - nginx
1339
+ X-Jussi-Request-Id:
1340
+ - '000968654086851096'
1341
+ X-Amzn-Trace-Id:
1342
+ - Root=1-5fa7839d-2cc06d8e5bcf7fd4097bca9c
1343
+ Access-Control-Allow-Origin:
1344
+ - "*"
1345
+ Access-Control-Allow-Methods:
1346
+ - GET, POST, OPTIONS
1347
+ Access-Control-Allow-Headers:
1348
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1349
+ Strict-Transport-Security:
1350
+ - max-age=31557600; includeSubDomains; preload
1351
+ Content-Security-Policy:
1352
+ - upgrade-insecure-requests
1353
+ body:
1354
+ encoding: UTF-8
1355
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":13}'
1356
+ recorded_at: Sun, 08 Nov 2020 05:35:25 GMT
1357
+ - request:
1358
+ method: post
1359
+ uri: https://api.steemitdev.com/
1360
+ body:
1361
+ encoding: UTF-8
1362
+ string: '{"jsonrpc":"2.0","id":55,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
1363
+ headers:
1364
+ Content-Type:
1365
+ - application/json; charset=utf-8
1366
+ User-Agent:
1367
+ - steem-ruby/0.9.5
1368
+ Accept-Encoding:
1369
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1370
+ Accept:
1371
+ - "*/*"
1372
+ Host:
1373
+ - api.steemitdev.com
1374
+ Content-Length:
1375
+ - '85'
1376
+ response:
1377
+ status:
1378
+ code: 200
1379
+ message: OK
1380
+ headers:
1381
+ Date:
1382
+ - Sun, 08 Nov 2020 05:39:51 GMT
1383
+ Content-Type:
1384
+ - application/json
1385
+ Content-Length:
1386
+ - '72'
1387
+ Connection:
1388
+ - keep-alive
1389
+ Server:
1390
+ - nginx
1391
+ X-Jussi-Request-Id:
1392
+ - '000677165948301043'
1393
+ X-Amzn-Trace-Id:
1394
+ - Root=1-5fa784a7-411887a6143656ff6a48a57a
1395
+ Access-Control-Allow-Origin:
1396
+ - "*"
1397
+ Access-Control-Allow-Methods:
1398
+ - GET, POST, OPTIONS
1399
+ Access-Control-Allow-Headers:
1400
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1401
+ Strict-Transport-Security:
1402
+ - max-age=31557600; includeSubDomains; preload
1403
+ Content-Security-Policy:
1404
+ - upgrade-insecure-requests
1405
+ body:
1406
+ encoding: UTF-8
1407
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":55}'
1408
+ recorded_at: Sun, 08 Nov 2020 05:39:51 GMT
1409
+ - request:
1410
+ method: post
1411
+ uri: https://api.steemitdev.com/
1412
+ body:
1413
+ encoding: UTF-8
1414
+ string: '{"jsonrpc":"2.0","id":56,"method":"market_history_api.get_market_history_buckets","params":{}}'
1415
+ headers:
1416
+ Content-Type:
1417
+ - application/json; charset=utf-8
1418
+ User-Agent:
1419
+ - steem-ruby/0.9.5
1420
+ Accept-Encoding:
1421
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1422
+ Accept:
1423
+ - "*/*"
1424
+ Host:
1425
+ - api.steemitdev.com
1426
+ Content-Length:
1427
+ - '126'
1428
+ response:
1429
+ status:
1430
+ code: 200
1431
+ message: OK
1432
+ headers:
1433
+ Date:
1434
+ - Sun, 08 Nov 2020 05:39:53 GMT
1435
+ Content-Type:
1436
+ - application/json
1437
+ Content-Length:
1438
+ - '74'
1439
+ Connection:
1440
+ - keep-alive
1441
+ Server:
1442
+ - nginx
1443
+ X-Jussi-Request-Id:
1444
+ - '000704756821455579'
1445
+ X-Amzn-Trace-Id:
1446
+ - Root=1-5fa784a8-6efdd9e448d3e4f31789d9b2
1447
+ Access-Control-Allow-Origin:
1448
+ - "*"
1449
+ Access-Control-Allow-Methods:
1450
+ - GET, POST, OPTIONS
1451
+ Access-Control-Allow-Headers:
1452
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1453
+ Strict-Transport-Security:
1454
+ - max-age=31557600; includeSubDomains; preload
1455
+ Content-Security-Policy:
1456
+ - upgrade-insecure-requests
1457
+ body:
1458
+ encoding: UTF-8
1459
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":56}'
1460
+ recorded_at: Sun, 08 Nov 2020 05:39:53 GMT
1461
+ - request:
1462
+ method: post
1463
+ uri: https://api.steemitdev.com/
1464
+ body:
1465
+ encoding: UTF-8
1466
+ string: '{"jsonrpc":"2.0","id":38,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
1467
+ headers:
1468
+ Content-Type:
1469
+ - application/json; charset=utf-8
1470
+ User-Agent:
1471
+ - steem-ruby/0.9.5
1472
+ Accept-Encoding:
1473
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1474
+ Accept:
1475
+ - "*/*"
1476
+ Host:
1477
+ - api.steemitdev.com
1478
+ Content-Length:
1479
+ - '78'
1480
+ response:
1481
+ status:
1482
+ code: 200
1483
+ message: OK
1484
+ headers:
1485
+ Date:
1486
+ - Sun, 08 Nov 2020 05:47:11 GMT
1487
+ Content-Type:
1488
+ - application/json
1489
+ Content-Length:
1490
+ - '72'
1491
+ Connection:
1492
+ - keep-alive
1493
+ Server:
1494
+ - nginx
1495
+ X-Jussi-Request-Id:
1496
+ - '000057734436827431'
1497
+ X-Amzn-Trace-Id:
1498
+ - Root=1-5fa7865d-79345b3f5f12459419b3c91c
1499
+ Access-Control-Allow-Origin:
1500
+ - "*"
1501
+ Access-Control-Allow-Methods:
1502
+ - GET, POST, OPTIONS
1503
+ Access-Control-Allow-Headers:
1504
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1505
+ Strict-Transport-Security:
1506
+ - max-age=31557600; includeSubDomains; preload
1507
+ Content-Security-Policy:
1508
+ - upgrade-insecure-requests
1509
+ body:
1510
+ encoding: UTF-8
1511
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":38}'
1512
+ recorded_at: Sun, 08 Nov 2020 05:47:11 GMT
1513
+ - request:
1514
+ method: post
1515
+ uri: https://api.steemitdev.com/
1516
+ body:
1517
+ encoding: UTF-8
1518
+ string: '{"jsonrpc":"2.0","id":39,"method":"market_history_api.get_market_history_buckets","params":{}}'
1519
+ headers:
1520
+ Content-Type:
1521
+ - application/json; charset=utf-8
1522
+ User-Agent:
1523
+ - steem-ruby/0.9.5
1524
+ Accept-Encoding:
1525
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1526
+ Accept:
1527
+ - "*/*"
1528
+ Host:
1529
+ - api.steemitdev.com
1530
+ Content-Length:
1531
+ - '126'
1532
+ response:
1533
+ status:
1534
+ code: 200
1535
+ message: OK
1536
+ headers:
1537
+ Date:
1538
+ - Sun, 08 Nov 2020 05:47:13 GMT
1539
+ Content-Type:
1540
+ - application/json
1541
+ Content-Length:
1542
+ - '74'
1543
+ Connection:
1544
+ - keep-alive
1545
+ Server:
1546
+ - nginx
1547
+ X-Jussi-Request-Id:
1548
+ - '001034956713908167'
1549
+ X-Amzn-Trace-Id:
1550
+ - Root=1-5fa78660-5d0416aa040fedc968097b4c
1551
+ Access-Control-Allow-Origin:
1552
+ - "*"
1553
+ Access-Control-Allow-Methods:
1554
+ - GET, POST, OPTIONS
1555
+ Access-Control-Allow-Headers:
1556
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1557
+ Strict-Transport-Security:
1558
+ - max-age=31557600; includeSubDomains; preload
1559
+ Content-Security-Policy:
1560
+ - upgrade-insecure-requests
1561
+ body:
1562
+ encoding: UTF-8
1563
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":39}'
1564
+ recorded_at: Sun, 08 Nov 2020 05:47:13 GMT
1565
+ - request:
1566
+ method: post
1567
+ uri: https://api.steemitdev.com/
1568
+ body:
1569
+ encoding: UTF-8
1570
+ string: '{"jsonrpc":"2.0","id":2,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_market_history_buckets"}}'
1571
+ headers:
1572
+ Content-Type:
1573
+ - application/json; charset=utf-8
1574
+ User-Agent:
1575
+ - steem-ruby/0.9.5
1576
+ Accept-Encoding:
1577
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1578
+ Accept:
1579
+ - "*/*"
1580
+ response:
1581
+ status:
1582
+ code: 200
1583
+ message: OK
1584
+ headers:
1585
+ Date:
1586
+ - Sun, 08 Nov 2020 06:00:15 GMT
1587
+ Content-Type:
1588
+ - application/json
1589
+ Content-Length:
1590
+ - '71'
1591
+ Connection:
1592
+ - keep-alive
1593
+ Server:
1594
+ - nginx
1595
+ X-Jussi-Request-Id:
1596
+ - '000145502731894592'
1597
+ X-Amzn-Trace-Id:
1598
+ - Root=1-5fa7896c-34afed764a6f7f575929badc
1599
+ Access-Control-Allow-Origin:
1600
+ - "*"
1601
+ Access-Control-Allow-Methods:
1602
+ - GET, POST, OPTIONS
1603
+ Access-Control-Allow-Headers:
1604
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1605
+ Strict-Transport-Security:
1606
+ - max-age=31557600; includeSubDomains; preload
1607
+ Content-Security-Policy:
1608
+ - upgrade-insecure-requests
1609
+ body:
1610
+ encoding: UTF-8
1611
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"bucket_sizes":[]}},"id":2}'
1612
+ recorded_at: Sun, 08 Nov 2020 06:00:15 GMT
1613
+ - request:
1614
+ method: post
1615
+ uri: https://api.steemitdev.com/
1616
+ body:
1617
+ encoding: UTF-8
1618
+ string: '{"jsonrpc":"2.0","id":3,"method":"market_history_api.get_market_history_buckets","params":{}}'
1619
+ headers:
1620
+ Content-Type:
1621
+ - application/json; charset=utf-8
1622
+ User-Agent:
1623
+ - steem-ruby/0.9.5
1624
+ Accept-Encoding:
1625
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1626
+ Accept:
1627
+ - "*/*"
1628
+ Host:
1629
+ - api.steemitdev.com
1630
+ Content-Length:
1631
+ - '125'
1632
+ response:
1633
+ status:
1634
+ code: 200
1635
+ message: OK
1636
+ headers:
1637
+ Date:
1638
+ - Sun, 08 Nov 2020 06:00:15 GMT
1639
+ Content-Type:
1640
+ - application/json
1641
+ Content-Length:
1642
+ - '73'
1643
+ Connection:
1644
+ - keep-alive
1645
+ Server:
1646
+ - nginx
1647
+ X-Jussi-Request-Id:
1648
+ - '001036657595770823'
1649
+ X-Amzn-Trace-Id:
1650
+ - Root=1-5fa7896f-56665c1f2e872c6948b51f12
1651
+ Access-Control-Allow-Origin:
1652
+ - "*"
1653
+ Access-Control-Allow-Methods:
1654
+ - GET, POST, OPTIONS
1655
+ Access-Control-Allow-Headers:
1656
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1657
+ Strict-Transport-Security:
1658
+ - max-age=31557600; includeSubDomains; preload
1659
+ Content-Security-Policy:
1660
+ - upgrade-insecure-requests
1661
+ body:
1662
+ encoding: UTF-8
1663
+ string: '{"jsonrpc":"2.0","result":{"bucket_sizes":[15,60,300,3600,86400]},"id":3}'
1664
+ recorded_at: Sun, 08 Nov 2020 06:00:15 GMT
1665
+ recorded_with: VCR 6.0.0