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,1561 @@
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":4,"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.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
+ - '84'
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Sat, 07 Nov 2020 19:44:15 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '179'
33
+ Connection:
34
+ - keep-alive
35
+ Server:
36
+ - nginx
37
+ X-Jussi-Request-Id:
38
+ - '000939435880865721'
39
+ X-Amzn-Trace-Id:
40
+ - Root=1-5fa6f90f-70045a1906170e2154ac1220
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":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":4}'
54
+ recorded_at: Sat, 07 Nov 2020 19:44:15 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://api.steemitdev.com/
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"jsonrpc":"2.0","id":5,"method":"market_history_api.get_volume","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
+ - '109'
74
+ response:
75
+ status:
76
+ code: 200
77
+ message: OK
78
+ headers:
79
+ Date:
80
+ - Sat, 07 Nov 2020 19:44:15 GMT
81
+ Content-Type:
82
+ - application/json
83
+ Content-Length:
84
+ - '174'
85
+ Connection:
86
+ - keep-alive
87
+ Server:
88
+ - nginx
89
+ X-Jussi-Request-Id:
90
+ - '000804555817233610'
91
+ X-Amzn-Trace-Id:
92
+ - Root=1-5fa6f90f-2e05553e0efe20ea52ec54c1
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":{"steem_volume":{"amount":"15419523","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2305037","precision":3,"nai":"@@000000013"}},"id":5}'
106
+ recorded_at: Sat, 07 Nov 2020 19:44:15 GMT
107
+ - request:
108
+ method: post
109
+ uri: https://api.steemitdev.com/
110
+ body:
111
+ encoding: UTF-8
112
+ string: '{"jsonrpc":"2.0","id":2,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
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
+ response:
123
+ status:
124
+ code: 200
125
+ message: OK
126
+ headers:
127
+ Date:
128
+ - Sat, 07 Nov 2020 20:12:07 GMT
129
+ Content-Type:
130
+ - application/json
131
+ Content-Length:
132
+ - '179'
133
+ Connection:
134
+ - keep-alive
135
+ Server:
136
+ - nginx
137
+ X-Jussi-Request-Id:
138
+ - '000153097145140566'
139
+ X-Amzn-Trace-Id:
140
+ - Root=1-5fa6ff96-0c3bab45442af5d96f501948
141
+ Access-Control-Allow-Origin:
142
+ - "*"
143
+ Access-Control-Allow-Methods:
144
+ - GET, POST, OPTIONS
145
+ Access-Control-Allow-Headers:
146
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
147
+ Strict-Transport-Security:
148
+ - max-age=31557600; includeSubDomains; preload
149
+ Content-Security-Policy:
150
+ - upgrade-insecure-requests
151
+ body:
152
+ encoding: UTF-8
153
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":2}'
154
+ recorded_at: Sat, 07 Nov 2020 20:12:08 GMT
155
+ - request:
156
+ method: post
157
+ uri: https://api.steemitdev.com/
158
+ body:
159
+ encoding: UTF-8
160
+ string: '{"jsonrpc":"2.0","id":3,"method":"market_history_api.get_volume","params":{}}'
161
+ headers:
162
+ Content-Type:
163
+ - application/json; charset=utf-8
164
+ User-Agent:
165
+ - steem-ruby/0.9.5
166
+ Accept-Encoding:
167
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
168
+ Accept:
169
+ - "*/*"
170
+ Host:
171
+ - api.steemitdev.com
172
+ Content-Length:
173
+ - '109'
174
+ response:
175
+ status:
176
+ code: 200
177
+ message: OK
178
+ headers:
179
+ Date:
180
+ - Sat, 07 Nov 2020 20:12:08 GMT
181
+ Content-Type:
182
+ - application/json
183
+ Content-Length:
184
+ - '174'
185
+ Connection:
186
+ - keep-alive
187
+ Server:
188
+ - nginx
189
+ X-Jussi-Request-Id:
190
+ - '000259051214987912'
191
+ X-Amzn-Trace-Id:
192
+ - Root=1-5fa6ff98-47c526aa35a533be53bcf22e
193
+ Access-Control-Allow-Origin:
194
+ - "*"
195
+ Access-Control-Allow-Methods:
196
+ - GET, POST, OPTIONS
197
+ Access-Control-Allow-Headers:
198
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
199
+ Strict-Transport-Security:
200
+ - max-age=31557600; includeSubDomains; preload
201
+ Content-Security-Policy:
202
+ - upgrade-insecure-requests
203
+ body:
204
+ encoding: UTF-8
205
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"16871029","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2507959","precision":3,"nai":"@@000000013"}},"id":3}'
206
+ recorded_at: Sat, 07 Nov 2020 20:12:08 GMT
207
+ - request:
208
+ method: post
209
+ uri: https://api.steemitdev.com/
210
+ body:
211
+ encoding: UTF-8
212
+ string: '{"jsonrpc":"2.0","id":42,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
213
+ headers:
214
+ Content-Type:
215
+ - application/json; charset=utf-8
216
+ User-Agent:
217
+ - steem-ruby/0.9.5
218
+ Accept-Encoding:
219
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
220
+ Accept:
221
+ - "*/*"
222
+ Host:
223
+ - api.steemitdev.com
224
+ Content-Length:
225
+ - '78'
226
+ response:
227
+ status:
228
+ code: 200
229
+ message: OK
230
+ headers:
231
+ Date:
232
+ - Sat, 07 Nov 2020 20:21:30 GMT
233
+ Content-Type:
234
+ - application/json
235
+ Content-Length:
236
+ - '180'
237
+ Connection:
238
+ - keep-alive
239
+ Server:
240
+ - nginx
241
+ X-Jussi-Request-Id:
242
+ - '000118310525032703'
243
+ X-Amzn-Trace-Id:
244
+ - Root=1-5fa701c9-66ac63c64367ea353cdc2652
245
+ Access-Control-Allow-Origin:
246
+ - "*"
247
+ Access-Control-Allow-Methods:
248
+ - GET, POST, OPTIONS
249
+ Access-Control-Allow-Headers:
250
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
251
+ Strict-Transport-Security:
252
+ - max-age=31557600; includeSubDomains; preload
253
+ Content-Security-Policy:
254
+ - upgrade-insecure-requests
255
+ body:
256
+ encoding: UTF-8
257
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":42}'
258
+ recorded_at: Sat, 07 Nov 2020 20:21:30 GMT
259
+ - request:
260
+ method: post
261
+ uri: https://api.steemitdev.com/
262
+ body:
263
+ encoding: UTF-8
264
+ string: '{"jsonrpc":"2.0","id":43,"method":"market_history_api.get_volume","params":{}}'
265
+ headers:
266
+ Content-Type:
267
+ - application/json; charset=utf-8
268
+ User-Agent:
269
+ - steem-ruby/0.9.5
270
+ Accept-Encoding:
271
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
272
+ Accept:
273
+ - "*/*"
274
+ Host:
275
+ - api.steemitdev.com
276
+ Content-Length:
277
+ - '110'
278
+ response:
279
+ status:
280
+ code: 200
281
+ message: OK
282
+ headers:
283
+ Date:
284
+ - Sat, 07 Nov 2020 20:21:32 GMT
285
+ Content-Type:
286
+ - application/json
287
+ Content-Length:
288
+ - '175'
289
+ Connection:
290
+ - keep-alive
291
+ Server:
292
+ - nginx
293
+ X-Jussi-Request-Id:
294
+ - '000382043840182389'
295
+ X-Amzn-Trace-Id:
296
+ - Root=1-5fa701ca-548564050cd6357e0440f718
297
+ Access-Control-Allow-Origin:
298
+ - "*"
299
+ Access-Control-Allow-Methods:
300
+ - GET, POST, OPTIONS
301
+ Access-Control-Allow-Headers:
302
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
303
+ Strict-Transport-Security:
304
+ - max-age=31557600; includeSubDomains; preload
305
+ Content-Security-Policy:
306
+ - upgrade-insecure-requests
307
+ body:
308
+ encoding: UTF-8
309
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"16871029","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2507959","precision":3,"nai":"@@000000013"}},"id":43}'
310
+ recorded_at: Sat, 07 Nov 2020 20:21:32 GMT
311
+ - request:
312
+ method: post
313
+ uri: https://api.steemitdev.com/
314
+ body:
315
+ encoding: UTF-8
316
+ string: '{"jsonrpc":"2.0","id":121,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
317
+ headers:
318
+ Content-Type:
319
+ - application/json; charset=utf-8
320
+ User-Agent:
321
+ - steem-ruby/0.9.5
322
+ Accept-Encoding:
323
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
324
+ Accept:
325
+ - "*/*"
326
+ Host:
327
+ - api.steemit.com
328
+ Content-Length:
329
+ - '79'
330
+ response:
331
+ status:
332
+ code: 200
333
+ message: OK
334
+ headers:
335
+ Date:
336
+ - Sat, 07 Nov 2020 20:28:51 GMT
337
+ Content-Type:
338
+ - application/json
339
+ Content-Length:
340
+ - '181'
341
+ Connection:
342
+ - keep-alive
343
+ Server:
344
+ - nginx
345
+ X-Jussi-Request-Id:
346
+ - '000635050749024427'
347
+ X-Amzn-Trace-Id:
348
+ - Root=1-5fa7037f-4d9694ea64ebe84b5bf23c4d
349
+ Access-Control-Allow-Origin:
350
+ - "*"
351
+ Access-Control-Allow-Methods:
352
+ - GET, POST, OPTIONS
353
+ Access-Control-Allow-Headers:
354
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
355
+ Strict-Transport-Security:
356
+ - max-age=31557600; includeSubDomains; preload
357
+ Content-Security-Policy:
358
+ - upgrade-insecure-requests
359
+ body:
360
+ encoding: UTF-8
361
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":121}'
362
+ recorded_at: Sat, 07 Nov 2020 20:28:51 GMT
363
+ - request:
364
+ method: post
365
+ uri: https://api.steemitdev.com/
366
+ body:
367
+ encoding: UTF-8
368
+ string: '{"jsonrpc":"2.0","id":122,"method":"market_history_api.get_volume","params":{}}'
369
+ headers:
370
+ Content-Type:
371
+ - application/json; charset=utf-8
372
+ User-Agent:
373
+ - steem-ruby/0.9.5
374
+ Accept-Encoding:
375
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
376
+ Accept:
377
+ - "*/*"
378
+ Host:
379
+ - api.steemit.com
380
+ Content-Length:
381
+ - '111'
382
+ response:
383
+ status:
384
+ code: 200
385
+ message: OK
386
+ headers:
387
+ Date:
388
+ - Sat, 07 Nov 2020 20:28:53 GMT
389
+ Content-Type:
390
+ - application/json
391
+ Content-Length:
392
+ - '176'
393
+ Connection:
394
+ - keep-alive
395
+ Server:
396
+ - nginx
397
+ X-Jussi-Request-Id:
398
+ - '000474600941888973'
399
+ X-Amzn-Trace-Id:
400
+ - Root=1-5fa70383-3eaa5d651e0969326941979b
401
+ Access-Control-Allow-Origin:
402
+ - "*"
403
+ Access-Control-Allow-Methods:
404
+ - GET, POST, OPTIONS
405
+ Access-Control-Allow-Headers:
406
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
407
+ Strict-Transport-Security:
408
+ - max-age=31557600; includeSubDomains; preload
409
+ Content-Security-Policy:
410
+ - upgrade-insecure-requests
411
+ body:
412
+ encoding: UTF-8
413
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"18002766","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2665599","precision":3,"nai":"@@000000013"}},"id":122}'
414
+ recorded_at: Sat, 07 Nov 2020 20:28:53 GMT
415
+ - request:
416
+ method: post
417
+ uri: https://api.steemitdev.com/
418
+ body:
419
+ encoding: UTF-8
420
+ string: '{"jsonrpc":"2.0","id":68,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
421
+ headers:
422
+ Content-Type:
423
+ - application/json; charset=utf-8
424
+ User-Agent:
425
+ - steem-ruby/0.9.5
426
+ Accept-Encoding:
427
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
428
+ Accept:
429
+ - "*/*"
430
+ Host:
431
+ - api.steemitdev.com
432
+ Content-Length:
433
+ - '95'
434
+ response:
435
+ status:
436
+ code: 200
437
+ message: OK
438
+ headers:
439
+ Date:
440
+ - Sat, 07 Nov 2020 20:31:15 GMT
441
+ Content-Type:
442
+ - application/json
443
+ Content-Length:
444
+ - '180'
445
+ Connection:
446
+ - keep-alive
447
+ Server:
448
+ - nginx
449
+ X-Jussi-Request-Id:
450
+ - '000569670676751574'
451
+ X-Amzn-Trace-Id:
452
+ - Root=1-5fa70413-46233b2c451364eb19b56984
453
+ Access-Control-Allow-Origin:
454
+ - "*"
455
+ Access-Control-Allow-Methods:
456
+ - GET, POST, OPTIONS
457
+ Access-Control-Allow-Headers:
458
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
459
+ Strict-Transport-Security:
460
+ - max-age=31557600; includeSubDomains; preload
461
+ Content-Security-Policy:
462
+ - upgrade-insecure-requests
463
+ body:
464
+ encoding: UTF-8
465
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":68}'
466
+ recorded_at: Sat, 07 Nov 2020 20:31:16 GMT
467
+ - request:
468
+ method: post
469
+ uri: https://api.steemitdev.com/
470
+ body:
471
+ encoding: UTF-8
472
+ string: '{"jsonrpc":"2.0","id":69,"method":"market_history_api.get_volume","params":{}}'
473
+ headers:
474
+ Content-Type:
475
+ - application/json; charset=utf-8
476
+ User-Agent:
477
+ - steem-ruby/0.9.5
478
+ Accept-Encoding:
479
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
480
+ Accept:
481
+ - "*/*"
482
+ Host:
483
+ - api.steemitdev.com
484
+ Content-Length:
485
+ - '110'
486
+ response:
487
+ status:
488
+ code: 200
489
+ message: OK
490
+ headers:
491
+ Date:
492
+ - Sat, 07 Nov 2020 20:31:17 GMT
493
+ Content-Type:
494
+ - application/json
495
+ Content-Length:
496
+ - '175'
497
+ Connection:
498
+ - keep-alive
499
+ Server:
500
+ - nginx
501
+ X-Jussi-Request-Id:
502
+ - '000910192550246660'
503
+ X-Amzn-Trace-Id:
504
+ - Root=1-5fa70414-1de97a7a450e41e32dcbf716
505
+ Access-Control-Allow-Origin:
506
+ - "*"
507
+ Access-Control-Allow-Methods:
508
+ - GET, POST, OPTIONS
509
+ Access-Control-Allow-Headers:
510
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
511
+ Strict-Transport-Security:
512
+ - max-age=31557600; includeSubDomains; preload
513
+ Content-Security-Policy:
514
+ - upgrade-insecure-requests
515
+ body:
516
+ encoding: UTF-8
517
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"18003971","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2665777","precision":3,"nai":"@@000000013"}},"id":69}'
518
+ recorded_at: Sat, 07 Nov 2020 20:31:17 GMT
519
+ - request:
520
+ method: post
521
+ uri: https://api.steemitdev.com/
522
+ body:
523
+ encoding: UTF-8
524
+ string: '{"jsonrpc":"2.0","id":66,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
525
+ headers:
526
+ Content-Type:
527
+ - application/json; charset=utf-8
528
+ User-Agent:
529
+ - steem-ruby/0.9.5
530
+ Accept-Encoding:
531
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
532
+ Accept:
533
+ - "*/*"
534
+ Host:
535
+ - api.steemitdev.com
536
+ Content-Length:
537
+ - '78'
538
+ response:
539
+ status:
540
+ code: 200
541
+ message: OK
542
+ headers:
543
+ Date:
544
+ - Sat, 07 Nov 2020 20:35:13 GMT
545
+ Content-Type:
546
+ - application/json
547
+ Content-Length:
548
+ - '180'
549
+ Connection:
550
+ - keep-alive
551
+ Server:
552
+ - nginx
553
+ X-Jussi-Request-Id:
554
+ - '000760536387467790'
555
+ X-Amzn-Trace-Id:
556
+ - Root=1-5fa70501-58a411cb5838618220dbaecb
557
+ Access-Control-Allow-Origin:
558
+ - "*"
559
+ Access-Control-Allow-Methods:
560
+ - GET, POST, OPTIONS
561
+ Access-Control-Allow-Headers:
562
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
563
+ Strict-Transport-Security:
564
+ - max-age=31557600; includeSubDomains; preload
565
+ Content-Security-Policy:
566
+ - upgrade-insecure-requests
567
+ body:
568
+ encoding: UTF-8
569
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":66}'
570
+ recorded_at: Sat, 07 Nov 2020 20:35:13 GMT
571
+ - request:
572
+ method: post
573
+ uri: https://api.steemitdev.com/
574
+ body:
575
+ encoding: UTF-8
576
+ string: '{"jsonrpc":"2.0","id":67,"method":"market_history_api.get_volume","params":{}}'
577
+ headers:
578
+ Content-Type:
579
+ - application/json; charset=utf-8
580
+ User-Agent:
581
+ - steem-ruby/0.9.5
582
+ Accept-Encoding:
583
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
584
+ Accept:
585
+ - "*/*"
586
+ Host:
587
+ - api.steemitdev.com
588
+ Content-Length:
589
+ - '110'
590
+ response:
591
+ status:
592
+ code: 200
593
+ message: OK
594
+ headers:
595
+ Date:
596
+ - Sat, 07 Nov 2020 20:35:13 GMT
597
+ Content-Type:
598
+ - application/json
599
+ Content-Length:
600
+ - '175'
601
+ Connection:
602
+ - keep-alive
603
+ Server:
604
+ - nginx
605
+ X-Jussi-Cache-Hit:
606
+ - appbase.market_history_api.get_volume.params={}
607
+ X-Jussi-Request-Id:
608
+ - '001057423921925993'
609
+ X-Amzn-Trace-Id:
610
+ - Root=1-5fa70501-31e96c43511a2b7a099a6843
611
+ Access-Control-Allow-Origin:
612
+ - "*"
613
+ Access-Control-Allow-Methods:
614
+ - GET, POST, OPTIONS
615
+ Access-Control-Allow-Headers:
616
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
617
+ Strict-Transport-Security:
618
+ - max-age=31557600; includeSubDomains; preload
619
+ Content-Security-Policy:
620
+ - upgrade-insecure-requests
621
+ body:
622
+ encoding: UTF-8
623
+ string: '{"id":67,"jsonrpc":"2.0","result":{"steem_volume":{"amount":"19168662","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2828418","precision":3,"nai":"@@000000013"}}}'
624
+ recorded_at: Sat, 07 Nov 2020 20:35:13 GMT
625
+ - request:
626
+ method: post
627
+ uri: https://api.steemitdev.com/
628
+ body:
629
+ encoding: UTF-8
630
+ string: '{"jsonrpc":"2.0","id":58,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
631
+ headers:
632
+ Content-Type:
633
+ - application/json; charset=utf-8
634
+ User-Agent:
635
+ - steem-ruby/0.9.5
636
+ Accept-Encoding:
637
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
638
+ Accept:
639
+ - "*/*"
640
+ Host:
641
+ - api.steemitdev.com
642
+ Content-Length:
643
+ - '92'
644
+ response:
645
+ status:
646
+ code: 200
647
+ message: OK
648
+ headers:
649
+ Date:
650
+ - Sat, 07 Nov 2020 20:42:03 GMT
651
+ Content-Type:
652
+ - application/json
653
+ Content-Length:
654
+ - '180'
655
+ Connection:
656
+ - keep-alive
657
+ Server:
658
+ - nginx
659
+ X-Jussi-Request-Id:
660
+ - '000188187801101087'
661
+ X-Amzn-Trace-Id:
662
+ - Root=1-5fa7069a-15583e647070f0ea0a32fa44
663
+ Access-Control-Allow-Origin:
664
+ - "*"
665
+ Access-Control-Allow-Methods:
666
+ - GET, POST, OPTIONS
667
+ Access-Control-Allow-Headers:
668
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
669
+ Strict-Transport-Security:
670
+ - max-age=31557600; includeSubDomains; preload
671
+ Content-Security-Policy:
672
+ - upgrade-insecure-requests
673
+ body:
674
+ encoding: UTF-8
675
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":58}'
676
+ recorded_at: Sat, 07 Nov 2020 20:42:03 GMT
677
+ - request:
678
+ method: post
679
+ uri: https://api.steemitdev.com/
680
+ body:
681
+ encoding: UTF-8
682
+ string: '{"jsonrpc":"2.0","id":59,"method":"market_history_api.get_volume","params":{}}'
683
+ headers:
684
+ Content-Type:
685
+ - application/json; charset=utf-8
686
+ User-Agent:
687
+ - steem-ruby/0.9.5
688
+ Accept-Encoding:
689
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
690
+ Accept:
691
+ - "*/*"
692
+ Host:
693
+ - api.steemitdev.com
694
+ Content-Length:
695
+ - '110'
696
+ response:
697
+ status:
698
+ code: 200
699
+ message: OK
700
+ headers:
701
+ Date:
702
+ - Sat, 07 Nov 2020 20:42:05 GMT
703
+ Content-Type:
704
+ - application/json
705
+ Content-Length:
706
+ - '175'
707
+ Connection:
708
+ - keep-alive
709
+ Server:
710
+ - nginx
711
+ X-Jussi-Request-Id:
712
+ - '000519015419761500'
713
+ X-Amzn-Trace-Id:
714
+ - Root=1-5fa7069c-4e09cf856ba9db0035511a0a
715
+ Access-Control-Allow-Origin:
716
+ - "*"
717
+ Access-Control-Allow-Methods:
718
+ - GET, POST, OPTIONS
719
+ Access-Control-Allow-Headers:
720
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
721
+ Strict-Transport-Security:
722
+ - max-age=31557600; includeSubDomains; preload
723
+ Content-Security-Policy:
724
+ - upgrade-insecure-requests
725
+ body:
726
+ encoding: UTF-8
727
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"19164611","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2827788","precision":3,"nai":"@@000000013"}},"id":59}'
728
+ recorded_at: Sat, 07 Nov 2020 20:42:05 GMT
729
+ - request:
730
+ method: post
731
+ uri: https://api.steemitdev.com/
732
+ body:
733
+ encoding: UTF-8
734
+ string: '{"jsonrpc":"2.0","id":37,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
735
+ headers:
736
+ Content-Type:
737
+ - application/json; charset=utf-8
738
+ User-Agent:
739
+ - steem-ruby/0.9.5
740
+ Accept-Encoding:
741
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
742
+ Accept:
743
+ - "*/*"
744
+ Host:
745
+ - api.steemitdev.com
746
+ Content-Length:
747
+ - '95'
748
+ response:
749
+ status:
750
+ code: 200
751
+ message: OK
752
+ headers:
753
+ Date:
754
+ - Sat, 07 Nov 2020 20:47:07 GMT
755
+ Content-Type:
756
+ - application/json
757
+ Content-Length:
758
+ - '180'
759
+ Connection:
760
+ - keep-alive
761
+ Server:
762
+ - nginx
763
+ X-Jussi-Request-Id:
764
+ - '000235472682748143'
765
+ X-Amzn-Trace-Id:
766
+ - Root=1-5fa707c9-6ee7d6db4eb263eb5b9830ac
767
+ Access-Control-Allow-Origin:
768
+ - "*"
769
+ Access-Control-Allow-Methods:
770
+ - GET, POST, OPTIONS
771
+ Access-Control-Allow-Headers:
772
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
773
+ Strict-Transport-Security:
774
+ - max-age=31557600; includeSubDomains; preload
775
+ Content-Security-Policy:
776
+ - upgrade-insecure-requests
777
+ body:
778
+ encoding: UTF-8
779
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":37}'
780
+ recorded_at: Sat, 07 Nov 2020 20:47:07 GMT
781
+ - request:
782
+ method: post
783
+ uri: https://api.steemitdev.com/
784
+ body:
785
+ encoding: UTF-8
786
+ string: '{"jsonrpc":"2.0","id":38,"method":"market_history_api.get_volume","params":{}}'
787
+ headers:
788
+ Content-Type:
789
+ - application/json; charset=utf-8
790
+ User-Agent:
791
+ - steem-ruby/0.9.5
792
+ Accept-Encoding:
793
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
794
+ Accept:
795
+ - "*/*"
796
+ Host:
797
+ - api.steemitdev.com
798
+ Content-Length:
799
+ - '110'
800
+ response:
801
+ status:
802
+ code: 200
803
+ message: OK
804
+ headers:
805
+ Date:
806
+ - Sat, 07 Nov 2020 20:47:11 GMT
807
+ Content-Type:
808
+ - application/json
809
+ Content-Length:
810
+ - '175'
811
+ Connection:
812
+ - keep-alive
813
+ Server:
814
+ - nginx
815
+ X-Jussi-Request-Id:
816
+ - '000232204130369931'
817
+ X-Amzn-Trace-Id:
818
+ - Root=1-5fa707cb-32637fda7e7ab8de33825686
819
+ Access-Control-Allow-Origin:
820
+ - "*"
821
+ Access-Control-Allow-Methods:
822
+ - GET, POST, OPTIONS
823
+ Access-Control-Allow-Headers:
824
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
825
+ Strict-Transport-Security:
826
+ - max-age=31557600; includeSubDomains; preload
827
+ Content-Security-Policy:
828
+ - upgrade-insecure-requests
829
+ body:
830
+ encoding: UTF-8
831
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"19164611","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2827788","precision":3,"nai":"@@000000013"}},"id":38}'
832
+ recorded_at: Sat, 07 Nov 2020 20:47:11 GMT
833
+ - request:
834
+ method: post
835
+ uri: https://api.steemitdev.com/
836
+ body:
837
+ encoding: UTF-8
838
+ string: '{"jsonrpc":"2.0","id":30,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
839
+ headers:
840
+ Content-Type:
841
+ - application/json; charset=utf-8
842
+ User-Agent:
843
+ - steem-ruby/0.9.5
844
+ Accept-Encoding:
845
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
846
+ Accept:
847
+ - "*/*"
848
+ Host:
849
+ - api.steemitdev.com
850
+ Content-Length:
851
+ - '86'
852
+ response:
853
+ status:
854
+ code: 200
855
+ message: OK
856
+ headers:
857
+ Date:
858
+ - Sat, 07 Nov 2020 20:53:13 GMT
859
+ Content-Type:
860
+ - application/json
861
+ Content-Length:
862
+ - '180'
863
+ Connection:
864
+ - keep-alive
865
+ Server:
866
+ - nginx
867
+ X-Jussi-Request-Id:
868
+ - '000495657750731702'
869
+ X-Amzn-Trace-Id:
870
+ - Root=1-5fa70937-6a0a32f407d9c4357ff04e79
871
+ Access-Control-Allow-Origin:
872
+ - "*"
873
+ Access-Control-Allow-Methods:
874
+ - GET, POST, OPTIONS
875
+ Access-Control-Allow-Headers:
876
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
877
+ Strict-Transport-Security:
878
+ - max-age=31557600; includeSubDomains; preload
879
+ Content-Security-Policy:
880
+ - upgrade-insecure-requests
881
+ body:
882
+ encoding: UTF-8
883
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":30}'
884
+ recorded_at: Sat, 07 Nov 2020 20:53:13 GMT
885
+ - request:
886
+ method: post
887
+ uri: https://api.steemitdev.com/
888
+ body:
889
+ encoding: UTF-8
890
+ string: '{"jsonrpc":"2.0","id":31,"method":"market_history_api.get_volume","params":{}}'
891
+ headers:
892
+ Content-Type:
893
+ - application/json; charset=utf-8
894
+ User-Agent:
895
+ - steem-ruby/0.9.5
896
+ Accept-Encoding:
897
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
898
+ Accept:
899
+ - "*/*"
900
+ Host:
901
+ - api.steemitdev.com
902
+ Content-Length:
903
+ - '110'
904
+ response:
905
+ status:
906
+ code: 200
907
+ message: OK
908
+ headers:
909
+ Date:
910
+ - Sat, 07 Nov 2020 20:53:17 GMT
911
+ Content-Type:
912
+ - application/json
913
+ Content-Length:
914
+ - '175'
915
+ Connection:
916
+ - keep-alive
917
+ Server:
918
+ - nginx
919
+ X-Jussi-Request-Id:
920
+ - '000416229695438656'
921
+ X-Amzn-Trace-Id:
922
+ - Root=1-5fa70939-4521388334d47407613cce6b
923
+ Access-Control-Allow-Origin:
924
+ - "*"
925
+ Access-Control-Allow-Methods:
926
+ - GET, POST, OPTIONS
927
+ Access-Control-Allow-Headers:
928
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
929
+ Strict-Transport-Security:
930
+ - max-age=31557600; includeSubDomains; preload
931
+ Content-Security-Policy:
932
+ - upgrade-insecure-requests
933
+ body:
934
+ encoding: UTF-8
935
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"20214570","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2973112","precision":3,"nai":"@@000000013"}},"id":31}'
936
+ recorded_at: Sat, 07 Nov 2020 20:53:17 GMT
937
+ - request:
938
+ method: post
939
+ uri: https://api.steemitdev.com/
940
+ body:
941
+ encoding: UTF-8
942
+ string: '{"jsonrpc":"2.0","id":26,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
943
+ headers:
944
+ Content-Type:
945
+ - application/json; charset=utf-8
946
+ User-Agent:
947
+ - steem-ruby/0.9.5
948
+ Accept-Encoding:
949
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
950
+ Accept:
951
+ - "*/*"
952
+ Host:
953
+ - api.steemitdev.com
954
+ Content-Length:
955
+ - '95'
956
+ response:
957
+ status:
958
+ code: 200
959
+ message: OK
960
+ headers:
961
+ Date:
962
+ - Sat, 07 Nov 2020 21:01:14 GMT
963
+ Content-Type:
964
+ - application/json
965
+ Content-Length:
966
+ - '180'
967
+ Connection:
968
+ - keep-alive
969
+ Server:
970
+ - nginx
971
+ X-Jussi-Request-Id:
972
+ - '000339371166104082'
973
+ X-Amzn-Trace-Id:
974
+ - Root=1-5fa70b18-230d63897ef5a6f562894cb7
975
+ Access-Control-Allow-Origin:
976
+ - "*"
977
+ Access-Control-Allow-Methods:
978
+ - GET, POST, OPTIONS
979
+ Access-Control-Allow-Headers:
980
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
981
+ Strict-Transport-Security:
982
+ - max-age=31557600; includeSubDomains; preload
983
+ Content-Security-Policy:
984
+ - upgrade-insecure-requests
985
+ body:
986
+ encoding: UTF-8
987
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":26}'
988
+ recorded_at: Sat, 07 Nov 2020 21:01:14 GMT
989
+ - request:
990
+ method: post
991
+ uri: https://api.steemitdev.com/
992
+ body:
993
+ encoding: UTF-8
994
+ string: '{"jsonrpc":"2.0","id":27,"method":"market_history_api.get_volume","params":{}}'
995
+ headers:
996
+ Content-Type:
997
+ - application/json; charset=utf-8
998
+ User-Agent:
999
+ - steem-ruby/0.9.5
1000
+ Accept-Encoding:
1001
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1002
+ Accept:
1003
+ - "*/*"
1004
+ Host:
1005
+ - api.steemitdev.com
1006
+ Content-Length:
1007
+ - '110'
1008
+ response:
1009
+ status:
1010
+ code: 200
1011
+ message: OK
1012
+ headers:
1013
+ Date:
1014
+ - Sat, 07 Nov 2020 21:01:14 GMT
1015
+ Content-Type:
1016
+ - application/json
1017
+ Content-Length:
1018
+ - '175'
1019
+ Connection:
1020
+ - keep-alive
1021
+ Server:
1022
+ - nginx
1023
+ X-Jussi-Request-Id:
1024
+ - '001113484279858346'
1025
+ X-Amzn-Trace-Id:
1026
+ - Root=1-5fa70b1a-03ab73c777ea5d7842c675bb
1027
+ Access-Control-Allow-Origin:
1028
+ - "*"
1029
+ Access-Control-Allow-Methods:
1030
+ - GET, POST, OPTIONS
1031
+ Access-Control-Allow-Headers:
1032
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1033
+ Strict-Transport-Security:
1034
+ - max-age=31557600; includeSubDomains; preload
1035
+ Content-Security-Policy:
1036
+ - upgrade-insecure-requests
1037
+ body:
1038
+ encoding: UTF-8
1039
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"20218150","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"2973448","precision":3,"nai":"@@000000013"}},"id":27}'
1040
+ recorded_at: Sat, 07 Nov 2020 21:01:14 GMT
1041
+ - request:
1042
+ method: post
1043
+ uri: https://api.steemitdev.com/
1044
+ body:
1045
+ encoding: UTF-8
1046
+ string: '{"jsonrpc":"2.0","id":104,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
1047
+ headers:
1048
+ Content-Type:
1049
+ - application/json; charset=utf-8
1050
+ User-Agent:
1051
+ - steem-ruby/0.9.5
1052
+ Accept-Encoding:
1053
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1054
+ Accept:
1055
+ - "*/*"
1056
+ Host:
1057
+ - api.steemit.com
1058
+ Content-Length:
1059
+ - '79'
1060
+ response:
1061
+ status:
1062
+ code: 200
1063
+ message: OK
1064
+ headers:
1065
+ Date:
1066
+ - Sat, 07 Nov 2020 21:08:44 GMT
1067
+ Content-Type:
1068
+ - application/json
1069
+ Content-Length:
1070
+ - '181'
1071
+ Connection:
1072
+ - keep-alive
1073
+ Server:
1074
+ - nginx
1075
+ X-Jussi-Request-Id:
1076
+ - '000490391992620400'
1077
+ X-Amzn-Trace-Id:
1078
+ - Root=1-5fa70cdc-1b35274674c6e83a7acfd893
1079
+ Access-Control-Allow-Origin:
1080
+ - "*"
1081
+ Access-Control-Allow-Methods:
1082
+ - GET, POST, OPTIONS
1083
+ Access-Control-Allow-Headers:
1084
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1085
+ Strict-Transport-Security:
1086
+ - max-age=31557600; includeSubDomains; preload
1087
+ Content-Security-Policy:
1088
+ - upgrade-insecure-requests
1089
+ body:
1090
+ encoding: UTF-8
1091
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":104}'
1092
+ recorded_at: Sat, 07 Nov 2020 21:08:44 GMT
1093
+ - request:
1094
+ method: post
1095
+ uri: https://api.steemitdev.com/
1096
+ body:
1097
+ encoding: UTF-8
1098
+ string: '{"jsonrpc":"2.0","id":105,"method":"market_history_api.get_volume","params":{}}'
1099
+ headers:
1100
+ Content-Type:
1101
+ - application/json; charset=utf-8
1102
+ User-Agent:
1103
+ - steem-ruby/0.9.5
1104
+ Accept-Encoding:
1105
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1106
+ Accept:
1107
+ - "*/*"
1108
+ Host:
1109
+ - api.steemit.com
1110
+ Content-Length:
1111
+ - '111'
1112
+ response:
1113
+ status:
1114
+ code: 200
1115
+ message: OK
1116
+ headers:
1117
+ Date:
1118
+ - Sat, 07 Nov 2020 21:08:44 GMT
1119
+ Content-Type:
1120
+ - application/json
1121
+ Content-Length:
1122
+ - '176'
1123
+ Connection:
1124
+ - keep-alive
1125
+ Server:
1126
+ - nginx
1127
+ X-Jussi-Request-Id:
1128
+ - '000792754784055727'
1129
+ X-Amzn-Trace-Id:
1130
+ - Root=1-5fa70cdc-3bb126fe2fce62f610e87389
1131
+ Access-Control-Allow-Origin:
1132
+ - "*"
1133
+ Access-Control-Allow-Methods:
1134
+ - GET, POST, OPTIONS
1135
+ Access-Control-Allow-Headers:
1136
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1137
+ Strict-Transport-Security:
1138
+ - max-age=31557600; includeSubDomains; preload
1139
+ Content-Security-Policy:
1140
+ - upgrade-insecure-requests
1141
+ body:
1142
+ encoding: UTF-8
1143
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"21385178","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"3137735","precision":3,"nai":"@@000000013"}},"id":105}'
1144
+ recorded_at: Sat, 07 Nov 2020 21:08:44 GMT
1145
+ - request:
1146
+ method: post
1147
+ uri: https://api.steemitdev.com/
1148
+ body:
1149
+ encoding: UTF-8
1150
+ string: '{"jsonrpc":"2.0","id":43,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
1151
+ headers:
1152
+ Content-Type:
1153
+ - application/json; charset=utf-8
1154
+ User-Agent:
1155
+ - steem-ruby/0.9.5
1156
+ Accept-Encoding:
1157
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1158
+ Accept:
1159
+ - "*/*"
1160
+ Host:
1161
+ - api.steemitdev.com
1162
+ Content-Length:
1163
+ - '78'
1164
+ response:
1165
+ status:
1166
+ code: 200
1167
+ message: OK
1168
+ headers:
1169
+ Date:
1170
+ - Sat, 07 Nov 2020 21:10:37 GMT
1171
+ Content-Type:
1172
+ - application/json
1173
+ Content-Length:
1174
+ - '180'
1175
+ Connection:
1176
+ - keep-alive
1177
+ Server:
1178
+ - nginx
1179
+ X-Jussi-Request-Id:
1180
+ - '000467930764268306'
1181
+ X-Amzn-Trace-Id:
1182
+ - Root=1-5fa70d4d-6bc0bc2d19bb09f23b0c1032
1183
+ Access-Control-Allow-Origin:
1184
+ - "*"
1185
+ Access-Control-Allow-Methods:
1186
+ - GET, POST, OPTIONS
1187
+ Access-Control-Allow-Headers:
1188
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1189
+ Strict-Transport-Security:
1190
+ - max-age=31557600; includeSubDomains; preload
1191
+ Content-Security-Policy:
1192
+ - upgrade-insecure-requests
1193
+ body:
1194
+ encoding: UTF-8
1195
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":43}'
1196
+ recorded_at: Sat, 07 Nov 2020 21:10:37 GMT
1197
+ - request:
1198
+ method: post
1199
+ uri: https://api.steemitdev.com/
1200
+ body:
1201
+ encoding: UTF-8
1202
+ string: '{"jsonrpc":"2.0","id":44,"method":"market_history_api.get_volume","params":{}}'
1203
+ headers:
1204
+ Content-Type:
1205
+ - application/json; charset=utf-8
1206
+ User-Agent:
1207
+ - steem-ruby/0.9.5
1208
+ Accept-Encoding:
1209
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1210
+ Accept:
1211
+ - "*/*"
1212
+ Host:
1213
+ - api.steemitdev.com
1214
+ Content-Length:
1215
+ - '110'
1216
+ response:
1217
+ status:
1218
+ code: 200
1219
+ message: OK
1220
+ headers:
1221
+ Date:
1222
+ - Sat, 07 Nov 2020 21:10:38 GMT
1223
+ Content-Type:
1224
+ - application/json
1225
+ Content-Length:
1226
+ - '175'
1227
+ Connection:
1228
+ - keep-alive
1229
+ Server:
1230
+ - nginx
1231
+ X-Jussi-Request-Id:
1232
+ - '000196466739645798'
1233
+ X-Amzn-Trace-Id:
1234
+ - Root=1-5fa70d4e-1077a8394b87c3230fbd5fe4
1235
+ Access-Control-Allow-Origin:
1236
+ - "*"
1237
+ Access-Control-Allow-Methods:
1238
+ - GET, POST, OPTIONS
1239
+ Access-Control-Allow-Headers:
1240
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1241
+ Strict-Transport-Security:
1242
+ - max-age=31557600; includeSubDomains; preload
1243
+ Content-Security-Policy:
1244
+ - upgrade-insecure-requests
1245
+ body:
1246
+ encoding: UTF-8
1247
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"21385198","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"3137738","precision":3,"nai":"@@000000013"}},"id":44}'
1248
+ recorded_at: Sat, 07 Nov 2020 21:10:38 GMT
1249
+ - request:
1250
+ method: post
1251
+ uri: https://api.steemitdev.com/
1252
+ body:
1253
+ encoding: UTF-8
1254
+ string: '{"jsonrpc":"2.0","id":64,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
1255
+ headers:
1256
+ Content-Type:
1257
+ - application/json; charset=utf-8
1258
+ User-Agent:
1259
+ - steem-ruby/0.9.5
1260
+ Accept-Encoding:
1261
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1262
+ Accept:
1263
+ - "*/*"
1264
+ Host:
1265
+ - api.steemit.com
1266
+ Content-Length:
1267
+ - '86'
1268
+ response:
1269
+ status:
1270
+ code: 200
1271
+ message: OK
1272
+ headers:
1273
+ Date:
1274
+ - Sun, 08 Nov 2020 05:40:00 GMT
1275
+ Content-Type:
1276
+ - application/json
1277
+ Content-Length:
1278
+ - '180'
1279
+ Connection:
1280
+ - keep-alive
1281
+ Server:
1282
+ - nginx
1283
+ X-Jussi-Request-Id:
1284
+ - '000087356534289482'
1285
+ X-Amzn-Trace-Id:
1286
+ - Root=1-5fa784b0-3164e1943188745b63ede80f
1287
+ Access-Control-Allow-Origin:
1288
+ - "*"
1289
+ Access-Control-Allow-Methods:
1290
+ - GET, POST, OPTIONS
1291
+ Access-Control-Allow-Headers:
1292
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1293
+ Strict-Transport-Security:
1294
+ - max-age=31557600; includeSubDomains; preload
1295
+ Content-Security-Policy:
1296
+ - upgrade-insecure-requests
1297
+ body:
1298
+ encoding: UTF-8
1299
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":64}'
1300
+ recorded_at: Sun, 08 Nov 2020 05:40:00 GMT
1301
+ - request:
1302
+ method: post
1303
+ uri: https://api.steemitdev.com/
1304
+ body:
1305
+ encoding: UTF-8
1306
+ string: '{"jsonrpc":"2.0","id":65,"method":"market_history_api.get_volume","params":{}}'
1307
+ headers:
1308
+ Content-Type:
1309
+ - application/json; charset=utf-8
1310
+ User-Agent:
1311
+ - steem-ruby/0.9.5
1312
+ Accept-Encoding:
1313
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1314
+ Accept:
1315
+ - "*/*"
1316
+ Host:
1317
+ - api.steemit.com
1318
+ Content-Length:
1319
+ - '110'
1320
+ response:
1321
+ status:
1322
+ code: 200
1323
+ message: OK
1324
+ headers:
1325
+ Date:
1326
+ - Sun, 08 Nov 2020 05:40:02 GMT
1327
+ Content-Type:
1328
+ - application/json
1329
+ Content-Length:
1330
+ - '175'
1331
+ Connection:
1332
+ - keep-alive
1333
+ Server:
1334
+ - nginx
1335
+ X-Jussi-Request-Id:
1336
+ - '000799707590686328'
1337
+ X-Amzn-Trace-Id:
1338
+ - Root=1-5fa784b0-374b908834e71de37fa28799
1339
+ Access-Control-Allow-Origin:
1340
+ - "*"
1341
+ Access-Control-Allow-Methods:
1342
+ - GET, POST, OPTIONS
1343
+ Access-Control-Allow-Headers:
1344
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1345
+ Strict-Transport-Security:
1346
+ - max-age=31557600; includeSubDomains; preload
1347
+ Content-Security-Policy:
1348
+ - upgrade-insecure-requests
1349
+ body:
1350
+ encoding: UTF-8
1351
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"23976997","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"3487598","precision":3,"nai":"@@000000013"}},"id":65}'
1352
+ recorded_at: Sun, 08 Nov 2020 05:40:02 GMT
1353
+ - request:
1354
+ method: post
1355
+ uri: https://api.steemitdev.com/
1356
+ body:
1357
+ encoding: UTF-8
1358
+ string: '{"jsonrpc":"2.0","id":36,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
1359
+ headers:
1360
+ Content-Type:
1361
+ - application/json; charset=utf-8
1362
+ User-Agent:
1363
+ - steem-ruby/0.9.5
1364
+ Accept-Encoding:
1365
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1366
+ Accept:
1367
+ - "*/*"
1368
+ Host:
1369
+ - api.steemitdev.com
1370
+ Content-Length:
1371
+ - '96'
1372
+ response:
1373
+ status:
1374
+ code: 200
1375
+ message: OK
1376
+ headers:
1377
+ Date:
1378
+ - Sun, 08 Nov 2020 05:47:07 GMT
1379
+ Content-Type:
1380
+ - application/json
1381
+ Content-Length:
1382
+ - '180'
1383
+ Connection:
1384
+ - keep-alive
1385
+ Server:
1386
+ - nginx
1387
+ X-Jussi-Request-Id:
1388
+ - '000141209752801639'
1389
+ X-Amzn-Trace-Id:
1390
+ - Root=1-5fa78659-09fa782220b082de45bc4639
1391
+ Access-Control-Allow-Origin:
1392
+ - "*"
1393
+ Access-Control-Allow-Methods:
1394
+ - GET, POST, OPTIONS
1395
+ Access-Control-Allow-Headers:
1396
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1397
+ Strict-Transport-Security:
1398
+ - max-age=31557600; includeSubDomains; preload
1399
+ Content-Security-Policy:
1400
+ - upgrade-insecure-requests
1401
+ body:
1402
+ encoding: UTF-8
1403
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":36}'
1404
+ recorded_at: Sun, 08 Nov 2020 05:47:07 GMT
1405
+ - request:
1406
+ method: post
1407
+ uri: https://api.steemitdev.com/
1408
+ body:
1409
+ encoding: UTF-8
1410
+ string: '{"jsonrpc":"2.0","id":37,"method":"market_history_api.get_volume","params":{}}'
1411
+ headers:
1412
+ Content-Type:
1413
+ - application/json; charset=utf-8
1414
+ User-Agent:
1415
+ - steem-ruby/0.9.5
1416
+ Accept-Encoding:
1417
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1418
+ Accept:
1419
+ - "*/*"
1420
+ Host:
1421
+ - api.steemitdev.com
1422
+ Content-Length:
1423
+ - '110'
1424
+ response:
1425
+ status:
1426
+ code: 200
1427
+ message: OK
1428
+ headers:
1429
+ Date:
1430
+ - Sun, 08 Nov 2020 05:47:07 GMT
1431
+ Content-Type:
1432
+ - application/json
1433
+ Content-Length:
1434
+ - '175'
1435
+ Connection:
1436
+ - keep-alive
1437
+ Server:
1438
+ - nginx
1439
+ X-Jussi-Request-Id:
1440
+ - '000263613167771499'
1441
+ X-Amzn-Trace-Id:
1442
+ - Root=1-5fa7865b-1905278c217a63085f3ac743
1443
+ Access-Control-Allow-Origin:
1444
+ - "*"
1445
+ Access-Control-Allow-Methods:
1446
+ - GET, POST, OPTIONS
1447
+ Access-Control-Allow-Headers:
1448
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1449
+ Strict-Transport-Security:
1450
+ - max-age=31557600; includeSubDomains; preload
1451
+ Content-Security-Policy:
1452
+ - upgrade-insecure-requests
1453
+ body:
1454
+ encoding: UTF-8
1455
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"23976997","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"3487598","precision":3,"nai":"@@000000013"}},"id":37}'
1456
+ recorded_at: Sun, 08 Nov 2020 05:47:07 GMT
1457
+ - request:
1458
+ method: post
1459
+ uri: https://api.steemitdev.com/
1460
+ body:
1461
+ encoding: UTF-8
1462
+ string: '{"jsonrpc":"2.0","id":6,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_volume"}}'
1463
+ headers:
1464
+ Content-Type:
1465
+ - application/json; charset=utf-8
1466
+ User-Agent:
1467
+ - steem-ruby/0.9.5
1468
+ Accept-Encoding:
1469
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1470
+ Accept:
1471
+ - "*/*"
1472
+ Host:
1473
+ - api.steemitdev.com
1474
+ Content-Length:
1475
+ - '94'
1476
+ response:
1477
+ status:
1478
+ code: 200
1479
+ message: OK
1480
+ headers:
1481
+ Date:
1482
+ - Sun, 08 Nov 2020 06:00:32 GMT
1483
+ Content-Type:
1484
+ - application/json
1485
+ Content-Length:
1486
+ - '179'
1487
+ Connection:
1488
+ - keep-alive
1489
+ Server:
1490
+ - nginx
1491
+ X-Jussi-Request-Id:
1492
+ - '000537207511898548'
1493
+ X-Amzn-Trace-Id:
1494
+ - Root=1-5fa78980-2deb2f6841f0fef82b033288
1495
+ Access-Control-Allow-Origin:
1496
+ - "*"
1497
+ Access-Control-Allow-Methods:
1498
+ - GET, POST, OPTIONS
1499
+ Access-Control-Allow-Headers:
1500
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1501
+ Strict-Transport-Security:
1502
+ - max-age=31557600; includeSubDomains; preload
1503
+ Content-Security-Policy:
1504
+ - upgrade-insecure-requests
1505
+ body:
1506
+ encoding: UTF-8
1507
+ string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":6}'
1508
+ recorded_at: Sun, 08 Nov 2020 06:00:32 GMT
1509
+ - request:
1510
+ method: post
1511
+ uri: https://api.steemitdev.com/
1512
+ body:
1513
+ encoding: UTF-8
1514
+ string: '{"jsonrpc":"2.0","id":7,"method":"market_history_api.get_volume","params":{}}'
1515
+ headers:
1516
+ Content-Type:
1517
+ - application/json; charset=utf-8
1518
+ User-Agent:
1519
+ - steem-ruby/0.9.5
1520
+ Accept-Encoding:
1521
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1522
+ Accept:
1523
+ - "*/*"
1524
+ Host:
1525
+ - api.steemitdev.com
1526
+ Content-Length:
1527
+ - '109'
1528
+ response:
1529
+ status:
1530
+ code: 200
1531
+ message: OK
1532
+ headers:
1533
+ Date:
1534
+ - Sun, 08 Nov 2020 06:00:32 GMT
1535
+ Content-Type:
1536
+ - application/json
1537
+ Content-Length:
1538
+ - '174'
1539
+ Connection:
1540
+ - keep-alive
1541
+ Server:
1542
+ - nginx
1543
+ X-Jussi-Request-Id:
1544
+ - '000473508514348265'
1545
+ X-Amzn-Trace-Id:
1546
+ - Root=1-5fa78980-2445d1f12b8f9ce35fb31ffe
1547
+ Access-Control-Allow-Origin:
1548
+ - "*"
1549
+ Access-Control-Allow-Methods:
1550
+ - GET, POST, OPTIONS
1551
+ Access-Control-Allow-Headers:
1552
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1553
+ Strict-Transport-Security:
1554
+ - max-age=31557600; includeSubDomains; preload
1555
+ Content-Security-Policy:
1556
+ - upgrade-insecure-requests
1557
+ body:
1558
+ encoding: UTF-8
1559
+ string: '{"jsonrpc":"2.0","result":{"steem_volume":{"amount":"23977024","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"3487602","precision":3,"nai":"@@000000013"}},"id":7}'
1560
+ recorded_at: Sun, 08 Nov 2020 06:00:32 GMT
1561
+ recorded_with: VCR 6.0.0