radiator 0.4.5 → 0.4.8.pre.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -0
- data/README.md +11 -11
- data/Rakefile +50 -20
- data/lib/radiator.rb +3 -1
- data/lib/radiator/api.rb +105 -14
- data/lib/radiator/bridge.rb +34 -0
- data/lib/radiator/chain_config.rb +9 -2
- data/lib/radiator/database_api.rb +1 -1
- data/lib/radiator/follow_api.rb +1 -1
- data/lib/radiator/market_history_api.rb +1 -1
- data/lib/radiator/operation.rb +3 -2
- data/lib/radiator/operation_types.rb +43 -27
- data/lib/radiator/ssc/base_steem_smart_contract_rpc.rb +52 -10
- data/lib/radiator/ssc/blockchain.rb +10 -0
- data/lib/radiator/ssc/contracts.rb +17 -0
- data/lib/radiator/stream.rb +15 -6
- data/lib/radiator/transaction.rb +41 -1
- data/lib/radiator/type/amount.rb +26 -50
- data/lib/radiator/type/beneficiaries.rb +8 -1
- data/lib/radiator/type/price.rb +2 -2
- data/lib/radiator/version.rb +1 -1
- data/radiator.gemspec +15 -13
- data/test/fixtures/empty.json +1 -0
- data/test/fixtures/error.json +29 -0
- data/test/fixtures/follow_api_get_followers.json +1 -0
- data/test/fixtures/get_account.json +165 -0
- data/test/fixtures/get_account_count.json +1 -0
- data/test/fixtures/get_account_references.json +1 -0
- data/test/fixtures/get_block.json +193 -0
- data/test/fixtures/get_dynamic_global_properties.json +32 -0
- data/test/fixtures/get_feed_history.json +684 -0
- data/test/fixtures/get_hardfork_version.json +1 -0
- data/test/fixtures/get_key_references.json +14 -0
- data/test/fixtures/get_stats_for_time.json +57 -0
- data/test/fixtures/get_vesting_delegation.json +936 -0
- data/test/fixtures/golos_get_dynamic_global_properties.json +32 -0
- data/test/fixtures/market_history_api_get_market_history_buckets.json +1 -0
- data/test/fixtures/market_history_api_get_order_book.json +109 -0
- data/test/fixtures/market_history_api_get_recent_trades.json +55 -0
- data/test/fixtures/market_history_api_get_ticker.json +11 -0
- data/test/fixtures/market_history_api_get_volume.json +1 -0
- data/test/fixtures/null.json +1 -0
- data/test/fixtures/vcr_cassettes/account_by_key_api_all_methods.yml +631 -0
- data/test/fixtures/vcr_cassettes/account_by_key_api_jsonrpc.yml +52 -0
- data/test/fixtures/vcr_cassettes/all_methods.yml +18155 -0
- data/test/fixtures/vcr_cassettes/api_all_methods.yml +13419 -0
- data/test/fixtures/vcr_cassettes/base_per_debt.yml +5408 -0
- data/test/fixtures/vcr_cassettes/base_per_mvest.yml +4351 -0
- data/test/fixtures/vcr_cassettes/block_time.yml +3687 -0
- data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +1186 -0
- data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +13462 -0
- data/test/fixtures/vcr_cassettes/condenser_api_jsonrpc.yml +51 -0
- data/test/fixtures/vcr_cassettes/expiration_initialize.yml +3997 -0
- data/test/fixtures/vcr_cassettes/find_account.yml +4004 -0
- data/test/fixtures/vcr_cassettes/find_block.yml +3946 -0
- data/test/fixtures/vcr_cassettes/find_comment.yml +12457 -0
- data/test/fixtures/vcr_cassettes/follow_api_jsonrpc.yml +52 -0
- data/test/fixtures/vcr_cassettes/get_account_count.yml +627 -0
- data/test/fixtures/vcr_cassettes/get_account_references.yml +663 -0
- data/test/fixtures/vcr_cassettes/get_accounts.yml +735 -0
- data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +663 -0
- data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +721 -0
- data/test/fixtures/vcr_cassettes/get_feed_history.yml +1201 -0
- data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +629 -0
- data/test/fixtures/vcr_cassettes/get_key_references.yml +1091 -0
- data/test/fixtures/vcr_cassettes/get_market_history.yml +1147 -0
- data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +1147 -0
- data/test/fixtures/vcr_cassettes/get_order_book.yml +1195 -0
- data/test/fixtures/vcr_cassettes/get_recent_trades.yml +1147 -0
- data/test/fixtures/vcr_cassettes/get_ticker.yml +1151 -0
- data/test/fixtures/vcr_cassettes/get_trade_history.yml +1153 -0
- data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +575 -0
- data/test/fixtures/vcr_cassettes/get_volume.yml +1155 -0
- data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +627 -0
- data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +575 -0
- data/test/fixtures/vcr_cassettes/market_history_api_all_methods.yml +4373 -0
- data/test/fixtures/vcr_cassettes/network_broadcast_api_all_methods.yml +1288 -0
- data/test/fixtures/vcr_cassettes/properties.yml +3992 -0
- data/test/fixtures/vcr_cassettes/recover_transaction.yml +1211 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info.yml +92 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info_invalid.yml +90 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_latest_block_info.yml +91 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_transaction_info.yml +92 -0
- data/test/fixtures/vcr_cassettes/ssc_contracts_contract.yml +366 -0
- data/test/fixtures/vcr_cassettes/ssc_contracts_find.yml +91 -0
- data/test/fixtures/vcr_cassettes/ssc_contracts_find_one.yml +89 -0
- data/test/fixtures/vcr_cassettes/stream_jsonrpc.yml +9175 -0
- data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +3743 -0
- data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +151 -0
- data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +3869 -0
- data/test/fixtures/vcr_cassettes/valid_chains.yml +3427 -0
- data/test/radiator/account_by_key_api_test.rb +46 -0
- data/test/radiator/api_test.rb +135 -0
- data/test/radiator/chain_stats_api_test.rb +49 -0
- data/test/radiator/chain_test.rb +153 -0
- data/test/radiator/condenser_api_test.rb +48 -0
- data/test/radiator/follow_api_test.rb +48 -0
- data/test/radiator/market_history_api_test.rb +100 -0
- data/test/radiator/network_broadcast_api_test.rb +48 -0
- data/test/radiator/operation_test.rb +117 -0
- data/test/radiator/ssc/blockchain_test.rb +58 -0
- data/test/radiator/ssc/contracts_test.rb +65 -0
- data/test/radiator/stream_test.rb +48 -0
- data/test/radiator/tag_api_test.rb +40 -0
- data/test/radiator/transaction_test.rb +755 -0
- data/test/test_helper.rb +66 -0
- metadata +190 -80
- data/.codeclimate.yml +0 -19
- data/.gitignore +0 -52
- data/.travis.yml +0 -23
- data/gource.sh +0 -8
- data/images/Anthony Martin.png +0 -0
- data/images/Marvin Hofmann.jpg +0 -0
- data/images/Marvin Hofmann.png +0 -0
- data/lib/steem.rb +0 -17
@@ -0,0 +1,1151 @@
|
|
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":101,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
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
|
+
- '92'
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Date:
|
28
|
+
- Sat, 17 Oct 2020 04:08:08 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Content-Length:
|
32
|
+
- '322'
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
Server:
|
36
|
+
- nginx
|
37
|
+
X-Jussi-Request-Id:
|
38
|
+
- '000861065119730741'
|
39
|
+
X-Amzn-Trace-Id:
|
40
|
+
- Root=1-5f8a6e28-3290238e7d8bde1b09d2698b
|
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":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":101}'
|
54
|
+
recorded_at: Sat, 17 Oct 2020 04:08:08 GMT
|
55
|
+
- request:
|
56
|
+
method: post
|
57
|
+
uri: https://api.steemit.com/
|
58
|
+
body:
|
59
|
+
encoding: UTF-8
|
60
|
+
string: '{"jsonrpc":"2.0","id":102,"method":"market_history_api.get_ticker","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
|
+
- '111'
|
74
|
+
response:
|
75
|
+
status:
|
76
|
+
code: 200
|
77
|
+
message: OK
|
78
|
+
headers:
|
79
|
+
Date:
|
80
|
+
- Sat, 17 Oct 2020 04:08:08 GMT
|
81
|
+
Content-Type:
|
82
|
+
- application/json
|
83
|
+
Content-Length:
|
84
|
+
- '317'
|
85
|
+
Connection:
|
86
|
+
- keep-alive
|
87
|
+
Server:
|
88
|
+
- nginx
|
89
|
+
X-Jussi-Request-Id:
|
90
|
+
- '000405956354128298'
|
91
|
+
X-Amzn-Trace-Id:
|
92
|
+
- Root=1-5f8a6e28-327c5be91d73725443963fdf
|
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":{"latest":"0.16666666666666666","lowest_ask":"0.16184249589889504","highest_bid":"0.16101694915254236","percent_change":"0.00000000000000000","steem_volume":{"amount":"42466862","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673680","precision":3,"nai":"@@000000013"}},"id":102}'
|
106
|
+
recorded_at: Sat, 17 Oct 2020 04:08:08 GMT
|
107
|
+
- request:
|
108
|
+
method: post
|
109
|
+
uri: https://api.steemit.com/
|
110
|
+
body:
|
111
|
+
encoding: UTF-8
|
112
|
+
string: '{"jsonrpc":"2.0","id":90,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
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
|
+
- '86'
|
126
|
+
response:
|
127
|
+
status:
|
128
|
+
code: 200
|
129
|
+
message: OK
|
130
|
+
headers:
|
131
|
+
Date:
|
132
|
+
- Sat, 17 Oct 2020 04:09:17 GMT
|
133
|
+
Content-Type:
|
134
|
+
- application/json
|
135
|
+
Content-Length:
|
136
|
+
- '321'
|
137
|
+
Connection:
|
138
|
+
- keep-alive
|
139
|
+
Server:
|
140
|
+
- nginx
|
141
|
+
X-Jussi-Request-Id:
|
142
|
+
- '001021611173700458'
|
143
|
+
X-Amzn-Trace-Id:
|
144
|
+
- Root=1-5f8a6e6d-4f22faad10fd0c70511046cf
|
145
|
+
Access-Control-Allow-Origin:
|
146
|
+
- "*"
|
147
|
+
Access-Control-Allow-Methods:
|
148
|
+
- GET, POST, OPTIONS
|
149
|
+
Access-Control-Allow-Headers:
|
150
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
151
|
+
Strict-Transport-Security:
|
152
|
+
- max-age=31557600; includeSubDomains; preload
|
153
|
+
Content-Security-Policy:
|
154
|
+
- upgrade-insecure-requests
|
155
|
+
body:
|
156
|
+
encoding: UTF-8
|
157
|
+
string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":90}'
|
158
|
+
recorded_at: Sat, 17 Oct 2020 04:09:17 GMT
|
159
|
+
- request:
|
160
|
+
method: post
|
161
|
+
uri: https://api.steemit.com/
|
162
|
+
body:
|
163
|
+
encoding: UTF-8
|
164
|
+
string: '{"jsonrpc":"2.0","id":91,"method":"market_history_api.get_ticker","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
|
+
- '110'
|
178
|
+
response:
|
179
|
+
status:
|
180
|
+
code: 200
|
181
|
+
message: OK
|
182
|
+
headers:
|
183
|
+
Date:
|
184
|
+
- Sat, 17 Oct 2020 04:09:17 GMT
|
185
|
+
Content-Type:
|
186
|
+
- application/json
|
187
|
+
Content-Length:
|
188
|
+
- '316'
|
189
|
+
Connection:
|
190
|
+
- keep-alive
|
191
|
+
Server:
|
192
|
+
- nginx
|
193
|
+
X-Jussi-Request-Id:
|
194
|
+
- '000263942843081852'
|
195
|
+
X-Amzn-Trace-Id:
|
196
|
+
- Root=1-5f8a6e6d-73597413209717a0178f0eed
|
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":{"latest":"0.16666666666666666","lowest_ask":"0.16099301999518920","highest_bid":"0.16087516087516088","percent_change":"0.00000000000000000","steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":91}'
|
210
|
+
recorded_at: Sat, 17 Oct 2020 04:09:17 GMT
|
211
|
+
- request:
|
212
|
+
method: post
|
213
|
+
uri: https://api.steemit.com/
|
214
|
+
body:
|
215
|
+
encoding: UTF-8
|
216
|
+
string: '{"jsonrpc":"2.0","id":38,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
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
|
+
- '85'
|
230
|
+
response:
|
231
|
+
status:
|
232
|
+
code: 200
|
233
|
+
message: OK
|
234
|
+
headers:
|
235
|
+
Date:
|
236
|
+
- Sat, 17 Oct 2020 04:13:26 GMT
|
237
|
+
Content-Type:
|
238
|
+
- application/json
|
239
|
+
Content-Length:
|
240
|
+
- '321'
|
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_ticker"}
|
247
|
+
X-Jussi-Request-Id:
|
248
|
+
- '000304990846362292'
|
249
|
+
X-Amzn-Trace-Id:
|
250
|
+
- Root=1-5f8a6f66-495a827c5928ecf659350d91
|
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":38,"jsonrpc":"2.0","result":{"args":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}}}'
|
264
|
+
recorded_at: Sat, 17 Oct 2020 04:13:26 GMT
|
265
|
+
- request:
|
266
|
+
method: post
|
267
|
+
uri: https://api.steemit.com/
|
268
|
+
body:
|
269
|
+
encoding: UTF-8
|
270
|
+
string: '{"jsonrpc":"2.0","id":39,"method":"market_history_api.get_ticker","params":{}}'
|
271
|
+
headers:
|
272
|
+
Content-Type:
|
273
|
+
- application/json; charset=utf-8
|
274
|
+
User-Agent:
|
275
|
+
- steem-ruby/0.9.4
|
276
|
+
Accept-Encoding:
|
277
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
278
|
+
Accept:
|
279
|
+
- "*/*"
|
280
|
+
Host:
|
281
|
+
- api.steemit.com
|
282
|
+
Content-Length:
|
283
|
+
- '110'
|
284
|
+
response:
|
285
|
+
status:
|
286
|
+
code: 200
|
287
|
+
message: OK
|
288
|
+
headers:
|
289
|
+
Date:
|
290
|
+
- Sat, 17 Oct 2020 04:13:26 GMT
|
291
|
+
Content-Type:
|
292
|
+
- application/json
|
293
|
+
Content-Length:
|
294
|
+
- '316'
|
295
|
+
Connection:
|
296
|
+
- keep-alive
|
297
|
+
Server:
|
298
|
+
- nginx
|
299
|
+
X-Jussi-Request-Id:
|
300
|
+
- '000784910205958648'
|
301
|
+
X-Amzn-Trace-Id:
|
302
|
+
- Root=1-5f8a6f66-33f542fc3d0b92f27cc9227e
|
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":{"latest":"0.16666666666666666","lowest_ask":"0.16099301999518920","highest_bid":"0.16087516087516088","percent_change":"0.00000000000000000","steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":39}'
|
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":61,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
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
|
+
- '94'
|
336
|
+
response:
|
337
|
+
status:
|
338
|
+
code: 200
|
339
|
+
message: OK
|
340
|
+
headers:
|
341
|
+
Date:
|
342
|
+
- Sat, 17 Oct 2020 04:14:23 GMT
|
343
|
+
Content-Type:
|
344
|
+
- application/json
|
345
|
+
Content-Length:
|
346
|
+
- '321'
|
347
|
+
Connection:
|
348
|
+
- keep-alive
|
349
|
+
Server:
|
350
|
+
- nginx
|
351
|
+
X-Jussi-Request-Id:
|
352
|
+
- '000869734406586658'
|
353
|
+
X-Amzn-Trace-Id:
|
354
|
+
- Root=1-5f8a6f9f-2ea670c571c924617d7dac33
|
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":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":61}'
|
368
|
+
recorded_at: Sat, 17 Oct 2020 04:14:23 GMT
|
369
|
+
- request:
|
370
|
+
method: post
|
371
|
+
uri: https://api.steemit.com/
|
372
|
+
body:
|
373
|
+
encoding: UTF-8
|
374
|
+
string: '{"jsonrpc":"2.0","id":62,"method":"market_history_api.get_ticker","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
|
+
- '110'
|
388
|
+
response:
|
389
|
+
status:
|
390
|
+
code: 200
|
391
|
+
message: OK
|
392
|
+
headers:
|
393
|
+
Date:
|
394
|
+
- Sat, 17 Oct 2020 04:14:23 GMT
|
395
|
+
Content-Type:
|
396
|
+
- application/json
|
397
|
+
Content-Length:
|
398
|
+
- '316'
|
399
|
+
Connection:
|
400
|
+
- keep-alive
|
401
|
+
Server:
|
402
|
+
- nginx
|
403
|
+
X-Jussi-Request-Id:
|
404
|
+
- '001110758473198234'
|
405
|
+
X-Amzn-Trace-Id:
|
406
|
+
- Root=1-5f8a6f9f-71ca435e428642e22e604bd4
|
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":{"latest":"0.16666666666666666","lowest_ask":"0.16099301999518920","highest_bid":"0.16087516087516088","percent_change":"0.00000000000000000","steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":62}'
|
420
|
+
recorded_at: Sat, 17 Oct 2020 04:14:23 GMT
|
421
|
+
- request:
|
422
|
+
method: post
|
423
|
+
uri: https://api.steemitdev.com/
|
424
|
+
body:
|
425
|
+
encoding: UTF-8
|
426
|
+
string: '{"jsonrpc":"2.0","id":61,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
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
|
+
- '86'
|
440
|
+
response:
|
441
|
+
status:
|
442
|
+
code: 200
|
443
|
+
message: OK
|
444
|
+
headers:
|
445
|
+
Date:
|
446
|
+
- Sat, 17 Oct 2020 04:22:41 GMT
|
447
|
+
Content-Type:
|
448
|
+
- application/json
|
449
|
+
Content-Length:
|
450
|
+
- '321'
|
451
|
+
Connection:
|
452
|
+
- keep-alive
|
453
|
+
Server:
|
454
|
+
- nginx
|
455
|
+
X-Jussi-Request-Id:
|
456
|
+
- '000882670706721107'
|
457
|
+
X-Amzn-Trace-Id:
|
458
|
+
- Root=1-5f8a7191-15a43a5f2a88bef863ba4be6
|
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":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":61}'
|
472
|
+
recorded_at: Sat, 17 Oct 2020 04:22:41 GMT
|
473
|
+
- request:
|
474
|
+
method: post
|
475
|
+
uri: https://api.steemitdev.com/
|
476
|
+
body:
|
477
|
+
encoding: UTF-8
|
478
|
+
string: '{"jsonrpc":"2.0","id":62,"method":"market_history_api.get_ticker","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
|
+
- '110'
|
492
|
+
response:
|
493
|
+
status:
|
494
|
+
code: 200
|
495
|
+
message: OK
|
496
|
+
headers:
|
497
|
+
Date:
|
498
|
+
- Sat, 17 Oct 2020 04:22:41 GMT
|
499
|
+
Content-Type:
|
500
|
+
- application/json
|
501
|
+
Content-Length:
|
502
|
+
- '316'
|
503
|
+
Connection:
|
504
|
+
- keep-alive
|
505
|
+
Server:
|
506
|
+
- nginx
|
507
|
+
X-Jussi-Request-Id:
|
508
|
+
- '000023420886108011'
|
509
|
+
X-Amzn-Trace-Id:
|
510
|
+
- Root=1-5f8a7191-00dd3723540a643912955fb9
|
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":{"latest":"0.16666666666666666","lowest_ask":"0.16099301999518920","highest_bid":"0.16087516087516088","percent_change":"0.00000000000000000","steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":62}'
|
524
|
+
recorded_at: Sat, 17 Oct 2020 04:22:41 GMT
|
525
|
+
- request:
|
526
|
+
method: post
|
527
|
+
uri: https://api.steemitdev.com/
|
528
|
+
body:
|
529
|
+
encoding: UTF-8
|
530
|
+
string: '{"jsonrpc":"2.0","id":18,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
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
|
+
- '85'
|
544
|
+
response:
|
545
|
+
status:
|
546
|
+
code: 200
|
547
|
+
message: OK
|
548
|
+
headers:
|
549
|
+
Date:
|
550
|
+
- Sat, 17 Oct 2020 04:26:47 GMT
|
551
|
+
Content-Type:
|
552
|
+
- application/json
|
553
|
+
Content-Length:
|
554
|
+
- '321'
|
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_ticker"}
|
561
|
+
X-Jussi-Request-Id:
|
562
|
+
- '000297591576290082'
|
563
|
+
X-Amzn-Trace-Id:
|
564
|
+
- Root=1-5f8a7287-5224801f549b3da32073a5a9
|
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":18,"jsonrpc":"2.0","result":{"args":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}}}'
|
578
|
+
recorded_at: Sat, 17 Oct 2020 04:26:47 GMT
|
579
|
+
- request:
|
580
|
+
method: post
|
581
|
+
uri: https://api.steemitdev.com/
|
582
|
+
body:
|
583
|
+
encoding: UTF-8
|
584
|
+
string: '{"jsonrpc":"2.0","id":19,"method":"market_history_api.get_ticker","params":{}}'
|
585
|
+
headers:
|
586
|
+
Content-Type:
|
587
|
+
- application/json; charset=utf-8
|
588
|
+
User-Agent:
|
589
|
+
- steem-ruby/0.9.4
|
590
|
+
Accept-Encoding:
|
591
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
592
|
+
Accept:
|
593
|
+
- "*/*"
|
594
|
+
Host:
|
595
|
+
- api.steemitdev.com
|
596
|
+
Content-Length:
|
597
|
+
- '110'
|
598
|
+
response:
|
599
|
+
status:
|
600
|
+
code: 200
|
601
|
+
message: OK
|
602
|
+
headers:
|
603
|
+
Date:
|
604
|
+
- Sat, 17 Oct 2020 04:26:47 GMT
|
605
|
+
Content-Type:
|
606
|
+
- application/json
|
607
|
+
Content-Length:
|
608
|
+
- '316'
|
609
|
+
Connection:
|
610
|
+
- keep-alive
|
611
|
+
Server:
|
612
|
+
- nginx
|
613
|
+
X-Jussi-Request-Id:
|
614
|
+
- '001065369441669430'
|
615
|
+
X-Amzn-Trace-Id:
|
616
|
+
- Root=1-5f8a7287-4e1d977e3f7b25f0275b2bba
|
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":{"latest":"0.16666666666666666","lowest_ask":"0.16099301999518920","highest_bid":"0.16087516087516088","percent_change":"0.00000000000000000","steem_volume":{"amount":"42467209","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6673736","precision":3,"nai":"@@000000013"}},"id":19}'
|
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":66,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
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
|
+
- '95'
|
650
|
+
response:
|
651
|
+
status:
|
652
|
+
code: 200
|
653
|
+
message: OK
|
654
|
+
headers:
|
655
|
+
Date:
|
656
|
+
- Sat, 17 Oct 2020 04:34:29 GMT
|
657
|
+
Content-Type:
|
658
|
+
- application/json
|
659
|
+
Content-Length:
|
660
|
+
- '321'
|
661
|
+
Connection:
|
662
|
+
- keep-alive
|
663
|
+
Server:
|
664
|
+
- nginx
|
665
|
+
X-Jussi-Request-Id:
|
666
|
+
- '000151456195976200'
|
667
|
+
X-Amzn-Trace-Id:
|
668
|
+
- Root=1-5f8a7455-21f7298a62ce333c5bbe7523
|
669
|
+
Access-Control-Allow-Origin:
|
670
|
+
- "*"
|
671
|
+
Access-Control-Allow-Methods:
|
672
|
+
- GET, POST, OPTIONS
|
673
|
+
Access-Control-Allow-Headers:
|
674
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
675
|
+
Strict-Transport-Security:
|
676
|
+
- max-age=31557600; includeSubDomains; preload
|
677
|
+
Content-Security-Policy:
|
678
|
+
- upgrade-insecure-requests
|
679
|
+
body:
|
680
|
+
encoding: UTF-8
|
681
|
+
string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":66}'
|
682
|
+
recorded_at: Sat, 17 Oct 2020 04:34:29 GMT
|
683
|
+
- request:
|
684
|
+
method: post
|
685
|
+
uri: https://api.steemitdev.com/
|
686
|
+
body:
|
687
|
+
encoding: UTF-8
|
688
|
+
string: '{"jsonrpc":"2.0","id":67,"method":"market_history_api.get_ticker","params":{}}'
|
689
|
+
headers:
|
690
|
+
Content-Type:
|
691
|
+
- application/json; charset=utf-8
|
692
|
+
User-Agent:
|
693
|
+
- steem-ruby/0.9.4
|
694
|
+
Accept-Encoding:
|
695
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
696
|
+
Accept:
|
697
|
+
- "*/*"
|
698
|
+
Host:
|
699
|
+
- api.steemitdev.com
|
700
|
+
Content-Length:
|
701
|
+
- '110'
|
702
|
+
response:
|
703
|
+
status:
|
704
|
+
code: 200
|
705
|
+
message: OK
|
706
|
+
headers:
|
707
|
+
Date:
|
708
|
+
- Sat, 17 Oct 2020 04:34:29 GMT
|
709
|
+
Content-Type:
|
710
|
+
- application/json
|
711
|
+
Content-Length:
|
712
|
+
- '316'
|
713
|
+
Connection:
|
714
|
+
- keep-alive
|
715
|
+
Server:
|
716
|
+
- nginx
|
717
|
+
X-Jussi-Request-Id:
|
718
|
+
- '000778759216118833'
|
719
|
+
X-Amzn-Trace-Id:
|
720
|
+
- Root=1-5f8a7455-4f50a8570f576cdc52ee2d40
|
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":{"latest":"0.16666666666666666","lowest_ask":"0.16099301999518920","highest_bid":"0.16087516087516088","percent_change":"0.00000000000000000","steem_volume":{"amount":"42498272","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6678737","precision":3,"nai":"@@000000013"}},"id":67}'
|
734
|
+
recorded_at: Sat, 17 Oct 2020 04:34:29 GMT
|
735
|
+
- request:
|
736
|
+
method: post
|
737
|
+
uri: https://api.steemitdev.com/
|
738
|
+
body:
|
739
|
+
encoding: UTF-8
|
740
|
+
string: '{"jsonrpc":"2.0","id":19,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
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
|
+
- '86'
|
754
|
+
response:
|
755
|
+
status:
|
756
|
+
code: 200
|
757
|
+
message: OK
|
758
|
+
headers:
|
759
|
+
Date:
|
760
|
+
- Sat, 17 Oct 2020 04:39:18 GMT
|
761
|
+
Content-Type:
|
762
|
+
- application/json
|
763
|
+
Content-Length:
|
764
|
+
- '321'
|
765
|
+
Connection:
|
766
|
+
- keep-alive
|
767
|
+
Server:
|
768
|
+
- nginx
|
769
|
+
X-Jussi-Request-Id:
|
770
|
+
- '000699308260619174'
|
771
|
+
X-Amzn-Trace-Id:
|
772
|
+
- Root=1-5f8a7576-4cc3c2c2640062370286b4a9
|
773
|
+
Access-Control-Allow-Origin:
|
774
|
+
- "*"
|
775
|
+
Access-Control-Allow-Methods:
|
776
|
+
- GET, POST, OPTIONS
|
777
|
+
Access-Control-Allow-Headers:
|
778
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
779
|
+
Strict-Transport-Security:
|
780
|
+
- max-age=31557600; includeSubDomains; preload
|
781
|
+
Content-Security-Policy:
|
782
|
+
- upgrade-insecure-requests
|
783
|
+
body:
|
784
|
+
encoding: UTF-8
|
785
|
+
string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":19}'
|
786
|
+
recorded_at: Sat, 17 Oct 2020 04:39:18 GMT
|
787
|
+
- request:
|
788
|
+
method: post
|
789
|
+
uri: https://api.steemitdev.com/
|
790
|
+
body:
|
791
|
+
encoding: UTF-8
|
792
|
+
string: '{"jsonrpc":"2.0","id":20,"method":"market_history_api.get_ticker","params":{}}'
|
793
|
+
headers:
|
794
|
+
Content-Type:
|
795
|
+
- application/json; charset=utf-8
|
796
|
+
User-Agent:
|
797
|
+
- steem-ruby/0.9.4
|
798
|
+
Accept-Encoding:
|
799
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
800
|
+
Accept:
|
801
|
+
- "*/*"
|
802
|
+
Host:
|
803
|
+
- api.steemitdev.com
|
804
|
+
Content-Length:
|
805
|
+
- '110'
|
806
|
+
response:
|
807
|
+
status:
|
808
|
+
code: 200
|
809
|
+
message: OK
|
810
|
+
headers:
|
811
|
+
Date:
|
812
|
+
- Sat, 17 Oct 2020 04:39:18 GMT
|
813
|
+
Content-Type:
|
814
|
+
- application/json
|
815
|
+
Content-Length:
|
816
|
+
- '316'
|
817
|
+
Connection:
|
818
|
+
- keep-alive
|
819
|
+
Server:
|
820
|
+
- nginx
|
821
|
+
X-Jussi-Request-Id:
|
822
|
+
- '000073110612246811'
|
823
|
+
X-Amzn-Trace-Id:
|
824
|
+
- Root=1-5f8a7576-749a3da32488e24027567d28
|
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":{"latest":"0.16666666666666666","lowest_ask":"0.16099301999518920","highest_bid":"0.16087516087516088","percent_change":"0.00000000000000000","steem_volume":{"amount":"42498272","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"6678737","precision":3,"nai":"@@000000013"}},"id":20}'
|
838
|
+
recorded_at: Sat, 17 Oct 2020 04:39:18 GMT
|
839
|
+
- request:
|
840
|
+
method: post
|
841
|
+
uri: https://api.steemitdev.com/
|
842
|
+
body:
|
843
|
+
encoding: UTF-8
|
844
|
+
string: '{"jsonrpc":"2.0","id":76,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
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
|
+
- '92'
|
858
|
+
response:
|
859
|
+
status:
|
860
|
+
code: 200
|
861
|
+
message: OK
|
862
|
+
headers:
|
863
|
+
Date:
|
864
|
+
- Sat, 17 Oct 2020 04:56:39 GMT
|
865
|
+
Content-Type:
|
866
|
+
- application/json
|
867
|
+
Content-Length:
|
868
|
+
- '321'
|
869
|
+
Connection:
|
870
|
+
- keep-alive
|
871
|
+
Server:
|
872
|
+
- nginx
|
873
|
+
X-Jussi-Request-Id:
|
874
|
+
- '000348792497877448'
|
875
|
+
X-Amzn-Trace-Id:
|
876
|
+
- Root=1-5f8a7987-186d1f526e797bbb113cdacc
|
877
|
+
Access-Control-Allow-Origin:
|
878
|
+
- "*"
|
879
|
+
Access-Control-Allow-Methods:
|
880
|
+
- GET, POST, OPTIONS
|
881
|
+
Access-Control-Allow-Headers:
|
882
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
883
|
+
Strict-Transport-Security:
|
884
|
+
- max-age=31557600; includeSubDomains; preload
|
885
|
+
Content-Security-Policy:
|
886
|
+
- upgrade-insecure-requests
|
887
|
+
body:
|
888
|
+
encoding: UTF-8
|
889
|
+
string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":76}'
|
890
|
+
recorded_at: Sat, 17 Oct 2020 04:56:39 GMT
|
891
|
+
- request:
|
892
|
+
method: post
|
893
|
+
uri: https://api.steemitdev.com/
|
894
|
+
body:
|
895
|
+
encoding: UTF-8
|
896
|
+
string: '{"jsonrpc":"2.0","id":77,"method":"market_history_api.get_ticker","params":{}}'
|
897
|
+
headers:
|
898
|
+
Content-Type:
|
899
|
+
- application/json; charset=utf-8
|
900
|
+
User-Agent:
|
901
|
+
- steem-ruby/0.9.4
|
902
|
+
Accept-Encoding:
|
903
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
904
|
+
Accept:
|
905
|
+
- "*/*"
|
906
|
+
Host:
|
907
|
+
- api.steemitdev.com
|
908
|
+
Content-Length:
|
909
|
+
- '110'
|
910
|
+
response:
|
911
|
+
status:
|
912
|
+
code: 200
|
913
|
+
message: OK
|
914
|
+
headers:
|
915
|
+
Date:
|
916
|
+
- Sat, 17 Oct 2020 04:56:40 GMT
|
917
|
+
Content-Type:
|
918
|
+
- application/json
|
919
|
+
Content-Length:
|
920
|
+
- '316'
|
921
|
+
Connection:
|
922
|
+
- keep-alive
|
923
|
+
Server:
|
924
|
+
- nginx
|
925
|
+
X-Jussi-Request-Id:
|
926
|
+
- '000550829203958440'
|
927
|
+
X-Amzn-Trace-Id:
|
928
|
+
- Root=1-5f8a7988-0d2b82b3109b028346153700
|
929
|
+
Access-Control-Allow-Origin:
|
930
|
+
- "*"
|
931
|
+
Access-Control-Allow-Methods:
|
932
|
+
- GET, POST, OPTIONS
|
933
|
+
Access-Control-Allow-Headers:
|
934
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
935
|
+
Strict-Transport-Security:
|
936
|
+
- max-age=31557600; includeSubDomains; preload
|
937
|
+
Content-Security-Policy:
|
938
|
+
- upgrade-insecure-requests
|
939
|
+
body:
|
940
|
+
encoding: UTF-8
|
941
|
+
string: '{"jsonrpc":"2.0","result":{"latest":"0.14285714285714285","lowest_ask":"0.16073677581863979","highest_bid":"0.16014669926650366","percent_change":"0.00000000000000000","steem_volume":{"amount":"36570454","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"5752307","precision":3,"nai":"@@000000013"}},"id":77}'
|
942
|
+
recorded_at: Sat, 17 Oct 2020 04:56:40 GMT
|
943
|
+
- request:
|
944
|
+
method: post
|
945
|
+
uri: https://api.steemitdev.com/
|
946
|
+
body:
|
947
|
+
encoding: UTF-8
|
948
|
+
string: '{"jsonrpc":"2.0","id":65,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
949
|
+
headers:
|
950
|
+
Content-Type:
|
951
|
+
- application/json; charset=utf-8
|
952
|
+
User-Agent:
|
953
|
+
- steem-ruby/0.9.4
|
954
|
+
Accept-Encoding:
|
955
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
956
|
+
Accept:
|
957
|
+
- "*/*"
|
958
|
+
Host:
|
959
|
+
- api.steemit.com
|
960
|
+
Content-Length:
|
961
|
+
- '86'
|
962
|
+
response:
|
963
|
+
status:
|
964
|
+
code: 200
|
965
|
+
message: OK
|
966
|
+
headers:
|
967
|
+
Date:
|
968
|
+
- Sat, 17 Oct 2020 05:03:26 GMT
|
969
|
+
Content-Type:
|
970
|
+
- application/json
|
971
|
+
Content-Length:
|
972
|
+
- '321'
|
973
|
+
Connection:
|
974
|
+
- keep-alive
|
975
|
+
Server:
|
976
|
+
- nginx
|
977
|
+
X-Jussi-Request-Id:
|
978
|
+
- '000393057500663787'
|
979
|
+
X-Amzn-Trace-Id:
|
980
|
+
- Root=1-5f8a7b1e-73a4c69658569f871d3643ed
|
981
|
+
Access-Control-Allow-Origin:
|
982
|
+
- "*"
|
983
|
+
Access-Control-Allow-Methods:
|
984
|
+
- GET, POST, OPTIONS
|
985
|
+
Access-Control-Allow-Headers:
|
986
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
987
|
+
Strict-Transport-Security:
|
988
|
+
- max-age=31557600; includeSubDomains; preload
|
989
|
+
Content-Security-Policy:
|
990
|
+
- upgrade-insecure-requests
|
991
|
+
body:
|
992
|
+
encoding: UTF-8
|
993
|
+
string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":65}'
|
994
|
+
recorded_at: Sat, 17 Oct 2020 05:03:26 GMT
|
995
|
+
- request:
|
996
|
+
method: post
|
997
|
+
uri: https://api.steemitdev.com/
|
998
|
+
body:
|
999
|
+
encoding: UTF-8
|
1000
|
+
string: '{"jsonrpc":"2.0","id":66,"method":"market_history_api.get_ticker","params":{}}'
|
1001
|
+
headers:
|
1002
|
+
Content-Type:
|
1003
|
+
- application/json; charset=utf-8
|
1004
|
+
User-Agent:
|
1005
|
+
- steem-ruby/0.9.4
|
1006
|
+
Accept-Encoding:
|
1007
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1008
|
+
Accept:
|
1009
|
+
- "*/*"
|
1010
|
+
Host:
|
1011
|
+
- api.steemit.com
|
1012
|
+
Content-Length:
|
1013
|
+
- '110'
|
1014
|
+
response:
|
1015
|
+
status:
|
1016
|
+
code: 200
|
1017
|
+
message: OK
|
1018
|
+
headers:
|
1019
|
+
Date:
|
1020
|
+
- Sat, 17 Oct 2020 05:03:27 GMT
|
1021
|
+
Content-Type:
|
1022
|
+
- application/json
|
1023
|
+
Content-Length:
|
1024
|
+
- '316'
|
1025
|
+
Connection:
|
1026
|
+
- keep-alive
|
1027
|
+
Server:
|
1028
|
+
- nginx
|
1029
|
+
X-Jussi-Request-Id:
|
1030
|
+
- '000241919912357038'
|
1031
|
+
X-Amzn-Trace-Id:
|
1032
|
+
- Root=1-5f8a7b1f-40789836720066f95e8f3fc4
|
1033
|
+
Access-Control-Allow-Origin:
|
1034
|
+
- "*"
|
1035
|
+
Access-Control-Allow-Methods:
|
1036
|
+
- GET, POST, OPTIONS
|
1037
|
+
Access-Control-Allow-Headers:
|
1038
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1039
|
+
Strict-Transport-Security:
|
1040
|
+
- max-age=31557600; includeSubDomains; preload
|
1041
|
+
Content-Security-Policy:
|
1042
|
+
- upgrade-insecure-requests
|
1043
|
+
body:
|
1044
|
+
encoding: UTF-8
|
1045
|
+
string: '{"jsonrpc":"2.0","result":{"latest":"0.14285714285714285","lowest_ask":"0.16073677581863979","highest_bid":"0.16014669926650366","percent_change":"0.00000000000000000","steem_volume":{"amount":"36570454","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"5752307","precision":3,"nai":"@@000000013"}},"id":66}'
|
1046
|
+
recorded_at: Sat, 17 Oct 2020 05:03:27 GMT
|
1047
|
+
- request:
|
1048
|
+
method: post
|
1049
|
+
uri: https://api.steemitdev.com/
|
1050
|
+
body:
|
1051
|
+
encoding: UTF-8
|
1052
|
+
string: '{"jsonrpc":"2.0","id":64,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_ticker"}}'
|
1053
|
+
headers:
|
1054
|
+
Content-Type:
|
1055
|
+
- application/json; charset=utf-8
|
1056
|
+
User-Agent:
|
1057
|
+
- steem-ruby/0.9.5
|
1058
|
+
Accept-Encoding:
|
1059
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1060
|
+
Accept:
|
1061
|
+
- "*/*"
|
1062
|
+
Host:
|
1063
|
+
- api.steemitdev.com
|
1064
|
+
Content-Length:
|
1065
|
+
- '95'
|
1066
|
+
response:
|
1067
|
+
status:
|
1068
|
+
code: 200
|
1069
|
+
message: OK
|
1070
|
+
headers:
|
1071
|
+
Date:
|
1072
|
+
- Fri, 06 Nov 2020 21:13:47 GMT
|
1073
|
+
Content-Type:
|
1074
|
+
- application/json
|
1075
|
+
Content-Length:
|
1076
|
+
- '321'
|
1077
|
+
Connection:
|
1078
|
+
- keep-alive
|
1079
|
+
Server:
|
1080
|
+
- nginx
|
1081
|
+
X-Jussi-Request-Id:
|
1082
|
+
- '000492578976745457'
|
1083
|
+
X-Amzn-Trace-Id:
|
1084
|
+
- Root=1-5fa5bc8a-5be2653a27651de5054f7781
|
1085
|
+
Access-Control-Allow-Origin:
|
1086
|
+
- "*"
|
1087
|
+
Access-Control-Allow-Methods:
|
1088
|
+
- GET, POST, OPTIONS
|
1089
|
+
Access-Control-Allow-Headers:
|
1090
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1091
|
+
Strict-Transport-Security:
|
1092
|
+
- max-age=31557600; includeSubDomains; preload
|
1093
|
+
Content-Security-Policy:
|
1094
|
+
- upgrade-insecure-requests
|
1095
|
+
body:
|
1096
|
+
encoding: UTF-8
|
1097
|
+
string: '{"jsonrpc":"2.0","result":{"args":{},"ret":{"latest":"0.00000000000000000","lowest_ask":"0.00000000000000000","highest_bid":"0.00000000000000000","percent_change":"0.00000000000000000","steem_volume":{"amount":"0","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"0","precision":3,"nai":"@@000000013"}}},"id":64}'
|
1098
|
+
recorded_at: Fri, 06 Nov 2020 21:13:48 GMT
|
1099
|
+
- request:
|
1100
|
+
method: post
|
1101
|
+
uri: https://api.steemitdev.com/
|
1102
|
+
body:
|
1103
|
+
encoding: UTF-8
|
1104
|
+
string: '{"jsonrpc":"2.0","id":65,"method":"market_history_api.get_ticker","params":{}}'
|
1105
|
+
headers:
|
1106
|
+
Content-Type:
|
1107
|
+
- application/json; charset=utf-8
|
1108
|
+
User-Agent:
|
1109
|
+
- steem-ruby/0.9.5
|
1110
|
+
Accept-Encoding:
|
1111
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1112
|
+
Accept:
|
1113
|
+
- "*/*"
|
1114
|
+
Host:
|
1115
|
+
- api.steemitdev.com
|
1116
|
+
Content-Length:
|
1117
|
+
- '110'
|
1118
|
+
response:
|
1119
|
+
status:
|
1120
|
+
code: 200
|
1121
|
+
message: OK
|
1122
|
+
headers:
|
1123
|
+
Date:
|
1124
|
+
- Fri, 06 Nov 2020 21:13:49 GMT
|
1125
|
+
Content-Type:
|
1126
|
+
- application/json
|
1127
|
+
Content-Length:
|
1128
|
+
- '316'
|
1129
|
+
Connection:
|
1130
|
+
- keep-alive
|
1131
|
+
Server:
|
1132
|
+
- nginx
|
1133
|
+
X-Jussi-Request-Id:
|
1134
|
+
- '000158343115080747'
|
1135
|
+
X-Amzn-Trace-Id:
|
1136
|
+
- Root=1-5fa5bc8c-65dd1dd85439ed74243290d7
|
1137
|
+
Access-Control-Allow-Origin:
|
1138
|
+
- "*"
|
1139
|
+
Access-Control-Allow-Methods:
|
1140
|
+
- GET, POST, OPTIONS
|
1141
|
+
Access-Control-Allow-Headers:
|
1142
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1143
|
+
Strict-Transport-Security:
|
1144
|
+
- max-age=31557600; includeSubDomains; preload
|
1145
|
+
Content-Security-Policy:
|
1146
|
+
- upgrade-insecure-requests
|
1147
|
+
body:
|
1148
|
+
encoding: UTF-8
|
1149
|
+
string: '{"jsonrpc":"2.0","result":{"latest":"0.14098837209302326","lowest_ask":"0.15173000000000000","highest_bid":"0.15172912849122888","percent_change":"0.00000000000000000","steem_volume":{"amount":"21773894","precision":3,"nai":"@@000000021"},"sbd_volume":{"amount":"3175993","precision":3,"nai":"@@000000013"}},"id":65}'
|
1150
|
+
recorded_at: Fri, 06 Nov 2020 21:13:50 GMT
|
1151
|
+
recorded_with: VCR 6.0.0
|