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,1051 @@
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":122,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
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
+ - '95'
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Sat, 17 Oct 2020 04:08:15 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '181'
33
+ Connection:
34
+ - keep-alive
35
+ Server:
36
+ - nginx
37
+ X-Jussi-Cache-Hit:
38
+ - appbase.jsonrpc.get_signature.params={"method":"market_history_api.get_volume"}
39
+ X-Jussi-Request-Id:
40
+ - '000590519296740501'
41
+ X-Amzn-Trace-Id:
42
+ - Root=1-5f8a6e2f-74413c4621dadc92065eecd9
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: UTF-8
55
+ string: '{"id":122,"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}}}'
56
+ recorded_at: Sat, 17 Oct 2020 04:08:15 GMT
57
+ - request:
58
+ method: post
59
+ uri: https://api.steemit.com/
60
+ body:
61
+ encoding: UTF-8
62
+ string: '{"jsonrpc":"2.0","id":123,"method":"market_history_api.get_volume","params":{}}'
63
+ headers:
64
+ Content-Type:
65
+ - application/json; charset=utf-8
66
+ User-Agent:
67
+ - steem-ruby/0.9.4
68
+ Accept-Encoding:
69
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
70
+ Accept:
71
+ - "*/*"
72
+ Host:
73
+ - api.steemit.com
74
+ Content-Length:
75
+ - '111'
76
+ response:
77
+ status:
78
+ code: 200
79
+ message: OK
80
+ headers:
81
+ Date:
82
+ - Sat, 17 Oct 2020 04:08:15 GMT
83
+ Content-Type:
84
+ - application/json
85
+ Content-Length:
86
+ - '176'
87
+ Connection:
88
+ - keep-alive
89
+ Server:
90
+ - nginx
91
+ X-Jussi-Request-Id:
92
+ - '000194352234866313'
93
+ X-Amzn-Trace-Id:
94
+ - Root=1-5f8a6e2f-166aea044f52f9b13c309a42
95
+ Access-Control-Allow-Origin:
96
+ - "*"
97
+ Access-Control-Allow-Methods:
98
+ - GET, POST, OPTIONS
99
+ Access-Control-Allow-Headers:
100
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
101
+ Strict-Transport-Security:
102
+ - max-age=31557600; includeSubDomains; preload
103
+ Content-Security-Policy:
104
+ - upgrade-insecure-requests
105
+ body:
106
+ encoding: UTF-8
107
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"42466862","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673680","precision":3,"nai":"@@000000013"}},"id":123}'
108
+ recorded_at: Sat, 17 Oct 2020 04:08:15 GMT
109
+ - request:
110
+ method: post
111
+ uri: https://api.steemit.com/
112
+ body:
113
+ encoding: UTF-8
114
+ string: '{"jsonrpc":"2.0","id":96,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
115
+ headers:
116
+ Content-Type:
117
+ - application/json; charset=utf-8
118
+ User-Agent:
119
+ - steem-ruby/0.9.4
120
+ Accept-Encoding:
121
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
122
+ Accept:
123
+ - "*/*"
124
+ Host:
125
+ - api.steemit.com
126
+ Content-Length:
127
+ - '95'
128
+ response:
129
+ status:
130
+ code: 200
131
+ message: OK
132
+ headers:
133
+ Date:
134
+ - Sat, 17 Oct 2020 04:09:18 GMT
135
+ Content-Type:
136
+ - application/json
137
+ Content-Length:
138
+ - '180'
139
+ Connection:
140
+ - keep-alive
141
+ Server:
142
+ - nginx
143
+ X-Jussi-Request-Id:
144
+ - '000771871685006167'
145
+ X-Amzn-Trace-Id:
146
+ - Root=1-5f8a6e6e-4e529b84473e3a652e64580d
147
+ Access-Control-Allow-Origin:
148
+ - "*"
149
+ Access-Control-Allow-Methods:
150
+ - GET, POST, OPTIONS
151
+ Access-Control-Allow-Headers:
152
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
153
+ Strict-Transport-Security:
154
+ - max-age=31557600; includeSubDomains; preload
155
+ Content-Security-Policy:
156
+ - upgrade-insecure-requests
157
+ body:
158
+ encoding: UTF-8
159
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":96}'
160
+ recorded_at: Sat, 17 Oct 2020 04:09:18 GMT
161
+ - request:
162
+ method: post
163
+ uri: https://api.steemit.com/
164
+ body:
165
+ encoding: UTF-8
166
+ string: '{"jsonrpc":"2.0","id":97,"method":"market_history_api.get_volume","params":{}}'
167
+ headers:
168
+ Content-Type:
169
+ - application/json; charset=utf-8
170
+ User-Agent:
171
+ - steem-ruby/0.9.4
172
+ Accept-Encoding:
173
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
174
+ Accept:
175
+ - "*/*"
176
+ Host:
177
+ - api.steemit.com
178
+ Content-Length:
179
+ - '110'
180
+ response:
181
+ status:
182
+ code: 200
183
+ message: OK
184
+ headers:
185
+ Date:
186
+ - Sat, 17 Oct 2020 04:09:19 GMT
187
+ Content-Type:
188
+ - application/json
189
+ Content-Length:
190
+ - '175'
191
+ Connection:
192
+ - keep-alive
193
+ Server:
194
+ - nginx
195
+ X-Jussi-Request-Id:
196
+ - '000638839490196262'
197
+ X-Amzn-Trace-Id:
198
+ - Root=1-5f8a6e6f-448d8eff2b7f103e6297706a
199
+ Access-Control-Allow-Origin:
200
+ - "*"
201
+ Access-Control-Allow-Methods:
202
+ - GET, POST, OPTIONS
203
+ Access-Control-Allow-Headers:
204
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
205
+ Strict-Transport-Security:
206
+ - max-age=31557600; includeSubDomains; preload
207
+ Content-Security-Policy:
208
+ - upgrade-insecure-requests
209
+ body:
210
+ encoding: UTF-8
211
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":97}'
212
+ recorded_at: Sat, 17 Oct 2020 04:09:19 GMT
213
+ - request:
214
+ method: post
215
+ uri: https://api.steemit.com/
216
+ body:
217
+ encoding: UTF-8
218
+ string: '{"jsonrpc":"2.0","id":11,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
219
+ headers:
220
+ Content-Type:
221
+ - application/json; charset=utf-8
222
+ User-Agent:
223
+ - steem-ruby/0.9.4
224
+ Accept-Encoding:
225
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
226
+ Accept:
227
+ - "*/*"
228
+ Host:
229
+ - api.steemit.com
230
+ Content-Length:
231
+ - '94'
232
+ response:
233
+ status:
234
+ code: 200
235
+ message: OK
236
+ headers:
237
+ Date:
238
+ - Sat, 17 Oct 2020 04:13:18 GMT
239
+ Content-Type:
240
+ - application/json
241
+ Content-Length:
242
+ - '180'
243
+ Connection:
244
+ - keep-alive
245
+ Server:
246
+ - nginx
247
+ X-Jussi-Request-Id:
248
+ - '000555911653877626'
249
+ X-Amzn-Trace-Id:
250
+ - Root=1-5f8a6f5e-4a7eba945614c6c66d59b1b0
251
+ Access-Control-Allow-Origin:
252
+ - "*"
253
+ Access-Control-Allow-Methods:
254
+ - GET, POST, OPTIONS
255
+ Access-Control-Allow-Headers:
256
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
257
+ Strict-Transport-Security:
258
+ - max-age=31557600; includeSubDomains; preload
259
+ Content-Security-Policy:
260
+ - upgrade-insecure-requests
261
+ body:
262
+ encoding: UTF-8
263
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":11}'
264
+ recorded_at: Sat, 17 Oct 2020 04:13:18 GMT
265
+ - request:
266
+ method: post
267
+ uri: https://api.steemit.com/
268
+ body:
269
+ encoding: UTF-8
270
+ string: '{"jsonrpc":"2.0","id":12,"method":"market_history_api.get_volume","params":{}}'
271
+ headers:
272
+ Content-Type:
273
+ - application/json; charset=utf-8
274
+ User-Agent:
275
+ - steem-ruby/0.9.4
276
+ Accept-Encoding:
277
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
278
+ Accept:
279
+ - "*/*"
280
+ Host:
281
+ - api.steemit.com
282
+ Content-Length:
283
+ - '110'
284
+ response:
285
+ status:
286
+ code: 200
287
+ message: OK
288
+ headers:
289
+ Date:
290
+ - Sat, 17 Oct 2020 04:13:18 GMT
291
+ Content-Type:
292
+ - application/json
293
+ Content-Length:
294
+ - '175'
295
+ Connection:
296
+ - keep-alive
297
+ Server:
298
+ - nginx
299
+ X-Jussi-Request-Id:
300
+ - '000001692848734114'
301
+ X-Amzn-Trace-Id:
302
+ - Root=1-5f8a6f5e-3c24860e60431575617fa14c
303
+ Access-Control-Allow-Origin:
304
+ - "*"
305
+ Access-Control-Allow-Methods:
306
+ - GET, POST, OPTIONS
307
+ Access-Control-Allow-Headers:
308
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
309
+ Strict-Transport-Security:
310
+ - max-age=31557600; includeSubDomains; preload
311
+ Content-Security-Policy:
312
+ - upgrade-insecure-requests
313
+ body:
314
+ encoding: UTF-8
315
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":12}'
316
+ recorded_at: Sat, 17 Oct 2020 04:13:18 GMT
317
+ - request:
318
+ method: post
319
+ uri: https://api.steemit.com/
320
+ body:
321
+ encoding: UTF-8
322
+ string: '{"jsonrpc":"2.0","id":42,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
323
+ headers:
324
+ Content-Type:
325
+ - application/json; charset=utf-8
326
+ User-Agent:
327
+ - steem-ruby/0.9.4
328
+ Accept-Encoding:
329
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
330
+ Accept:
331
+ - "*/*"
332
+ Host:
333
+ - api.steemit.com
334
+ Content-Length:
335
+ - '78'
336
+ response:
337
+ status:
338
+ code: 200
339
+ message: OK
340
+ headers:
341
+ Date:
342
+ - Sat, 17 Oct 2020 04:14:18 GMT
343
+ Content-Type:
344
+ - application/json
345
+ Content-Length:
346
+ - '180'
347
+ Connection:
348
+ - keep-alive
349
+ Server:
350
+ - nginx
351
+ X-Jussi-Cache-Hit:
352
+ - appbase.jsonrpc.get_signature.params={"method":"market_history_api.get_volume"}
353
+ X-Jussi-Request-Id:
354
+ - '000041274081516269'
355
+ X-Amzn-Trace-Id:
356
+ - Root=1-5f8a6f9a-6af478b756ef29db21fec287
357
+ Access-Control-Allow-Origin:
358
+ - "*"
359
+ Access-Control-Allow-Methods:
360
+ - GET, POST, OPTIONS
361
+ Access-Control-Allow-Headers:
362
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
363
+ Strict-Transport-Security:
364
+ - max-age=31557600; includeSubDomains; preload
365
+ Content-Security-Policy:
366
+ - upgrade-insecure-requests
367
+ body:
368
+ encoding: UTF-8
369
+ string: '{"id":42,"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}}}'
370
+ recorded_at: Sat, 17 Oct 2020 04:14:18 GMT
371
+ - request:
372
+ method: post
373
+ uri: https://api.steemit.com/
374
+ body:
375
+ encoding: UTF-8
376
+ string: '{"jsonrpc":"2.0","id":43,"method":"market_history_api.get_volume","params":{}}'
377
+ headers:
378
+ Content-Type:
379
+ - application/json; charset=utf-8
380
+ User-Agent:
381
+ - steem-ruby/0.9.4
382
+ Accept-Encoding:
383
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
384
+ Accept:
385
+ - "*/*"
386
+ Host:
387
+ - api.steemit.com
388
+ Content-Length:
389
+ - '110'
390
+ response:
391
+ status:
392
+ code: 200
393
+ message: OK
394
+ headers:
395
+ Date:
396
+ - Sat, 17 Oct 2020 04:14:18 GMT
397
+ Content-Type:
398
+ - application/json
399
+ Content-Length:
400
+ - '175'
401
+ Connection:
402
+ - keep-alive
403
+ Server:
404
+ - nginx
405
+ X-Jussi-Request-Id:
406
+ - '001114706104853957'
407
+ X-Amzn-Trace-Id:
408
+ - Root=1-5f8a6f9a-3be905e9620598085140893b
409
+ Access-Control-Allow-Origin:
410
+ - "*"
411
+ Access-Control-Allow-Methods:
412
+ - GET, POST, OPTIONS
413
+ Access-Control-Allow-Headers:
414
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
415
+ Strict-Transport-Security:
416
+ - max-age=31557600; includeSubDomains; preload
417
+ Content-Security-Policy:
418
+ - upgrade-insecure-requests
419
+ body:
420
+ encoding: UTF-8
421
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":43}'
422
+ recorded_at: Sat, 17 Oct 2020 04:14:18 GMT
423
+ - request:
424
+ method: post
425
+ uri: https://api.steemitdev.com/
426
+ body:
427
+ encoding: UTF-8
428
+ string: '{"jsonrpc":"2.0","id":65,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
429
+ headers:
430
+ Content-Type:
431
+ - application/json; charset=utf-8
432
+ User-Agent:
433
+ - steem-ruby/0.9.4
434
+ Accept-Encoding:
435
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
436
+ Accept:
437
+ - "*/*"
438
+ Host:
439
+ - api.steemitdev.com
440
+ Content-Length:
441
+ - '92'
442
+ response:
443
+ status:
444
+ code: 200
445
+ message: OK
446
+ headers:
447
+ Date:
448
+ - Sat, 17 Oct 2020 04:22:43 GMT
449
+ Content-Type:
450
+ - application/json
451
+ Content-Length:
452
+ - '180'
453
+ Connection:
454
+ - keep-alive
455
+ Server:
456
+ - nginx
457
+ X-Jussi-Request-Id:
458
+ - '000022334096403597'
459
+ X-Amzn-Trace-Id:
460
+ - Root=1-5f8a7193-50f6ad8d50748ccf2695e825
461
+ Access-Control-Allow-Origin:
462
+ - "*"
463
+ Access-Control-Allow-Methods:
464
+ - GET, POST, OPTIONS
465
+ Access-Control-Allow-Headers:
466
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
467
+ Strict-Transport-Security:
468
+ - max-age=31557600; includeSubDomains; preload
469
+ Content-Security-Policy:
470
+ - upgrade-insecure-requests
471
+ body:
472
+ encoding: UTF-8
473
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":65}'
474
+ recorded_at: Sat, 17 Oct 2020 04:22:43 GMT
475
+ - request:
476
+ method: post
477
+ uri: https://api.steemitdev.com/
478
+ body:
479
+ encoding: UTF-8
480
+ string: '{"jsonrpc":"2.0","id":66,"method":"market_history_api.get_volume","params":{}}'
481
+ headers:
482
+ Content-Type:
483
+ - application/json; charset=utf-8
484
+ User-Agent:
485
+ - steem-ruby/0.9.4
486
+ Accept-Encoding:
487
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
488
+ Accept:
489
+ - "*/*"
490
+ Host:
491
+ - api.steemitdev.com
492
+ Content-Length:
493
+ - '110'
494
+ response:
495
+ status:
496
+ code: 200
497
+ message: OK
498
+ headers:
499
+ Date:
500
+ - Sat, 17 Oct 2020 04:22:43 GMT
501
+ Content-Type:
502
+ - application/json
503
+ Content-Length:
504
+ - '175'
505
+ Connection:
506
+ - keep-alive
507
+ Server:
508
+ - nginx
509
+ X-Jussi-Request-Id:
510
+ - '001118731931090272'
511
+ X-Amzn-Trace-Id:
512
+ - Root=1-5f8a7193-74bbb37a47ec744b6e4c12fe
513
+ Access-Control-Allow-Origin:
514
+ - "*"
515
+ Access-Control-Allow-Methods:
516
+ - GET, POST, OPTIONS
517
+ Access-Control-Allow-Headers:
518
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
519
+ Strict-Transport-Security:
520
+ - max-age=31557600; includeSubDomains; preload
521
+ Content-Security-Policy:
522
+ - upgrade-insecure-requests
523
+ body:
524
+ encoding: UTF-8
525
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":66}'
526
+ recorded_at: Sat, 17 Oct 2020 04:22:43 GMT
527
+ - request:
528
+ method: post
529
+ uri: https://api.steemitdev.com/
530
+ body:
531
+ encoding: UTF-8
532
+ string: '{"jsonrpc":"2.0","id":24,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
533
+ headers:
534
+ Content-Type:
535
+ - application/json; charset=utf-8
536
+ User-Agent:
537
+ - steem-ruby/0.9.4
538
+ Accept-Encoding:
539
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
540
+ Accept:
541
+ - "*/*"
542
+ Host:
543
+ - api.steemitdev.com
544
+ Content-Length:
545
+ - '94'
546
+ response:
547
+ status:
548
+ code: 200
549
+ message: OK
550
+ headers:
551
+ Date:
552
+ - Sat, 17 Oct 2020 04:26:50 GMT
553
+ Content-Type:
554
+ - application/json
555
+ Content-Length:
556
+ - '180'
557
+ Connection:
558
+ - keep-alive
559
+ Server:
560
+ - nginx
561
+ X-Jussi-Request-Id:
562
+ - '000233151212764853'
563
+ X-Amzn-Trace-Id:
564
+ - Root=1-5f8a728a-6a98199b7c61d7cd69ab3d41
565
+ Access-Control-Allow-Origin:
566
+ - "*"
567
+ Access-Control-Allow-Methods:
568
+ - GET, POST, OPTIONS
569
+ Access-Control-Allow-Headers:
570
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
571
+ Strict-Transport-Security:
572
+ - max-age=31557600; includeSubDomains; preload
573
+ Content-Security-Policy:
574
+ - upgrade-insecure-requests
575
+ body:
576
+ encoding: UTF-8
577
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":24}'
578
+ recorded_at: Sat, 17 Oct 2020 04:26:50 GMT
579
+ - request:
580
+ method: post
581
+ uri: https://api.steemitdev.com/
582
+ body:
583
+ encoding: UTF-8
584
+ string: '{"jsonrpc":"2.0","id":25,"method":"market_history_api.get_volume","params":{}}'
585
+ headers:
586
+ Content-Type:
587
+ - application/json; charset=utf-8
588
+ User-Agent:
589
+ - steem-ruby/0.9.4
590
+ Accept-Encoding:
591
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
592
+ Accept:
593
+ - "*/*"
594
+ Host:
595
+ - api.steemitdev.com
596
+ Content-Length:
597
+ - '110'
598
+ response:
599
+ status:
600
+ code: 200
601
+ message: OK
602
+ headers:
603
+ Date:
604
+ - Sat, 17 Oct 2020 04:26:50 GMT
605
+ Content-Type:
606
+ - application/json
607
+ Content-Length:
608
+ - '175'
609
+ Connection:
610
+ - keep-alive
611
+ Server:
612
+ - nginx
613
+ X-Jussi-Request-Id:
614
+ - '000331829777195199'
615
+ X-Amzn-Trace-Id:
616
+ - Root=1-5f8a728a-499d553e313a2dad5c35b748
617
+ Access-Control-Allow-Origin:
618
+ - "*"
619
+ Access-Control-Allow-Methods:
620
+ - GET, POST, OPTIONS
621
+ Access-Control-Allow-Headers:
622
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
623
+ Strict-Transport-Security:
624
+ - max-age=31557600; includeSubDomains; preload
625
+ Content-Security-Policy:
626
+ - upgrade-insecure-requests
627
+ body:
628
+ encoding: UTF-8
629
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":25}'
630
+ recorded_at: Sat, 17 Oct 2020 04:26:50 GMT
631
+ - request:
632
+ method: post
633
+ uri: https://api.steemitdev.com/
634
+ body:
635
+ encoding: UTF-8
636
+ string: '{"jsonrpc":"2.0","id":54,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
637
+ headers:
638
+ Content-Type:
639
+ - application/json; charset=utf-8
640
+ User-Agent:
641
+ - steem-ruby/0.9.4
642
+ Accept-Encoding:
643
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
644
+ Accept:
645
+ - "*/*"
646
+ Host:
647
+ - api.steemitdev.com
648
+ Content-Length:
649
+ - '93'
650
+ response:
651
+ status:
652
+ code: 200
653
+ message: OK
654
+ headers:
655
+ Date:
656
+ - Sat, 17 Oct 2020 04:34:24 GMT
657
+ Content-Type:
658
+ - application/json
659
+ Content-Length:
660
+ - '180'
661
+ Connection:
662
+ - keep-alive
663
+ Server:
664
+ - nginx
665
+ X-Jussi-Request-Id:
666
+ - '000788447758583178'
667
+ X-Amzn-Trace-Id:
668
+ - Root=1-5f8a7450-676939e2698377fc712661eb
669
+ Access-Control-Allow-Origin:
670
+ - "*"
671
+ Access-Control-Allow-Methods:
672
+ - GET, POST, OPTIONS
673
+ Access-Control-Allow-Headers:
674
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
675
+ Strict-Transport-Security:
676
+ - max-age=31557600; includeSubDomains; preload
677
+ Content-Security-Policy:
678
+ - upgrade-insecure-requests
679
+ body:
680
+ encoding: UTF-8
681
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":54}'
682
+ recorded_at: Sat, 17 Oct 2020 04:34:24 GMT
683
+ - request:
684
+ method: post
685
+ uri: https://api.steemitdev.com/
686
+ body:
687
+ encoding: UTF-8
688
+ string: '{"jsonrpc":"2.0","id":55,"method":"market_history_api.get_volume","params":{}}'
689
+ headers:
690
+ Content-Type:
691
+ - application/json; charset=utf-8
692
+ User-Agent:
693
+ - steem-ruby/0.9.4
694
+ Accept-Encoding:
695
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
696
+ Accept:
697
+ - "*/*"
698
+ Host:
699
+ - api.steemitdev.com
700
+ Content-Length:
701
+ - '110'
702
+ response:
703
+ status:
704
+ code: 200
705
+ message: OK
706
+ headers:
707
+ Date:
708
+ - Sat, 17 Oct 2020 04:34:24 GMT
709
+ Content-Type:
710
+ - application/json
711
+ Content-Length:
712
+ - '175'
713
+ Connection:
714
+ - keep-alive
715
+ Server:
716
+ - nginx
717
+ X-Jussi-Request-Id:
718
+ - '001051460267680908'
719
+ X-Amzn-Trace-Id:
720
+ - Root=1-5f8a7450-49988a424c49b1dc6434f4a9
721
+ Access-Control-Allow-Origin:
722
+ - "*"
723
+ Access-Control-Allow-Methods:
724
+ - GET, POST, OPTIONS
725
+ Access-Control-Allow-Headers:
726
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
727
+ Strict-Transport-Security:
728
+ - max-age=31557600; includeSubDomains; preload
729
+ Content-Security-Policy:
730
+ - upgrade-insecure-requests
731
+ body:
732
+ encoding: UTF-8
733
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"42498272","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6678737","precision":3,"nai":"@@000000013"}},"id":55}'
734
+ recorded_at: Sat, 17 Oct 2020 04:34:24 GMT
735
+ - request:
736
+ method: post
737
+ uri: https://api.steemitdev.com/
738
+ body:
739
+ encoding: UTF-8
740
+ string: '{"jsonrpc":"2.0","id":39,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
741
+ headers:
742
+ Content-Type:
743
+ - application/json; charset=utf-8
744
+ User-Agent:
745
+ - steem-ruby/0.9.4
746
+ Accept-Encoding:
747
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
748
+ Accept:
749
+ - "*/*"
750
+ Host:
751
+ - api.steemitdev.com
752
+ Content-Length:
753
+ - '78'
754
+ response:
755
+ status:
756
+ code: 200
757
+ message: OK
758
+ headers:
759
+ Date:
760
+ - Sat, 17 Oct 2020 04:39:42 GMT
761
+ Content-Type:
762
+ - application/json
763
+ Content-Length:
764
+ - '180'
765
+ Connection:
766
+ - keep-alive
767
+ Server:
768
+ - nginx
769
+ X-Jussi-Request-Id:
770
+ - '000517399370418940'
771
+ X-Amzn-Trace-Id:
772
+ - Root=1-5f8a758e-163956c305ee6e751dd06930
773
+ Access-Control-Allow-Origin:
774
+ - "*"
775
+ Access-Control-Allow-Methods:
776
+ - GET, POST, OPTIONS
777
+ Access-Control-Allow-Headers:
778
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
779
+ Strict-Transport-Security:
780
+ - max-age=31557600; includeSubDomains; preload
781
+ Content-Security-Policy:
782
+ - upgrade-insecure-requests
783
+ body:
784
+ encoding: UTF-8
785
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":39}'
786
+ recorded_at: Sat, 17 Oct 2020 04:39:42 GMT
787
+ - request:
788
+ method: post
789
+ uri: https://api.steemitdev.com/
790
+ body:
791
+ encoding: UTF-8
792
+ string: '{"jsonrpc":"2.0","id":40,"method":"market_history_api.get_volume","params":{}}'
793
+ headers:
794
+ Content-Type:
795
+ - application/json; charset=utf-8
796
+ User-Agent:
797
+ - steem-ruby/0.9.4
798
+ Accept-Encoding:
799
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
800
+ Accept:
801
+ - "*/*"
802
+ Host:
803
+ - api.steemitdev.com
804
+ Content-Length:
805
+ - '110'
806
+ response:
807
+ status:
808
+ code: 200
809
+ message: OK
810
+ headers:
811
+ Date:
812
+ - Sat, 17 Oct 2020 04:39:42 GMT
813
+ Content-Type:
814
+ - application/json
815
+ Content-Length:
816
+ - '175'
817
+ Connection:
818
+ - keep-alive
819
+ Server:
820
+ - nginx
821
+ X-Jussi-Cache-Hit:
822
+ - appbase.market_history_api.get_volume.params={}
823
+ X-Jussi-Request-Id:
824
+ - '000622894142824878'
825
+ X-Amzn-Trace-Id:
826
+ - Root=1-5f8a758e-41d4067f5da1709c7601ef30
827
+ Access-Control-Allow-Origin:
828
+ - "*"
829
+ Access-Control-Allow-Methods:
830
+ - GET, POST, OPTIONS
831
+ Access-Control-Allow-Headers:
832
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
833
+ Strict-Transport-Security:
834
+ - max-age=31557600; includeSubDomains; preload
835
+ Content-Security-Policy:
836
+ - upgrade-insecure-requests
837
+ body:
838
+ encoding: UTF-8
839
+ string: '{"id":40,"jsonrpc":"2.0","result":{"steem_volume":{"amount":"42498272","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6678737","precision":3,"nai":"@@000000013"}}}'
840
+ recorded_at: Sat, 17 Oct 2020 04:39:42 GMT
841
+ - request:
842
+ method: post
843
+ uri: https://api.steemitdev.com/
844
+ body:
845
+ encoding: UTF-8
846
+ string: '{"jsonrpc":"2.0","id":94,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
847
+ headers:
848
+ Content-Type:
849
+ - application/json; charset=utf-8
850
+ User-Agent:
851
+ - steem-ruby/0.9.4
852
+ Accept-Encoding:
853
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
854
+ Accept:
855
+ - "*/*"
856
+ Host:
857
+ - api.steemitdev.com
858
+ Content-Length:
859
+ - '94'
860
+ response:
861
+ status:
862
+ code: 200
863
+ message: OK
864
+ headers:
865
+ Date:
866
+ - Sat, 17 Oct 2020 04:56:46 GMT
867
+ Content-Type:
868
+ - application/json
869
+ Content-Length:
870
+ - '180'
871
+ Connection:
872
+ - keep-alive
873
+ Server:
874
+ - nginx
875
+ X-Jussi-Request-Id:
876
+ - '001109175374577613'
877
+ X-Amzn-Trace-Id:
878
+ - Root=1-5f8a798e-6b32dbe821a861205642a6b3
879
+ Access-Control-Allow-Origin:
880
+ - "*"
881
+ Access-Control-Allow-Methods:
882
+ - GET, POST, OPTIONS
883
+ Access-Control-Allow-Headers:
884
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
885
+ Strict-Transport-Security:
886
+ - max-age=31557600; includeSubDomains; preload
887
+ Content-Security-Policy:
888
+ - upgrade-insecure-requests
889
+ body:
890
+ encoding: UTF-8
891
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":94}'
892
+ recorded_at: Sat, 17 Oct 2020 04:56:46 GMT
893
+ - request:
894
+ method: post
895
+ uri: https://api.steemitdev.com/
896
+ body:
897
+ encoding: UTF-8
898
+ string: '{"jsonrpc":"2.0","id":95,"method":"market_history_api.get_volume","params":{}}'
899
+ headers:
900
+ Content-Type:
901
+ - application/json; charset=utf-8
902
+ User-Agent:
903
+ - steem-ruby/0.9.4
904
+ Accept-Encoding:
905
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
906
+ Accept:
907
+ - "*/*"
908
+ Host:
909
+ - api.steemitdev.com
910
+ Content-Length:
911
+ - '110'
912
+ response:
913
+ status:
914
+ code: 200
915
+ message: OK
916
+ headers:
917
+ Date:
918
+ - Sat, 17 Oct 2020 04:56:46 GMT
919
+ Content-Type:
920
+ - application/json
921
+ Content-Length:
922
+ - '175'
923
+ Connection:
924
+ - keep-alive
925
+ Server:
926
+ - nginx
927
+ X-Jussi-Request-Id:
928
+ - '000394027747662822'
929
+ X-Amzn-Trace-Id:
930
+ - Root=1-5f8a798e-69befa2f0f5138cb3e88eba8
931
+ Access-Control-Allow-Origin:
932
+ - "*"
933
+ Access-Control-Allow-Methods:
934
+ - GET, POST, OPTIONS
935
+ Access-Control-Allow-Headers:
936
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
937
+ Strict-Transport-Security:
938
+ - max-age=31557600; includeSubDomains; preload
939
+ Content-Security-Policy:
940
+ - upgrade-insecure-requests
941
+ body:
942
+ encoding: UTF-8
943
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"36570454","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"5752307","precision":3,"nai":"@@000000013"}},"id":95}'
944
+ recorded_at: Sat, 17 Oct 2020 04:56:46 GMT
945
+ - request:
946
+ method: post
947
+ uri: https://api.steemitdev.com/
948
+ body:
949
+ encoding: UTF-8
950
+ string: '{"jsonrpc":"2.0","id":59,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
951
+ headers:
952
+ Content-Type:
953
+ - application/json; charset=utf-8
954
+ User-Agent:
955
+ - steem-ruby/0.9.4
956
+ Accept-Encoding:
957
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
958
+ Accept:
959
+ - "*/*"
960
+ Host:
961
+ - api.steemit.com
962
+ Content-Length:
963
+ - '95'
964
+ response:
965
+ status:
966
+ code: 200
967
+ message: OK
968
+ headers:
969
+ Date:
970
+ - Sat, 17 Oct 2020 05:03:24 GMT
971
+ Content-Type:
972
+ - application/json
973
+ Content-Length:
974
+ - '180'
975
+ Connection:
976
+ - keep-alive
977
+ Server:
978
+ - nginx
979
+ X-Jussi-Cache-Hit:
980
+ - appbase.jsonrpc.get_signature.params={"method":"market_history_api.get_volume"}
981
+ X-Jussi-Request-Id:
982
+ - '000898607327929917'
983
+ X-Amzn-Trace-Id:
984
+ - Root=1-5f8a7b1c-5cc2240d01e5a2e32a46568e
985
+ Access-Control-Allow-Origin:
986
+ - "*"
987
+ Access-Control-Allow-Methods:
988
+ - GET, POST, OPTIONS
989
+ Access-Control-Allow-Headers:
990
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
991
+ Strict-Transport-Security:
992
+ - max-age=31557600; includeSubDomains; preload
993
+ Content-Security-Policy:
994
+ - upgrade-insecure-requests
995
+ body:
996
+ encoding: UTF-8
997
+ string: '{"id":59,"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}}}'
998
+ recorded_at: Sat, 17 Oct 2020 05:03:24 GMT
999
+ - request:
1000
+ method: post
1001
+ uri: https://api.steemitdev.com/
1002
+ body:
1003
+ encoding: UTF-8
1004
+ string: '{"jsonrpc":"2.0","id":60,"method":"market_history_api.get_volume","params":{}}'
1005
+ headers:
1006
+ Content-Type:
1007
+ - application/json; charset=utf-8
1008
+ User-Agent:
1009
+ - steem-ruby/0.9.4
1010
+ Accept-Encoding:
1011
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1012
+ Accept:
1013
+ - "*/*"
1014
+ Host:
1015
+ - api.steemit.com
1016
+ Content-Length:
1017
+ - '110'
1018
+ response:
1019
+ status:
1020
+ code: 200
1021
+ message: OK
1022
+ headers:
1023
+ Date:
1024
+ - Sat, 17 Oct 2020 05:03:24 GMT
1025
+ Content-Type:
1026
+ - application/json
1027
+ Content-Length:
1028
+ - '175'
1029
+ Connection:
1030
+ - keep-alive
1031
+ Server:
1032
+ - nginx
1033
+ X-Jussi-Request-Id:
1034
+ - '001097807284079675'
1035
+ X-Amzn-Trace-Id:
1036
+ - Root=1-5f8a7b1c-7456a8f75dc8b98102044ff5
1037
+ Access-Control-Allow-Origin:
1038
+ - "*"
1039
+ Access-Control-Allow-Methods:
1040
+ - GET, POST, OPTIONS
1041
+ Access-Control-Allow-Headers:
1042
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1043
+ Strict-Transport-Security:
1044
+ - max-age=31557600; includeSubDomains; preload
1045
+ Content-Security-Policy:
1046
+ - upgrade-insecure-requests
1047
+ body:
1048
+ encoding: UTF-8
1049
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"36570454","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"5752307","precision":3,"nai":"@@000000013"}},"id":60}'
1050
+ recorded_at: Sat, 17 Oct 2020 05:03:24 GMT
1051
+ recorded_with: VCR 6.0.0