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,1049 @@
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":136,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
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
+ - '93'
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Sat, 17 Oct 2020 04:08:18 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '137'
33
+ Connection:
34
+ - keep-alive
35
+ Server:
36
+ - nginx
37
+ X-Jussi-Request-Id:
38
+ - '000633300983760392'
39
+ X-Amzn-Trace-Id:
40
+ - Root=1-5f8a6e32-7a0ec63d01c5bb6f69baa2b6
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":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}},"id":136}'
54
+ recorded_at: Sat, 17 Oct 2020 04:08:18 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://api.steemit.com/
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"jsonrpc":"2.0","id":137,"method":"market_history_api.get_trade_history","params":{}}'
61
+ headers:
62
+ Content-Type:
63
+ - application/json; charset=utf-8
64
+ User-Agent:
65
+ - steem-ruby/0.9.4
66
+ Accept-Encoding:
67
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
68
+ Accept:
69
+ - "*/*"
70
+ Host:
71
+ - api.steemit.com
72
+ Content-Length:
73
+ - '118'
74
+ response:
75
+ status:
76
+ code: 200
77
+ message: OK
78
+ headers:
79
+ Date:
80
+ - Sat, 17 Oct 2020 04:08:19 GMT
81
+ Content-Type:
82
+ - application/json
83
+ Content-Length:
84
+ - '49'
85
+ Connection:
86
+ - keep-alive
87
+ Server:
88
+ - nginx
89
+ X-Jussi-Request-Id:
90
+ - '000414294351369023'
91
+ X-Amzn-Trace-Id:
92
+ - Root=1-5f8a6e33-64fc69660b469cc37caf0411
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":{"trades":[]},"id":137}'
106
+ recorded_at: Sat, 17 Oct 2020 04:08:19 GMT
107
+ - request:
108
+ method: post
109
+ uri: https://api.steemit.com/
110
+ body:
111
+ encoding: UTF-8
112
+ string: '{"jsonrpc":"2.0","id":77,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
113
+ headers:
114
+ Content-Type:
115
+ - application/json; charset=utf-8
116
+ User-Agent:
117
+ - steem-ruby/0.9.4
118
+ Accept-Encoding:
119
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
120
+ Accept:
121
+ - "*/*"
122
+ Host:
123
+ - api.steemit.com
124
+ Content-Length:
125
+ - '96'
126
+ response:
127
+ status:
128
+ code: 200
129
+ message: OK
130
+ headers:
131
+ Date:
132
+ - Sat, 17 Oct 2020 04:09:13 GMT
133
+ Content-Type:
134
+ - application/json
135
+ Content-Length:
136
+ - '136'
137
+ Connection:
138
+ - keep-alive
139
+ Server:
140
+ - nginx
141
+ X-Jussi-Request-Id:
142
+ - '000916384947209032'
143
+ X-Amzn-Trace-Id:
144
+ - Root=1-5f8a6e69-02c3c588096227024aa8ce7d
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":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}},"id":77}'
158
+ recorded_at: Sat, 17 Oct 2020 04:09:13 GMT
159
+ - request:
160
+ method: post
161
+ uri: https://api.steemit.com/
162
+ body:
163
+ encoding: UTF-8
164
+ string: '{"jsonrpc":"2.0","id":78,"method":"market_history_api.get_trade_history","params":{}}'
165
+ headers:
166
+ Content-Type:
167
+ - application/json; charset=utf-8
168
+ User-Agent:
169
+ - steem-ruby/0.9.4
170
+ Accept-Encoding:
171
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
172
+ Accept:
173
+ - "*/*"
174
+ Host:
175
+ - api.steemit.com
176
+ Content-Length:
177
+ - '117'
178
+ response:
179
+ status:
180
+ code: 200
181
+ message: OK
182
+ headers:
183
+ Date:
184
+ - Sat, 17 Oct 2020 04:09:14 GMT
185
+ Content-Type:
186
+ - application/json
187
+ Content-Length:
188
+ - '48'
189
+ Connection:
190
+ - keep-alive
191
+ Server:
192
+ - nginx
193
+ X-Jussi-Request-Id:
194
+ - '000237768330567510'
195
+ X-Amzn-Trace-Id:
196
+ - Root=1-5f8a6e6a-30d74d0f0dee3dd41de9eaad
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":{"trades":[]},"id":78}'
210
+ recorded_at: Sat, 17 Oct 2020 04:09:14 GMT
211
+ - request:
212
+ method: post
213
+ uri: https://api.steemit.com/
214
+ body:
215
+ encoding: UTF-8
216
+ string: '{"jsonrpc":"2.0","id":35,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
217
+ headers:
218
+ Content-Type:
219
+ - application/json; charset=utf-8
220
+ User-Agent:
221
+ - steem-ruby/0.9.4
222
+ Accept-Encoding:
223
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
224
+ Accept:
225
+ - "*/*"
226
+ Host:
227
+ - api.steemit.com
228
+ Content-Length:
229
+ - '78'
230
+ response:
231
+ status:
232
+ code: 200
233
+ message: OK
234
+ headers:
235
+ Date:
236
+ - Sat, 17 Oct 2020 04:13:25 GMT
237
+ Content-Type:
238
+ - application/json
239
+ Content-Length:
240
+ - '136'
241
+ Connection:
242
+ - keep-alive
243
+ Server:
244
+ - nginx
245
+ X-Jussi-Cache-Hit:
246
+ - appbase.jsonrpc.get_signature.params={"method":"market_history_api.get_trade_history"}
247
+ X-Jussi-Request-Id:
248
+ - '000574674606874199'
249
+ X-Amzn-Trace-Id:
250
+ - Root=1-5f8a6f65-06ad0c571a402c817dbe3060
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: '{"id":35,"jsonrpc":"2.0","result":{"args":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}}}'
264
+ recorded_at: Sat, 17 Oct 2020 04:13:25 GMT
265
+ - request:
266
+ method: post
267
+ uri: https://api.steemit.com/
268
+ body:
269
+ encoding: UTF-8
270
+ string: '{"jsonrpc":"2.0","id":36,"method":"market_history_api.get_trade_history","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
+ - '117'
284
+ response:
285
+ status:
286
+ code: 200
287
+ message: OK
288
+ headers:
289
+ Date:
290
+ - Sat, 17 Oct 2020 04:13:26 GMT
291
+ Content-Type:
292
+ - application/json
293
+ Content-Length:
294
+ - '48'
295
+ Connection:
296
+ - keep-alive
297
+ Server:
298
+ - nginx
299
+ X-Jussi-Request-Id:
300
+ - '001124286080628471'
301
+ X-Amzn-Trace-Id:
302
+ - Root=1-5f8a6f66-64f2f81016b21ac54f5183d0
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":{"trades":[]},"id":36}'
316
+ recorded_at: Sat, 17 Oct 2020 04:13:26 GMT
317
+ - request:
318
+ method: post
319
+ uri: https://api.steemit.com/
320
+ body:
321
+ encoding: UTF-8
322
+ string: '{"jsonrpc":"2.0","id":48,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
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
+ - '95'
336
+ response:
337
+ status:
338
+ code: 200
339
+ message: OK
340
+ headers:
341
+ Date:
342
+ - Sat, 17 Oct 2020 04:14:19 GMT
343
+ Content-Type:
344
+ - application/json
345
+ Content-Length:
346
+ - '136'
347
+ Connection:
348
+ - keep-alive
349
+ Server:
350
+ - nginx
351
+ X-Jussi-Request-Id:
352
+ - '000069386795273235'
353
+ X-Amzn-Trace-Id:
354
+ - Root=1-5f8a6f9b-585877811db864682a766429
355
+ Access-Control-Allow-Origin:
356
+ - "*"
357
+ Access-Control-Allow-Methods:
358
+ - GET, POST, OPTIONS
359
+ Access-Control-Allow-Headers:
360
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
361
+ Strict-Transport-Security:
362
+ - max-age=31557600; includeSubDomains; preload
363
+ Content-Security-Policy:
364
+ - upgrade-insecure-requests
365
+ body:
366
+ encoding: UTF-8
367
+ string: '{"jsonrpc":"2.0","result":{"args":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}},"id":48}'
368
+ recorded_at: Sat, 17 Oct 2020 04:14:19 GMT
369
+ - request:
370
+ method: post
371
+ uri: https://api.steemit.com/
372
+ body:
373
+ encoding: UTF-8
374
+ string: '{"jsonrpc":"2.0","id":49,"method":"market_history_api.get_trade_history","params":{}}'
375
+ headers:
376
+ Content-Type:
377
+ - application/json; charset=utf-8
378
+ User-Agent:
379
+ - steem-ruby/0.9.4
380
+ Accept-Encoding:
381
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
382
+ Accept:
383
+ - "*/*"
384
+ Host:
385
+ - api.steemit.com
386
+ Content-Length:
387
+ - '117'
388
+ response:
389
+ status:
390
+ code: 200
391
+ message: OK
392
+ headers:
393
+ Date:
394
+ - Sat, 17 Oct 2020 04:14:20 GMT
395
+ Content-Type:
396
+ - application/json
397
+ Content-Length:
398
+ - '48'
399
+ Connection:
400
+ - keep-alive
401
+ Server:
402
+ - nginx
403
+ X-Jussi-Request-Id:
404
+ - '000972261509070389'
405
+ X-Amzn-Trace-Id:
406
+ - Root=1-5f8a6f9c-002c4be91b2ea6f077c17e03
407
+ Access-Control-Allow-Origin:
408
+ - "*"
409
+ Access-Control-Allow-Methods:
410
+ - GET, POST, OPTIONS
411
+ Access-Control-Allow-Headers:
412
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
413
+ Strict-Transport-Security:
414
+ - max-age=31557600; includeSubDomains; preload
415
+ Content-Security-Policy:
416
+ - upgrade-insecure-requests
417
+ body:
418
+ encoding: UTF-8
419
+ string: '{"jsonrpc":"2.0","result":{"trades":[]},"id":49}'
420
+ recorded_at: Sat, 17 Oct 2020 04:14:20 GMT
421
+ - request:
422
+ method: post
423
+ uri: https://api.steemitdev.com/
424
+ body:
425
+ encoding: UTF-8
426
+ string: '{"jsonrpc":"2.0","id":57,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
427
+ headers:
428
+ Content-Type:
429
+ - application/json; charset=utf-8
430
+ User-Agent:
431
+ - steem-ruby/0.9.4
432
+ Accept-Encoding:
433
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
434
+ Accept:
435
+ - "*/*"
436
+ Host:
437
+ - api.steemitdev.com
438
+ Content-Length:
439
+ - '82'
440
+ response:
441
+ status:
442
+ code: 200
443
+ message: OK
444
+ headers:
445
+ Date:
446
+ - Sat, 17 Oct 2020 04:22:39 GMT
447
+ Content-Type:
448
+ - application/json
449
+ Content-Length:
450
+ - '136'
451
+ Connection:
452
+ - keep-alive
453
+ Server:
454
+ - nginx
455
+ X-Jussi-Request-Id:
456
+ - '000328071676559247'
457
+ X-Amzn-Trace-Id:
458
+ - Root=1-5f8a718f-33c34a8c74adffee11aee3c6
459
+ Access-Control-Allow-Origin:
460
+ - "*"
461
+ Access-Control-Allow-Methods:
462
+ - GET, POST, OPTIONS
463
+ Access-Control-Allow-Headers:
464
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
465
+ Strict-Transport-Security:
466
+ - max-age=31557600; includeSubDomains; preload
467
+ Content-Security-Policy:
468
+ - upgrade-insecure-requests
469
+ body:
470
+ encoding: UTF-8
471
+ string: '{"jsonrpc":"2.0","result":{"args":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}},"id":57}'
472
+ recorded_at: Sat, 17 Oct 2020 04:22:39 GMT
473
+ - request:
474
+ method: post
475
+ uri: https://api.steemitdev.com/
476
+ body:
477
+ encoding: UTF-8
478
+ string: '{"jsonrpc":"2.0","id":58,"method":"market_history_api.get_trade_history","params":{}}'
479
+ headers:
480
+ Content-Type:
481
+ - application/json; charset=utf-8
482
+ User-Agent:
483
+ - steem-ruby/0.9.4
484
+ Accept-Encoding:
485
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
486
+ Accept:
487
+ - "*/*"
488
+ Host:
489
+ - api.steemitdev.com
490
+ Content-Length:
491
+ - '117'
492
+ response:
493
+ status:
494
+ code: 200
495
+ message: OK
496
+ headers:
497
+ Date:
498
+ - Sat, 17 Oct 2020 04:22:40 GMT
499
+ Content-Type:
500
+ - application/json
501
+ Content-Length:
502
+ - '48'
503
+ Connection:
504
+ - keep-alive
505
+ Server:
506
+ - nginx
507
+ X-Jussi-Request-Id:
508
+ - '000095595074883956'
509
+ X-Amzn-Trace-Id:
510
+ - Root=1-5f8a7190-7afea2d6412dffd3485c3a27
511
+ Access-Control-Allow-Origin:
512
+ - "*"
513
+ Access-Control-Allow-Methods:
514
+ - GET, POST, OPTIONS
515
+ Access-Control-Allow-Headers:
516
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
517
+ Strict-Transport-Security:
518
+ - max-age=31557600; includeSubDomains; preload
519
+ Content-Security-Policy:
520
+ - upgrade-insecure-requests
521
+ body:
522
+ encoding: UTF-8
523
+ string: '{"jsonrpc":"2.0","result":{"trades":[]},"id":58}'
524
+ recorded_at: Sat, 17 Oct 2020 04:22:40 GMT
525
+ - request:
526
+ method: post
527
+ uri: https://api.steemitdev.com/
528
+ body:
529
+ encoding: UTF-8
530
+ string: '{"jsonrpc":"2.0","id":16,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
531
+ headers:
532
+ Content-Type:
533
+ - application/json; charset=utf-8
534
+ User-Agent:
535
+ - steem-ruby/0.9.4
536
+ Accept-Encoding:
537
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
538
+ Accept:
539
+ - "*/*"
540
+ Host:
541
+ - api.steemitdev.com
542
+ Content-Length:
543
+ - '78'
544
+ response:
545
+ status:
546
+ code: 200
547
+ message: OK
548
+ headers:
549
+ Date:
550
+ - Sat, 17 Oct 2020 04:26:46 GMT
551
+ Content-Type:
552
+ - application/json
553
+ Content-Length:
554
+ - '136'
555
+ Connection:
556
+ - keep-alive
557
+ Server:
558
+ - nginx
559
+ X-Jussi-Cache-Hit:
560
+ - appbase.jsonrpc.get_signature.params={"method":"market_history_api.get_trade_history"}
561
+ X-Jussi-Request-Id:
562
+ - '000461097856474761'
563
+ X-Amzn-Trace-Id:
564
+ - Root=1-5f8a7286-4541dabc31398dfc7b3e7196
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: '{"id":16,"jsonrpc":"2.0","result":{"args":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}}}'
578
+ recorded_at: Sat, 17 Oct 2020 04:26:46 GMT
579
+ - request:
580
+ method: post
581
+ uri: https://api.steemitdev.com/
582
+ body:
583
+ encoding: UTF-8
584
+ string: '{"jsonrpc":"2.0","id":17,"method":"market_history_api.get_trade_history","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
+ - '117'
598
+ response:
599
+ status:
600
+ code: 200
601
+ message: OK
602
+ headers:
603
+ Date:
604
+ - Sat, 17 Oct 2020 04:26:46 GMT
605
+ Content-Type:
606
+ - application/json
607
+ Content-Length:
608
+ - '48'
609
+ Connection:
610
+ - keep-alive
611
+ Server:
612
+ - nginx
613
+ X-Jussi-Request-Id:
614
+ - '000136366844900381'
615
+ X-Amzn-Trace-Id:
616
+ - Root=1-5f8a7286-5e0bbee75c7e2968780949b8
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":{"trades":[]},"id":17}'
630
+ recorded_at: Sat, 17 Oct 2020 04:26:47 GMT
631
+ - request:
632
+ method: post
633
+ uri: https://api.steemitdev.com/
634
+ body:
635
+ encoding: UTF-8
636
+ string: '{"jsonrpc":"2.0","id":56,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
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
+ - '78'
650
+ response:
651
+ status:
652
+ code: 200
653
+ message: OK
654
+ headers:
655
+ Date:
656
+ - Sat, 17 Oct 2020 04:34:25 GMT
657
+ Content-Type:
658
+ - application/json
659
+ Content-Length:
660
+ - '136'
661
+ Connection:
662
+ - keep-alive
663
+ Server:
664
+ - nginx
665
+ X-Jussi-Request-Id:
666
+ - '000406225815151996'
667
+ X-Amzn-Trace-Id:
668
+ - Root=1-5f8a7450-652a1a476479749d593e56b7
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":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}},"id":56}'
682
+ recorded_at: Sat, 17 Oct 2020 04:34:25 GMT
683
+ - request:
684
+ method: post
685
+ uri: https://api.steemitdev.com/
686
+ body:
687
+ encoding: UTF-8
688
+ string: '{"jsonrpc":"2.0","id":57,"method":"market_history_api.get_trade_history","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
+ - '117'
702
+ response:
703
+ status:
704
+ code: 200
705
+ message: OK
706
+ headers:
707
+ Date:
708
+ - Sat, 17 Oct 2020 04:34:25 GMT
709
+ Content-Type:
710
+ - application/json
711
+ Content-Length:
712
+ - '48'
713
+ Connection:
714
+ - keep-alive
715
+ Server:
716
+ - nginx
717
+ X-Jussi-Request-Id:
718
+ - '000509735971341561'
719
+ X-Amzn-Trace-Id:
720
+ - Root=1-5f8a7451-0a56e83400e43335066230b6
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":{"trades":[]},"id":57}'
734
+ recorded_at: Sat, 17 Oct 2020 04:34:25 GMT
735
+ - request:
736
+ method: post
737
+ uri: https://api.steemitdev.com/
738
+ body:
739
+ encoding: UTF-8
740
+ string: '{"jsonrpc":"2.0","id":23,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
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
+ - '92'
754
+ response:
755
+ status:
756
+ code: 200
757
+ message: OK
758
+ headers:
759
+ Date:
760
+ - Sat, 17 Oct 2020 04:39:25 GMT
761
+ Content-Type:
762
+ - application/json
763
+ Content-Length:
764
+ - '136'
765
+ Connection:
766
+ - keep-alive
767
+ Server:
768
+ - nginx
769
+ X-Jussi-Request-Id:
770
+ - '000235258733673035'
771
+ X-Amzn-Trace-Id:
772
+ - Root=1-5f8a7577-0806729c07f1fec16c16ee97
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":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}},"id":23}'
786
+ recorded_at: Sat, 17 Oct 2020 04:39:25 GMT
787
+ - request:
788
+ method: post
789
+ uri: https://api.steemitdev.com/
790
+ body:
791
+ encoding: UTF-8
792
+ string: '{"jsonrpc":"2.0","id":24,"method":"market_history_api.get_trade_history","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
+ - '117'
806
+ response:
807
+ status:
808
+ code: 200
809
+ message: OK
810
+ headers:
811
+ Date:
812
+ - Sat, 17 Oct 2020 04:39:31 GMT
813
+ Content-Type:
814
+ - application/json
815
+ Content-Length:
816
+ - '48'
817
+ Connection:
818
+ - keep-alive
819
+ Server:
820
+ - nginx
821
+ X-Jussi-Request-Id:
822
+ - '000831097778707414'
823
+ X-Amzn-Trace-Id:
824
+ - Root=1-5f8a757e-622b544e58d41cb06bf02aea
825
+ Access-Control-Allow-Origin:
826
+ - "*"
827
+ Access-Control-Allow-Methods:
828
+ - GET, POST, OPTIONS
829
+ Access-Control-Allow-Headers:
830
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
831
+ Strict-Transport-Security:
832
+ - max-age=31557600; includeSubDomains; preload
833
+ Content-Security-Policy:
834
+ - upgrade-insecure-requests
835
+ body:
836
+ encoding: UTF-8
837
+ string: '{"jsonrpc":"2.0","result":{"trades":[]},"id":24}'
838
+ recorded_at: Sat, 17 Oct 2020 04:39:31 GMT
839
+ - request:
840
+ method: post
841
+ uri: https://api.steemitdev.com/
842
+ body:
843
+ encoding: UTF-8
844
+ string: '{"jsonrpc":"2.0","id":96,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
845
+ headers:
846
+ Content-Type:
847
+ - application/json; charset=utf-8
848
+ User-Agent:
849
+ - steem-ruby/0.9.4
850
+ Accept-Encoding:
851
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
852
+ Accept:
853
+ - "*/*"
854
+ Host:
855
+ - api.steemitdev.com
856
+ Content-Length:
857
+ - '78'
858
+ response:
859
+ status:
860
+ code: 200
861
+ message: OK
862
+ headers:
863
+ Date:
864
+ - Sat, 17 Oct 2020 04:56:47 GMT
865
+ Content-Type:
866
+ - application/json
867
+ Content-Length:
868
+ - '136'
869
+ Connection:
870
+ - keep-alive
871
+ Server:
872
+ - nginx
873
+ X-Jussi-Cache-Hit:
874
+ - appbase.jsonrpc.get_signature.params={"method":"market_history_api.get_trade_history"}
875
+ X-Jussi-Request-Id:
876
+ - '000443287770735009'
877
+ X-Amzn-Trace-Id:
878
+ - Root=1-5f8a798f-5cb2a5952b57dc667239de6e
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: '{"id":96,"jsonrpc":"2.0","result":{"args":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}}}'
892
+ recorded_at: Sat, 17 Oct 2020 04:56:47 GMT
893
+ - request:
894
+ method: post
895
+ uri: https://api.steemitdev.com/
896
+ body:
897
+ encoding: UTF-8
898
+ string: '{"jsonrpc":"2.0","id":97,"method":"market_history_api.get_trade_history","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
+ - '117'
912
+ response:
913
+ status:
914
+ code: 200
915
+ message: OK
916
+ headers:
917
+ Date:
918
+ - Sat, 17 Oct 2020 04:56:47 GMT
919
+ Content-Type:
920
+ - application/json
921
+ Content-Length:
922
+ - '48'
923
+ Connection:
924
+ - keep-alive
925
+ Server:
926
+ - nginx
927
+ X-Jussi-Request-Id:
928
+ - '000665486297093474'
929
+ X-Amzn-Trace-Id:
930
+ - Root=1-5f8a798f-7aadc2ed501e7d894a8e2818
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":{"trades":[]},"id":97}'
944
+ recorded_at: Sat, 17 Oct 2020 04:56:47 GMT
945
+ - request:
946
+ method: post
947
+ uri: https://api.steemitdev.com/
948
+ body:
949
+ encoding: UTF-8
950
+ string: '{"jsonrpc":"2.0","id":67,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_trade_history"}}'
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
+ - '78'
964
+ response:
965
+ status:
966
+ code: 200
967
+ message: OK
968
+ headers:
969
+ Date:
970
+ - Sat, 17 Oct 2020 05:03:27 GMT
971
+ Content-Type:
972
+ - application/json
973
+ Content-Length:
974
+ - '136'
975
+ Connection:
976
+ - keep-alive
977
+ Server:
978
+ - nginx
979
+ X-Jussi-Request-Id:
980
+ - '000947773293490378'
981
+ X-Amzn-Trace-Id:
982
+ - Root=1-5f8a7b1f-24b72ba5764a3b3f473b121e
983
+ Access-Control-Allow-Origin:
984
+ - "*"
985
+ Access-Control-Allow-Methods:
986
+ - GET, POST, OPTIONS
987
+ Access-Control-Allow-Headers:
988
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
989
+ Strict-Transport-Security:
990
+ - max-age=31557600; includeSubDomains; preload
991
+ Content-Security-Policy:
992
+ - upgrade-insecure-requests
993
+ body:
994
+ encoding: UTF-8
995
+ string: '{"jsonrpc":"2.0","result":{"args":{"start":"1970-01-01T00:00:00","end":"1970-01-01T00:00:00","limit":1000},"ret":{"trades":[]}},"id":67}'
996
+ recorded_at: Sat, 17 Oct 2020 05:03:27 GMT
997
+ - request:
998
+ method: post
999
+ uri: https://api.steemitdev.com/
1000
+ body:
1001
+ encoding: UTF-8
1002
+ string: '{"jsonrpc":"2.0","id":68,"method":"market_history_api.get_trade_history","params":{}}'
1003
+ headers:
1004
+ Content-Type:
1005
+ - application/json; charset=utf-8
1006
+ User-Agent:
1007
+ - steem-ruby/0.9.4
1008
+ Accept-Encoding:
1009
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1010
+ Accept:
1011
+ - "*/*"
1012
+ Host:
1013
+ - api.steemit.com
1014
+ Content-Length:
1015
+ - '117'
1016
+ response:
1017
+ status:
1018
+ code: 200
1019
+ message: OK
1020
+ headers:
1021
+ Date:
1022
+ - Sat, 17 Oct 2020 05:03:27 GMT
1023
+ Content-Type:
1024
+ - application/json
1025
+ Content-Length:
1026
+ - '48'
1027
+ Connection:
1028
+ - keep-alive
1029
+ Server:
1030
+ - nginx
1031
+ X-Jussi-Request-Id:
1032
+ - '000451213367496582'
1033
+ X-Amzn-Trace-Id:
1034
+ - Root=1-5f8a7b1f-410ad1421d1e576c68fb3b21
1035
+ Access-Control-Allow-Origin:
1036
+ - "*"
1037
+ Access-Control-Allow-Methods:
1038
+ - GET, POST, OPTIONS
1039
+ Access-Control-Allow-Headers:
1040
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1041
+ Strict-Transport-Security:
1042
+ - max-age=31557600; includeSubDomains; preload
1043
+ Content-Security-Policy:
1044
+ - upgrade-insecure-requests
1045
+ body:
1046
+ encoding: UTF-8
1047
+ string: '{"jsonrpc":"2.0","result":{"trades":[]},"id":68}'
1048
+ recorded_at: Sat, 17 Oct 2020 05:03:28 GMT
1049
+ recorded_with: VCR 6.0.0