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,1147 @@
|
|
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":126,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
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
|
+
- '79'
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Date:
|
28
|
+
- Sat, 17 Oct 2020 04:08:16 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Content-Length:
|
32
|
+
- '79'
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
Server:
|
36
|
+
- nginx
|
37
|
+
X-Jussi-Request-Id:
|
38
|
+
- '000875591355377775'
|
39
|
+
X-Amzn-Trace-Id:
|
40
|
+
- Root=1-5f8a6e30-28e44b8b4a0dab0d1cc23125
|
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":{"limit":1000},"ret":{"trades":[]}},"id":126}'
|
54
|
+
recorded_at: Sat, 17 Oct 2020 04:08:16 GMT
|
55
|
+
- request:
|
56
|
+
method: post
|
57
|
+
uri: https://api.steemit.com/
|
58
|
+
body:
|
59
|
+
encoding: UTF-8
|
60
|
+
string: '{"jsonrpc":"2.0","id":127,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
61
|
+
headers:
|
62
|
+
Content-Type:
|
63
|
+
- application/json; charset=utf-8
|
64
|
+
User-Agent:
|
65
|
+
- steem-ruby/0.9.4
|
66
|
+
Accept-Encoding:
|
67
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
68
|
+
Accept:
|
69
|
+
- "*/*"
|
70
|
+
Host:
|
71
|
+
- api.steemit.com
|
72
|
+
Content-Length:
|
73
|
+
- '118'
|
74
|
+
response:
|
75
|
+
status:
|
76
|
+
code: 200
|
77
|
+
message: OK
|
78
|
+
headers:
|
79
|
+
Date:
|
80
|
+
- Sat, 17 Oct 2020 04:08:16 GMT
|
81
|
+
Content-Type:
|
82
|
+
- application/json
|
83
|
+
Transfer-Encoding:
|
84
|
+
- chunked
|
85
|
+
Connection:
|
86
|
+
- keep-alive
|
87
|
+
Server:
|
88
|
+
- nginx
|
89
|
+
X-Jussi-Request-Id:
|
90
|
+
- '000487066076541556'
|
91
|
+
X-Amzn-Trace-Id:
|
92
|
+
- Root=1-5f8a6e30-4585b32610a4311c744ecd9d
|
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: ASCII-8BIT
|
105
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:02:54","current_pays":{"amount":"1098","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"6783","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:02:09","current_pays":{"amount":"2990","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"484","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:00:39","current_pays":{"amount":"379","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"2340","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:36:57","current_pays":{"amount":"90","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"555","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:35:21","current_pays":{"amount":"301","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"1858","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:18","current_pays":{"amount":"605","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"3736","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:09","current_pays":{"amount":"1530","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"9449","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T02:52:57","current_pays":{"amount":"841","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"5194","precision":3,"nai":"@@000000021"}}]},"id":127}'
|
106
|
+
recorded_at: Sat, 17 Oct 2020 04:08:16 GMT
|
107
|
+
- request:
|
108
|
+
method: post
|
109
|
+
uri: https://api.steemit.com/
|
110
|
+
body:
|
111
|
+
encoding: UTF-8
|
112
|
+
string: '{"jsonrpc":"2.0","id":93,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
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
|
+
- '78'
|
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
|
+
- '78'
|
137
|
+
Connection:
|
138
|
+
- keep-alive
|
139
|
+
Server:
|
140
|
+
- nginx
|
141
|
+
X-Jussi-Request-Id:
|
142
|
+
- '000942492974296969'
|
143
|
+
X-Amzn-Trace-Id:
|
144
|
+
- Root=1-5f8a6e6d-06cb93255696ebb979e55f11
|
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":{"limit":1000},"ret":{"trades":[]}},"id":93}'
|
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":94,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
165
|
+
headers:
|
166
|
+
Content-Type:
|
167
|
+
- application/json; charset=utf-8
|
168
|
+
User-Agent:
|
169
|
+
- steem-ruby/0.9.4
|
170
|
+
Accept-Encoding:
|
171
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
172
|
+
Accept:
|
173
|
+
- "*/*"
|
174
|
+
Host:
|
175
|
+
- api.steemit.com
|
176
|
+
Content-Length:
|
177
|
+
- '117'
|
178
|
+
response:
|
179
|
+
status:
|
180
|
+
code: 200
|
181
|
+
message: OK
|
182
|
+
headers:
|
183
|
+
Date:
|
184
|
+
- Sat, 17 Oct 2020 04:09:18 GMT
|
185
|
+
Content-Type:
|
186
|
+
- application/json
|
187
|
+
Transfer-Encoding:
|
188
|
+
- chunked
|
189
|
+
Connection:
|
190
|
+
- keep-alive
|
191
|
+
Server:
|
192
|
+
- nginx
|
193
|
+
X-Jussi-Request-Id:
|
194
|
+
- '000379675119828550'
|
195
|
+
X-Amzn-Trace-Id:
|
196
|
+
- Root=1-5f8a6e6e-32dd48f931c3e3a34ddc7c39
|
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: ASCII-8BIT
|
209
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:08:39","current_pays":{"amount":"347","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"56","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:02:54","current_pays":{"amount":"1098","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"6783","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:02:09","current_pays":{"amount":"2990","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"484","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:00:39","current_pays":{"amount":"379","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"2340","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:36:57","current_pays":{"amount":"90","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"555","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:35:21","current_pays":{"amount":"301","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"1858","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:18","current_pays":{"amount":"605","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"3736","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:09","current_pays":{"amount":"1530","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"9449","precision":3,"nai":"@@000000021"}}]},"id":94}'
|
210
|
+
recorded_at: Sat, 17 Oct 2020 04:09:18 GMT
|
211
|
+
- request:
|
212
|
+
method: post
|
213
|
+
uri: https://api.steemit.com/
|
214
|
+
body:
|
215
|
+
encoding: UTF-8
|
216
|
+
string: '{"jsonrpc":"2.0","id":7,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
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
|
+
- '91'
|
230
|
+
response:
|
231
|
+
status:
|
232
|
+
code: 200
|
233
|
+
message: OK
|
234
|
+
headers:
|
235
|
+
Date:
|
236
|
+
- Sat, 17 Oct 2020 04:13:17 GMT
|
237
|
+
Content-Type:
|
238
|
+
- application/json
|
239
|
+
Content-Length:
|
240
|
+
- '77'
|
241
|
+
Connection:
|
242
|
+
- keep-alive
|
243
|
+
Server:
|
244
|
+
- nginx
|
245
|
+
X-Jussi-Request-Id:
|
246
|
+
- '000019697588054104'
|
247
|
+
X-Amzn-Trace-Id:
|
248
|
+
- Root=1-5f8a6f5d-6d8d3c9d099bb34f633ef1c6
|
249
|
+
Access-Control-Allow-Origin:
|
250
|
+
- "*"
|
251
|
+
Access-Control-Allow-Methods:
|
252
|
+
- GET, POST, OPTIONS
|
253
|
+
Access-Control-Allow-Headers:
|
254
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
255
|
+
Strict-Transport-Security:
|
256
|
+
- max-age=31557600; includeSubDomains; preload
|
257
|
+
Content-Security-Policy:
|
258
|
+
- upgrade-insecure-requests
|
259
|
+
body:
|
260
|
+
encoding: UTF-8
|
261
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"limit":1000},"ret":{"trades":[]}},"id":7}'
|
262
|
+
recorded_at: Sat, 17 Oct 2020 04:13:17 GMT
|
263
|
+
- request:
|
264
|
+
method: post
|
265
|
+
uri: https://api.steemit.com/
|
266
|
+
body:
|
267
|
+
encoding: UTF-8
|
268
|
+
string: '{"jsonrpc":"2.0","id":8,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
269
|
+
headers:
|
270
|
+
Content-Type:
|
271
|
+
- application/json; charset=utf-8
|
272
|
+
User-Agent:
|
273
|
+
- steem-ruby/0.9.4
|
274
|
+
Accept-Encoding:
|
275
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
276
|
+
Accept:
|
277
|
+
- "*/*"
|
278
|
+
Host:
|
279
|
+
- api.steemit.com
|
280
|
+
Content-Length:
|
281
|
+
- '116'
|
282
|
+
response:
|
283
|
+
status:
|
284
|
+
code: 200
|
285
|
+
message: OK
|
286
|
+
headers:
|
287
|
+
Date:
|
288
|
+
- Sat, 17 Oct 2020 04:13:17 GMT
|
289
|
+
Content-Type:
|
290
|
+
- application/json
|
291
|
+
Transfer-Encoding:
|
292
|
+
- chunked
|
293
|
+
Connection:
|
294
|
+
- keep-alive
|
295
|
+
Server:
|
296
|
+
- nginx
|
297
|
+
X-Jussi-Request-Id:
|
298
|
+
- '000509988287295068'
|
299
|
+
X-Amzn-Trace-Id:
|
300
|
+
- Root=1-5f8a6f5d-357bf0b153ecc5e67756dd3b
|
301
|
+
Access-Control-Allow-Origin:
|
302
|
+
- "*"
|
303
|
+
Access-Control-Allow-Methods:
|
304
|
+
- GET, POST, OPTIONS
|
305
|
+
Access-Control-Allow-Headers:
|
306
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
307
|
+
Strict-Transport-Security:
|
308
|
+
- max-age=31557600; includeSubDomains; preload
|
309
|
+
Content-Security-Policy:
|
310
|
+
- upgrade-insecure-requests
|
311
|
+
body:
|
312
|
+
encoding: ASCII-8BIT
|
313
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:08:39","current_pays":{"amount":"347","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"56","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:02:54","current_pays":{"amount":"1098","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"6783","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:02:09","current_pays":{"amount":"2990","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"484","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:00:39","current_pays":{"amount":"379","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"2340","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:36:57","current_pays":{"amount":"90","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"555","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:35:21","current_pays":{"amount":"301","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"1858","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:18","current_pays":{"amount":"605","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"3736","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:09","current_pays":{"amount":"1530","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"9449","precision":3,"nai":"@@000000021"}}]},"id":8}'
|
314
|
+
recorded_at: Sat, 17 Oct 2020 04:13:17 GMT
|
315
|
+
- request:
|
316
|
+
method: post
|
317
|
+
uri: https://api.steemit.com/
|
318
|
+
body:
|
319
|
+
encoding: UTF-8
|
320
|
+
string: '{"jsonrpc":"2.0","id":45,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
321
|
+
headers:
|
322
|
+
Content-Type:
|
323
|
+
- application/json; charset=utf-8
|
324
|
+
User-Agent:
|
325
|
+
- steem-ruby/0.9.4
|
326
|
+
Accept-Encoding:
|
327
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
328
|
+
Accept:
|
329
|
+
- "*/*"
|
330
|
+
Host:
|
331
|
+
- api.steemit.com
|
332
|
+
Content-Length:
|
333
|
+
- '78'
|
334
|
+
response:
|
335
|
+
status:
|
336
|
+
code: 200
|
337
|
+
message: OK
|
338
|
+
headers:
|
339
|
+
Date:
|
340
|
+
- Sat, 17 Oct 2020 04:14:19 GMT
|
341
|
+
Content-Type:
|
342
|
+
- application/json
|
343
|
+
Content-Length:
|
344
|
+
- '78'
|
345
|
+
Connection:
|
346
|
+
- keep-alive
|
347
|
+
Server:
|
348
|
+
- nginx
|
349
|
+
X-Jussi-Request-Id:
|
350
|
+
- '000506062115151319'
|
351
|
+
X-Amzn-Trace-Id:
|
352
|
+
- Root=1-5f8a6f9b-5422e7ec14bcf1db6c22333f
|
353
|
+
Access-Control-Allow-Origin:
|
354
|
+
- "*"
|
355
|
+
Access-Control-Allow-Methods:
|
356
|
+
- GET, POST, OPTIONS
|
357
|
+
Access-Control-Allow-Headers:
|
358
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
359
|
+
Strict-Transport-Security:
|
360
|
+
- max-age=31557600; includeSubDomains; preload
|
361
|
+
Content-Security-Policy:
|
362
|
+
- upgrade-insecure-requests
|
363
|
+
body:
|
364
|
+
encoding: UTF-8
|
365
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"limit":1000},"ret":{"trades":[]}},"id":45}'
|
366
|
+
recorded_at: Sat, 17 Oct 2020 04:14:19 GMT
|
367
|
+
- request:
|
368
|
+
method: post
|
369
|
+
uri: https://api.steemit.com/
|
370
|
+
body:
|
371
|
+
encoding: UTF-8
|
372
|
+
string: '{"jsonrpc":"2.0","id":46,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
373
|
+
headers:
|
374
|
+
Content-Type:
|
375
|
+
- application/json; charset=utf-8
|
376
|
+
User-Agent:
|
377
|
+
- steem-ruby/0.9.4
|
378
|
+
Accept-Encoding:
|
379
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
380
|
+
Accept:
|
381
|
+
- "*/*"
|
382
|
+
Host:
|
383
|
+
- api.steemit.com
|
384
|
+
Content-Length:
|
385
|
+
- '117'
|
386
|
+
response:
|
387
|
+
status:
|
388
|
+
code: 200
|
389
|
+
message: OK
|
390
|
+
headers:
|
391
|
+
Date:
|
392
|
+
- Sat, 17 Oct 2020 04:14:19 GMT
|
393
|
+
Content-Type:
|
394
|
+
- application/json
|
395
|
+
Transfer-Encoding:
|
396
|
+
- chunked
|
397
|
+
Connection:
|
398
|
+
- keep-alive
|
399
|
+
Server:
|
400
|
+
- nginx
|
401
|
+
X-Jussi-Request-Id:
|
402
|
+
- '000801716041924478'
|
403
|
+
X-Amzn-Trace-Id:
|
404
|
+
- Root=1-5f8a6f9b-2ee6d5404a20abe876c21343
|
405
|
+
Access-Control-Allow-Origin:
|
406
|
+
- "*"
|
407
|
+
Access-Control-Allow-Methods:
|
408
|
+
- GET, POST, OPTIONS
|
409
|
+
Access-Control-Allow-Headers:
|
410
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
411
|
+
Strict-Transport-Security:
|
412
|
+
- max-age=31557600; includeSubDomains; preload
|
413
|
+
Content-Security-Policy:
|
414
|
+
- upgrade-insecure-requests
|
415
|
+
body:
|
416
|
+
encoding: ASCII-8BIT
|
417
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:08:39","current_pays":{"amount":"347","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"56","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:02:54","current_pays":{"amount":"1098","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"6783","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:02:09","current_pays":{"amount":"2990","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"484","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:00:39","current_pays":{"amount":"379","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"2340","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:36:57","current_pays":{"amount":"90","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"555","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:35:21","current_pays":{"amount":"301","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"1858","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:18","current_pays":{"amount":"605","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"3736","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:09","current_pays":{"amount":"1530","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"9449","precision":3,"nai":"@@000000021"}}]},"id":46}'
|
418
|
+
recorded_at: Sat, 17 Oct 2020 04:14:19 GMT
|
419
|
+
- request:
|
420
|
+
method: post
|
421
|
+
uri: https://api.steemitdev.com/
|
422
|
+
body:
|
423
|
+
encoding: UTF-8
|
424
|
+
string: '{"jsonrpc":"2.0","id":83,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
425
|
+
headers:
|
426
|
+
Content-Type:
|
427
|
+
- application/json; charset=utf-8
|
428
|
+
User-Agent:
|
429
|
+
- steem-ruby/0.9.4
|
430
|
+
Accept-Encoding:
|
431
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
432
|
+
Accept:
|
433
|
+
- "*/*"
|
434
|
+
Host:
|
435
|
+
- api.steemitdev.com
|
436
|
+
Content-Length:
|
437
|
+
- '78'
|
438
|
+
response:
|
439
|
+
status:
|
440
|
+
code: 200
|
441
|
+
message: OK
|
442
|
+
headers:
|
443
|
+
Date:
|
444
|
+
- Sat, 17 Oct 2020 04:23:05 GMT
|
445
|
+
Content-Type:
|
446
|
+
- application/json
|
447
|
+
Content-Length:
|
448
|
+
- '78'
|
449
|
+
Connection:
|
450
|
+
- keep-alive
|
451
|
+
Server:
|
452
|
+
- nginx
|
453
|
+
X-Jussi-Request-Id:
|
454
|
+
- '000566299782477739'
|
455
|
+
X-Amzn-Trace-Id:
|
456
|
+
- Root=1-5f8a71a9-5943c56e5c5aecaf36e7d142
|
457
|
+
Access-Control-Allow-Origin:
|
458
|
+
- "*"
|
459
|
+
Access-Control-Allow-Methods:
|
460
|
+
- GET, POST, OPTIONS
|
461
|
+
Access-Control-Allow-Headers:
|
462
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
463
|
+
Strict-Transport-Security:
|
464
|
+
- max-age=31557600; includeSubDomains; preload
|
465
|
+
Content-Security-Policy:
|
466
|
+
- upgrade-insecure-requests
|
467
|
+
body:
|
468
|
+
encoding: UTF-8
|
469
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"limit":1000},"ret":{"trades":[]}},"id":83}'
|
470
|
+
recorded_at: Sat, 17 Oct 2020 04:23:05 GMT
|
471
|
+
- request:
|
472
|
+
method: post
|
473
|
+
uri: https://api.steemitdev.com/
|
474
|
+
body:
|
475
|
+
encoding: UTF-8
|
476
|
+
string: '{"jsonrpc":"2.0","id":84,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
477
|
+
headers:
|
478
|
+
Content-Type:
|
479
|
+
- application/json; charset=utf-8
|
480
|
+
User-Agent:
|
481
|
+
- steem-ruby/0.9.4
|
482
|
+
Accept-Encoding:
|
483
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
484
|
+
Accept:
|
485
|
+
- "*/*"
|
486
|
+
Host:
|
487
|
+
- api.steemitdev.com
|
488
|
+
Content-Length:
|
489
|
+
- '117'
|
490
|
+
response:
|
491
|
+
status:
|
492
|
+
code: 200
|
493
|
+
message: OK
|
494
|
+
headers:
|
495
|
+
Date:
|
496
|
+
- Sat, 17 Oct 2020 04:23:05 GMT
|
497
|
+
Content-Type:
|
498
|
+
- application/json
|
499
|
+
Transfer-Encoding:
|
500
|
+
- chunked
|
501
|
+
Connection:
|
502
|
+
- keep-alive
|
503
|
+
Server:
|
504
|
+
- nginx
|
505
|
+
X-Jussi-Request-Id:
|
506
|
+
- '000793629017153647'
|
507
|
+
X-Amzn-Trace-Id:
|
508
|
+
- Root=1-5f8a71a9-7edd13f207b9f6c86670bfd5
|
509
|
+
Access-Control-Allow-Origin:
|
510
|
+
- "*"
|
511
|
+
Access-Control-Allow-Methods:
|
512
|
+
- GET, POST, OPTIONS
|
513
|
+
Access-Control-Allow-Headers:
|
514
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
515
|
+
Strict-Transport-Security:
|
516
|
+
- max-age=31557600; includeSubDomains; preload
|
517
|
+
Content-Security-Policy:
|
518
|
+
- upgrade-insecure-requests
|
519
|
+
body:
|
520
|
+
encoding: ASCII-8BIT
|
521
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:08:39","current_pays":{"amount":"347","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"56","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:02:54","current_pays":{"amount":"1098","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"6783","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:02:09","current_pays":{"amount":"2990","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"484","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:00:39","current_pays":{"amount":"379","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"2340","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:36:57","current_pays":{"amount":"90","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"555","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:35:21","current_pays":{"amount":"301","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"1858","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:18","current_pays":{"amount":"605","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"3736","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:09","current_pays":{"amount":"1530","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"9449","precision":3,"nai":"@@000000021"}}]},"id":84}'
|
522
|
+
recorded_at: Sat, 17 Oct 2020 04:23:05 GMT
|
523
|
+
- request:
|
524
|
+
method: post
|
525
|
+
uri: https://api.steemitdev.com/
|
526
|
+
body:
|
527
|
+
encoding: UTF-8
|
528
|
+
string: '{"jsonrpc":"2.0","id":20,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
529
|
+
headers:
|
530
|
+
Content-Type:
|
531
|
+
- application/json; charset=utf-8
|
532
|
+
User-Agent:
|
533
|
+
- steem-ruby/0.9.4
|
534
|
+
Accept-Encoding:
|
535
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
536
|
+
Accept:
|
537
|
+
- "*/*"
|
538
|
+
Host:
|
539
|
+
- api.steemitdev.com
|
540
|
+
Content-Length:
|
541
|
+
- '78'
|
542
|
+
response:
|
543
|
+
status:
|
544
|
+
code: 200
|
545
|
+
message: OK
|
546
|
+
headers:
|
547
|
+
Date:
|
548
|
+
- Sat, 17 Oct 2020 04:26:48 GMT
|
549
|
+
Content-Type:
|
550
|
+
- application/json
|
551
|
+
Content-Length:
|
552
|
+
- '78'
|
553
|
+
Connection:
|
554
|
+
- keep-alive
|
555
|
+
Server:
|
556
|
+
- nginx
|
557
|
+
X-Jussi-Request-Id:
|
558
|
+
- '000843426264159814'
|
559
|
+
X-Amzn-Trace-Id:
|
560
|
+
- Root=1-5f8a7288-2890bbf125a3eb8565ffccf6
|
561
|
+
Access-Control-Allow-Origin:
|
562
|
+
- "*"
|
563
|
+
Access-Control-Allow-Methods:
|
564
|
+
- GET, POST, OPTIONS
|
565
|
+
Access-Control-Allow-Headers:
|
566
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
567
|
+
Strict-Transport-Security:
|
568
|
+
- max-age=31557600; includeSubDomains; preload
|
569
|
+
Content-Security-Policy:
|
570
|
+
- upgrade-insecure-requests
|
571
|
+
body:
|
572
|
+
encoding: UTF-8
|
573
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"limit":1000},"ret":{"trades":[]}},"id":20}'
|
574
|
+
recorded_at: Sat, 17 Oct 2020 04:26:48 GMT
|
575
|
+
- request:
|
576
|
+
method: post
|
577
|
+
uri: https://api.steemitdev.com/
|
578
|
+
body:
|
579
|
+
encoding: UTF-8
|
580
|
+
string: '{"jsonrpc":"2.0","id":21,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
581
|
+
headers:
|
582
|
+
Content-Type:
|
583
|
+
- application/json; charset=utf-8
|
584
|
+
User-Agent:
|
585
|
+
- steem-ruby/0.9.4
|
586
|
+
Accept-Encoding:
|
587
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
588
|
+
Accept:
|
589
|
+
- "*/*"
|
590
|
+
Host:
|
591
|
+
- api.steemitdev.com
|
592
|
+
Content-Length:
|
593
|
+
- '117'
|
594
|
+
response:
|
595
|
+
status:
|
596
|
+
code: 200
|
597
|
+
message: OK
|
598
|
+
headers:
|
599
|
+
Date:
|
600
|
+
- Sat, 17 Oct 2020 04:26:48 GMT
|
601
|
+
Content-Type:
|
602
|
+
- application/json
|
603
|
+
Transfer-Encoding:
|
604
|
+
- chunked
|
605
|
+
Connection:
|
606
|
+
- keep-alive
|
607
|
+
Server:
|
608
|
+
- nginx
|
609
|
+
X-Jussi-Request-Id:
|
610
|
+
- '000172661064332548'
|
611
|
+
X-Amzn-Trace-Id:
|
612
|
+
- Root=1-5f8a7288-0f336c2d43d718c22ff14c59
|
613
|
+
Access-Control-Allow-Origin:
|
614
|
+
- "*"
|
615
|
+
Access-Control-Allow-Methods:
|
616
|
+
- GET, POST, OPTIONS
|
617
|
+
Access-Control-Allow-Headers:
|
618
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
619
|
+
Strict-Transport-Security:
|
620
|
+
- max-age=31557600; includeSubDomains; preload
|
621
|
+
Content-Security-Policy:
|
622
|
+
- upgrade-insecure-requests
|
623
|
+
body:
|
624
|
+
encoding: ASCII-8BIT
|
625
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:08:39","current_pays":{"amount":"347","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"56","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:02:54","current_pays":{"amount":"1098","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"6783","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:02:09","current_pays":{"amount":"2990","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"484","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:00:39","current_pays":{"amount":"379","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"2340","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:36:57","current_pays":{"amount":"90","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"555","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:35:21","current_pays":{"amount":"301","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"1858","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:18","current_pays":{"amount":"605","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"3736","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:09","current_pays":{"amount":"1530","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"9449","precision":3,"nai":"@@000000021"}}]},"id":21}'
|
626
|
+
recorded_at: Sat, 17 Oct 2020 04:26:48 GMT
|
627
|
+
- request:
|
628
|
+
method: post
|
629
|
+
uri: https://api.steemitdev.com/
|
630
|
+
body:
|
631
|
+
encoding: UTF-8
|
632
|
+
string: '{"jsonrpc":"2.0","id":64,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
633
|
+
headers:
|
634
|
+
Content-Type:
|
635
|
+
- application/json; charset=utf-8
|
636
|
+
User-Agent:
|
637
|
+
- steem-ruby/0.9.4
|
638
|
+
Accept-Encoding:
|
639
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
640
|
+
Accept:
|
641
|
+
- "*/*"
|
642
|
+
Host:
|
643
|
+
- api.steemitdev.com
|
644
|
+
Content-Length:
|
645
|
+
- '94'
|
646
|
+
response:
|
647
|
+
status:
|
648
|
+
code: 200
|
649
|
+
message: OK
|
650
|
+
headers:
|
651
|
+
Date:
|
652
|
+
- Sat, 17 Oct 2020 04:34:28 GMT
|
653
|
+
Content-Type:
|
654
|
+
- application/json
|
655
|
+
Content-Length:
|
656
|
+
- '78'
|
657
|
+
Connection:
|
658
|
+
- keep-alive
|
659
|
+
Server:
|
660
|
+
- nginx
|
661
|
+
X-Jussi-Request-Id:
|
662
|
+
- '000437384880881592'
|
663
|
+
X-Amzn-Trace-Id:
|
664
|
+
- Root=1-5f8a7454-4afbdea730bd78f533cc91b8
|
665
|
+
Access-Control-Allow-Origin:
|
666
|
+
- "*"
|
667
|
+
Access-Control-Allow-Methods:
|
668
|
+
- GET, POST, OPTIONS
|
669
|
+
Access-Control-Allow-Headers:
|
670
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
671
|
+
Strict-Transport-Security:
|
672
|
+
- max-age=31557600; includeSubDomains; preload
|
673
|
+
Content-Security-Policy:
|
674
|
+
- upgrade-insecure-requests
|
675
|
+
body:
|
676
|
+
encoding: UTF-8
|
677
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"limit":1000},"ret":{"trades":[]}},"id":64}'
|
678
|
+
recorded_at: Sat, 17 Oct 2020 04:34:28 GMT
|
679
|
+
- request:
|
680
|
+
method: post
|
681
|
+
uri: https://api.steemitdev.com/
|
682
|
+
body:
|
683
|
+
encoding: UTF-8
|
684
|
+
string: '{"jsonrpc":"2.0","id":65,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
685
|
+
headers:
|
686
|
+
Content-Type:
|
687
|
+
- application/json; charset=utf-8
|
688
|
+
User-Agent:
|
689
|
+
- steem-ruby/0.9.4
|
690
|
+
Accept-Encoding:
|
691
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
692
|
+
Accept:
|
693
|
+
- "*/*"
|
694
|
+
Host:
|
695
|
+
- api.steemitdev.com
|
696
|
+
Content-Length:
|
697
|
+
- '117'
|
698
|
+
response:
|
699
|
+
status:
|
700
|
+
code: 200
|
701
|
+
message: OK
|
702
|
+
headers:
|
703
|
+
Date:
|
704
|
+
- Sat, 17 Oct 2020 04:34:28 GMT
|
705
|
+
Content-Type:
|
706
|
+
- application/json
|
707
|
+
Transfer-Encoding:
|
708
|
+
- chunked
|
709
|
+
Connection:
|
710
|
+
- keep-alive
|
711
|
+
Server:
|
712
|
+
- nginx
|
713
|
+
X-Jussi-Request-Id:
|
714
|
+
- '000802382979565315'
|
715
|
+
X-Amzn-Trace-Id:
|
716
|
+
- Root=1-5f8a7454-232f2dd058b38ff3450878fd
|
717
|
+
Access-Control-Allow-Origin:
|
718
|
+
- "*"
|
719
|
+
Access-Control-Allow-Methods:
|
720
|
+
- GET, POST, OPTIONS
|
721
|
+
Access-Control-Allow-Headers:
|
722
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
723
|
+
Strict-Transport-Security:
|
724
|
+
- max-age=31557600; includeSubDomains; preload
|
725
|
+
Content-Security-Policy:
|
726
|
+
- upgrade-insecure-requests
|
727
|
+
body:
|
728
|
+
encoding: ASCII-8BIT
|
729
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:30:18","current_pays":{"amount":"5001","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"31063","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:08:39","current_pays":{"amount":"347","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"56","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:02:54","current_pays":{"amount":"1098","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"6783","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:02:09","current_pays":{"amount":"2990","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"484","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:00:39","current_pays":{"amount":"379","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"2340","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:36:57","current_pays":{"amount":"90","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"555","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:35:21","current_pays":{"amount":"301","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"1858","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:18","current_pays":{"amount":"605","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"3736","precision":3,"nai":"@@000000021"}}]},"id":65}'
|
730
|
+
recorded_at: Sat, 17 Oct 2020 04:34:28 GMT
|
731
|
+
- request:
|
732
|
+
method: post
|
733
|
+
uri: https://api.steemitdev.com/
|
734
|
+
body:
|
735
|
+
encoding: UTF-8
|
736
|
+
string: '{"jsonrpc":"2.0","id":13,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
737
|
+
headers:
|
738
|
+
Content-Type:
|
739
|
+
- application/json; charset=utf-8
|
740
|
+
User-Agent:
|
741
|
+
- steem-ruby/0.9.4
|
742
|
+
Accept-Encoding:
|
743
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
744
|
+
Accept:
|
745
|
+
- "*/*"
|
746
|
+
Host:
|
747
|
+
- api.steemitdev.com
|
748
|
+
Content-Length:
|
749
|
+
- '93'
|
750
|
+
response:
|
751
|
+
status:
|
752
|
+
code: 200
|
753
|
+
message: OK
|
754
|
+
headers:
|
755
|
+
Date:
|
756
|
+
- Sat, 17 Oct 2020 04:39:15 GMT
|
757
|
+
Content-Type:
|
758
|
+
- application/json
|
759
|
+
Content-Length:
|
760
|
+
- '78'
|
761
|
+
Connection:
|
762
|
+
- keep-alive
|
763
|
+
Server:
|
764
|
+
- nginx
|
765
|
+
X-Jussi-Request-Id:
|
766
|
+
- '000546560237510401'
|
767
|
+
X-Amzn-Trace-Id:
|
768
|
+
- Root=1-5f8a7573-7400b1513f93d0e07099709f
|
769
|
+
Access-Control-Allow-Origin:
|
770
|
+
- "*"
|
771
|
+
Access-Control-Allow-Methods:
|
772
|
+
- GET, POST, OPTIONS
|
773
|
+
Access-Control-Allow-Headers:
|
774
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
775
|
+
Strict-Transport-Security:
|
776
|
+
- max-age=31557600; includeSubDomains; preload
|
777
|
+
Content-Security-Policy:
|
778
|
+
- upgrade-insecure-requests
|
779
|
+
body:
|
780
|
+
encoding: UTF-8
|
781
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"limit":1000},"ret":{"trades":[]}},"id":13}'
|
782
|
+
recorded_at: Sat, 17 Oct 2020 04:39:15 GMT
|
783
|
+
- request:
|
784
|
+
method: post
|
785
|
+
uri: https://api.steemitdev.com/
|
786
|
+
body:
|
787
|
+
encoding: UTF-8
|
788
|
+
string: '{"jsonrpc":"2.0","id":14,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
789
|
+
headers:
|
790
|
+
Content-Type:
|
791
|
+
- application/json; charset=utf-8
|
792
|
+
User-Agent:
|
793
|
+
- steem-ruby/0.9.4
|
794
|
+
Accept-Encoding:
|
795
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
796
|
+
Accept:
|
797
|
+
- "*/*"
|
798
|
+
Host:
|
799
|
+
- api.steemitdev.com
|
800
|
+
Content-Length:
|
801
|
+
- '117'
|
802
|
+
response:
|
803
|
+
status:
|
804
|
+
code: 200
|
805
|
+
message: OK
|
806
|
+
headers:
|
807
|
+
Date:
|
808
|
+
- Sat, 17 Oct 2020 04:39:16 GMT
|
809
|
+
Content-Type:
|
810
|
+
- application/json
|
811
|
+
Transfer-Encoding:
|
812
|
+
- chunked
|
813
|
+
Connection:
|
814
|
+
- keep-alive
|
815
|
+
Server:
|
816
|
+
- nginx
|
817
|
+
X-Jussi-Request-Id:
|
818
|
+
- '001118989446533275'
|
819
|
+
X-Amzn-Trace-Id:
|
820
|
+
- Root=1-5f8a7574-49999624120284375200d2ea
|
821
|
+
Access-Control-Allow-Origin:
|
822
|
+
- "*"
|
823
|
+
Access-Control-Allow-Methods:
|
824
|
+
- GET, POST, OPTIONS
|
825
|
+
Access-Control-Allow-Headers:
|
826
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
827
|
+
Strict-Transport-Security:
|
828
|
+
- max-age=31557600; includeSubDomains; preload
|
829
|
+
Content-Security-Policy:
|
830
|
+
- upgrade-insecure-requests
|
831
|
+
body:
|
832
|
+
encoding: ASCII-8BIT
|
833
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:30:18","current_pays":{"amount":"5001","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"31063","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:08:39","current_pays":{"amount":"347","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"56","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:02:54","current_pays":{"amount":"1098","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"6783","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:02:09","current_pays":{"amount":"2990","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"484","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:00:39","current_pays":{"amount":"379","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"2340","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:36:57","current_pays":{"amount":"90","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"555","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:35:21","current_pays":{"amount":"301","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"1858","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T03:34:18","current_pays":{"amount":"605","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"3736","precision":3,"nai":"@@000000021"}}]},"id":14}'
|
834
|
+
recorded_at: Sat, 17 Oct 2020 04:39:16 GMT
|
835
|
+
- request:
|
836
|
+
method: post
|
837
|
+
uri: https://api.steemitdev.com/
|
838
|
+
body:
|
839
|
+
encoding: UTF-8
|
840
|
+
string: '{"jsonrpc":"2.0","id":100,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
841
|
+
headers:
|
842
|
+
Content-Type:
|
843
|
+
- application/json; charset=utf-8
|
844
|
+
User-Agent:
|
845
|
+
- steem-ruby/0.9.4
|
846
|
+
Accept-Encoding:
|
847
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
848
|
+
Accept:
|
849
|
+
- "*/*"
|
850
|
+
Host:
|
851
|
+
- api.steemitdev.com
|
852
|
+
Content-Length:
|
853
|
+
- '86'
|
854
|
+
response:
|
855
|
+
status:
|
856
|
+
code: 200
|
857
|
+
message: OK
|
858
|
+
headers:
|
859
|
+
Date:
|
860
|
+
- Sat, 17 Oct 2020 04:56:48 GMT
|
861
|
+
Content-Type:
|
862
|
+
- application/json
|
863
|
+
Content-Length:
|
864
|
+
- '79'
|
865
|
+
Connection:
|
866
|
+
- keep-alive
|
867
|
+
Server:
|
868
|
+
- nginx
|
869
|
+
X-Jussi-Request-Id:
|
870
|
+
- '000719593045117362'
|
871
|
+
X-Amzn-Trace-Id:
|
872
|
+
- Root=1-5f8a7990-38f8356a600db0640765abf8
|
873
|
+
Access-Control-Allow-Origin:
|
874
|
+
- "*"
|
875
|
+
Access-Control-Allow-Methods:
|
876
|
+
- GET, POST, OPTIONS
|
877
|
+
Access-Control-Allow-Headers:
|
878
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
879
|
+
Strict-Transport-Security:
|
880
|
+
- max-age=31557600; includeSubDomains; preload
|
881
|
+
Content-Security-Policy:
|
882
|
+
- upgrade-insecure-requests
|
883
|
+
body:
|
884
|
+
encoding: UTF-8
|
885
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"limit":1000},"ret":{"trades":[]}},"id":100}'
|
886
|
+
recorded_at: Sat, 17 Oct 2020 04:56:48 GMT
|
887
|
+
- request:
|
888
|
+
method: post
|
889
|
+
uri: https://api.steemitdev.com/
|
890
|
+
body:
|
891
|
+
encoding: UTF-8
|
892
|
+
string: '{"jsonrpc":"2.0","id":101,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
893
|
+
headers:
|
894
|
+
Content-Type:
|
895
|
+
- application/json; charset=utf-8
|
896
|
+
User-Agent:
|
897
|
+
- steem-ruby/0.9.4
|
898
|
+
Accept-Encoding:
|
899
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
900
|
+
Accept:
|
901
|
+
- "*/*"
|
902
|
+
Host:
|
903
|
+
- api.steemitdev.com
|
904
|
+
Content-Length:
|
905
|
+
- '118'
|
906
|
+
response:
|
907
|
+
status:
|
908
|
+
code: 200
|
909
|
+
message: OK
|
910
|
+
headers:
|
911
|
+
Date:
|
912
|
+
- Sat, 17 Oct 2020 04:56:48 GMT
|
913
|
+
Content-Type:
|
914
|
+
- application/json
|
915
|
+
Transfer-Encoding:
|
916
|
+
- chunked
|
917
|
+
Connection:
|
918
|
+
- keep-alive
|
919
|
+
Server:
|
920
|
+
- nginx
|
921
|
+
X-Jussi-Request-Id:
|
922
|
+
- '001081284916715380'
|
923
|
+
X-Amzn-Trace-Id:
|
924
|
+
- Root=1-5f8a7990-1bcbae3d6381321d1bc6f6b4
|
925
|
+
Access-Control-Allow-Origin:
|
926
|
+
- "*"
|
927
|
+
Access-Control-Allow-Methods:
|
928
|
+
- GET, POST, OPTIONS
|
929
|
+
Access-Control-Allow-Headers:
|
930
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
931
|
+
Strict-Transport-Security:
|
932
|
+
- max-age=31557600; includeSubDomains; preload
|
933
|
+
Content-Security-Policy:
|
934
|
+
- upgrade-insecure-requests
|
935
|
+
body:
|
936
|
+
encoding: ASCII-8BIT
|
937
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:52:51","current_pays":{"amount":"57","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"356","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:52:12","current_pays":{"amount":"31091","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"5001","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:52:12","current_pays":{"amount":"30096","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"4841","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:52:12","current_pays":{"amount":"10766","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1732","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:50:42","current_pays":{"amount":"1208","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"7503","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:39:54","current_pays":{"amount":"356","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"57","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:30:18","current_pays":{"amount":"5001","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"31063","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:08:39","current_pays":{"amount":"347","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"56","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}}]},"id":101}'
|
938
|
+
recorded_at: Sat, 17 Oct 2020 04:56:49 GMT
|
939
|
+
- request:
|
940
|
+
method: post
|
941
|
+
uri: https://api.steemitdev.com/
|
942
|
+
body:
|
943
|
+
encoding: UTF-8
|
944
|
+
string: '{"jsonrpc":"2.0","id":57,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
945
|
+
headers:
|
946
|
+
Content-Type:
|
947
|
+
- application/json; charset=utf-8
|
948
|
+
User-Agent:
|
949
|
+
- steem-ruby/0.9.4
|
950
|
+
Accept-Encoding:
|
951
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
952
|
+
Accept:
|
953
|
+
- "*/*"
|
954
|
+
Host:
|
955
|
+
- api.steemit.com
|
956
|
+
Content-Length:
|
957
|
+
- '94'
|
958
|
+
response:
|
959
|
+
status:
|
960
|
+
code: 200
|
961
|
+
message: OK
|
962
|
+
headers:
|
963
|
+
Date:
|
964
|
+
- Sat, 17 Oct 2020 05:03:23 GMT
|
965
|
+
Content-Type:
|
966
|
+
- application/json
|
967
|
+
Content-Length:
|
968
|
+
- '78'
|
969
|
+
Connection:
|
970
|
+
- keep-alive
|
971
|
+
Server:
|
972
|
+
- nginx
|
973
|
+
X-Jussi-Request-Id:
|
974
|
+
- '001071711788549593'
|
975
|
+
X-Amzn-Trace-Id:
|
976
|
+
- Root=1-5f8a7b1b-0fcaeede01b520677da5466a
|
977
|
+
Access-Control-Allow-Origin:
|
978
|
+
- "*"
|
979
|
+
Access-Control-Allow-Methods:
|
980
|
+
- GET, POST, OPTIONS
|
981
|
+
Access-Control-Allow-Headers:
|
982
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
983
|
+
Strict-Transport-Security:
|
984
|
+
- max-age=31557600; includeSubDomains; preload
|
985
|
+
Content-Security-Policy:
|
986
|
+
- upgrade-insecure-requests
|
987
|
+
body:
|
988
|
+
encoding: UTF-8
|
989
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"limit":1000},"ret":{"trades":[]}},"id":57}'
|
990
|
+
recorded_at: Sat, 17 Oct 2020 05:03:23 GMT
|
991
|
+
- request:
|
992
|
+
method: post
|
993
|
+
uri: https://api.steemitdev.com/
|
994
|
+
body:
|
995
|
+
encoding: UTF-8
|
996
|
+
string: '{"jsonrpc":"2.0","id":58,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
997
|
+
headers:
|
998
|
+
Content-Type:
|
999
|
+
- application/json; charset=utf-8
|
1000
|
+
User-Agent:
|
1001
|
+
- steem-ruby/0.9.4
|
1002
|
+
Accept-Encoding:
|
1003
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1004
|
+
Accept:
|
1005
|
+
- "*/*"
|
1006
|
+
Host:
|
1007
|
+
- api.steemit.com
|
1008
|
+
Content-Length:
|
1009
|
+
- '117'
|
1010
|
+
response:
|
1011
|
+
status:
|
1012
|
+
code: 200
|
1013
|
+
message: OK
|
1014
|
+
headers:
|
1015
|
+
Date:
|
1016
|
+
- Sat, 17 Oct 2020 05:03:23 GMT
|
1017
|
+
Content-Type:
|
1018
|
+
- application/json
|
1019
|
+
Transfer-Encoding:
|
1020
|
+
- chunked
|
1021
|
+
Connection:
|
1022
|
+
- keep-alive
|
1023
|
+
Server:
|
1024
|
+
- nginx
|
1025
|
+
X-Jussi-Request-Id:
|
1026
|
+
- '000613529214150797'
|
1027
|
+
X-Amzn-Trace-Id:
|
1028
|
+
- Root=1-5f8a7b1b-0b01faf671d0d8460e0979dd
|
1029
|
+
Access-Control-Allow-Origin:
|
1030
|
+
- "*"
|
1031
|
+
Access-Control-Allow-Methods:
|
1032
|
+
- GET, POST, OPTIONS
|
1033
|
+
Access-Control-Allow-Headers:
|
1034
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1035
|
+
Strict-Transport-Security:
|
1036
|
+
- max-age=31557600; includeSubDomains; preload
|
1037
|
+
Content-Security-Policy:
|
1038
|
+
- upgrade-insecure-requests
|
1039
|
+
body:
|
1040
|
+
encoding: ASCII-8BIT
|
1041
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-10-17T04:52:51","current_pays":{"amount":"57","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"356","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:52:12","current_pays":{"amount":"31091","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"5001","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:52:12","current_pays":{"amount":"30096","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"4841","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:52:12","current_pays":{"amount":"10766","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1732","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:50:42","current_pays":{"amount":"1208","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"7503","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:39:54","current_pays":{"amount":"356","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"57","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:30:18","current_pays":{"amount":"5001","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"31063","precision":3,"nai":"@@000000021"}},{"date":"2020-10-17T04:08:39","current_pays":{"amount":"347","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"56","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"9","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"1","precision":3,"nai":"@@000000013"}},{"date":"2020-10-17T04:03:18","current_pays":{"amount":"550","precision":3,"nai":"@@000000021"},"open_pays":{"amount":"89","precision":3,"nai":"@@000000013"}}]},"id":58}'
|
1042
|
+
recorded_at: Sat, 17 Oct 2020 05:03:23 GMT
|
1043
|
+
- request:
|
1044
|
+
method: post
|
1045
|
+
uri: https://api.steemitdev.com/
|
1046
|
+
body:
|
1047
|
+
encoding: UTF-8
|
1048
|
+
string: '{"jsonrpc":"2.0","id":62,"method":"jsonrpc.get_signature","params":{"method":"market_history_api.get_recent_trades"}}'
|
1049
|
+
headers:
|
1050
|
+
Content-Type:
|
1051
|
+
- application/json; charset=utf-8
|
1052
|
+
User-Agent:
|
1053
|
+
- steem-ruby/0.9.5
|
1054
|
+
Accept-Encoding:
|
1055
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1056
|
+
Accept:
|
1057
|
+
- "*/*"
|
1058
|
+
Host:
|
1059
|
+
- api.steemitdev.com
|
1060
|
+
Content-Length:
|
1061
|
+
- '85'
|
1062
|
+
response:
|
1063
|
+
status:
|
1064
|
+
code: 200
|
1065
|
+
message: OK
|
1066
|
+
headers:
|
1067
|
+
Date:
|
1068
|
+
- Fri, 06 Nov 2020 21:13:45 GMT
|
1069
|
+
Content-Type:
|
1070
|
+
- application/json
|
1071
|
+
Content-Length:
|
1072
|
+
- '78'
|
1073
|
+
Connection:
|
1074
|
+
- keep-alive
|
1075
|
+
Server:
|
1076
|
+
- nginx
|
1077
|
+
X-Jussi-Request-Id:
|
1078
|
+
- '000004058292735949'
|
1079
|
+
X-Amzn-Trace-Id:
|
1080
|
+
- Root=1-5fa5bc88-2d1be92d717ff9196795d406
|
1081
|
+
Access-Control-Allow-Origin:
|
1082
|
+
- "*"
|
1083
|
+
Access-Control-Allow-Methods:
|
1084
|
+
- GET, POST, OPTIONS
|
1085
|
+
Access-Control-Allow-Headers:
|
1086
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1087
|
+
Strict-Transport-Security:
|
1088
|
+
- max-age=31557600; includeSubDomains; preload
|
1089
|
+
Content-Security-Policy:
|
1090
|
+
- upgrade-insecure-requests
|
1091
|
+
body:
|
1092
|
+
encoding: UTF-8
|
1093
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"limit":1000},"ret":{"trades":[]}},"id":62}'
|
1094
|
+
recorded_at: Fri, 06 Nov 2020 21:13:45 GMT
|
1095
|
+
- request:
|
1096
|
+
method: post
|
1097
|
+
uri: https://api.steemitdev.com/
|
1098
|
+
body:
|
1099
|
+
encoding: UTF-8
|
1100
|
+
string: '{"jsonrpc":"2.0","id":63,"method":"market_history_api.get_recent_trades","params":{"limit":10}}'
|
1101
|
+
headers:
|
1102
|
+
Content-Type:
|
1103
|
+
- application/json; charset=utf-8
|
1104
|
+
User-Agent:
|
1105
|
+
- steem-ruby/0.9.5
|
1106
|
+
Accept-Encoding:
|
1107
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1108
|
+
Accept:
|
1109
|
+
- "*/*"
|
1110
|
+
Host:
|
1111
|
+
- api.steemitdev.com
|
1112
|
+
Content-Length:
|
1113
|
+
- '117'
|
1114
|
+
response:
|
1115
|
+
status:
|
1116
|
+
code: 200
|
1117
|
+
message: OK
|
1118
|
+
headers:
|
1119
|
+
Date:
|
1120
|
+
- Fri, 06 Nov 2020 21:13:46 GMT
|
1121
|
+
Content-Type:
|
1122
|
+
- application/json
|
1123
|
+
Transfer-Encoding:
|
1124
|
+
- chunked
|
1125
|
+
Connection:
|
1126
|
+
- keep-alive
|
1127
|
+
Server:
|
1128
|
+
- nginx
|
1129
|
+
X-Jussi-Request-Id:
|
1130
|
+
- '000066622812222917'
|
1131
|
+
X-Amzn-Trace-Id:
|
1132
|
+
- Root=1-5fa5bc8a-6f6524aa39061b0329497ea1
|
1133
|
+
Access-Control-Allow-Origin:
|
1134
|
+
- "*"
|
1135
|
+
Access-Control-Allow-Methods:
|
1136
|
+
- GET, POST, OPTIONS
|
1137
|
+
Access-Control-Allow-Headers:
|
1138
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1139
|
+
Strict-Transport-Security:
|
1140
|
+
- max-age=31557600; includeSubDomains; preload
|
1141
|
+
Content-Security-Policy:
|
1142
|
+
- upgrade-insecure-requests
|
1143
|
+
body:
|
1144
|
+
encoding: ASCII-8BIT
|
1145
|
+
string: '{"jsonrpc":"2.0","result":{"trades":[{"date":"2020-11-06T21:10:27","current_pays":{"amount":"7","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"46","precision":3,"nai":"@@000000021"}},{"date":"2020-11-06T21:07:27","current_pays":{"amount":"1","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"6","precision":3,"nai":"@@000000021"}},{"date":"2020-11-06T21:00:18","current_pays":{"amount":"5001","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"32959","precision":3,"nai":"@@000000021"}},{"date":"2020-11-06T20:58:27","current_pays":{"amount":"2","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"13","precision":3,"nai":"@@000000021"}},{"date":"2020-11-06T20:55:12","current_pays":{"amount":"5001","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"32959","precision":3,"nai":"@@000000021"}},{"date":"2020-11-06T20:52:36","current_pays":{"amount":"247","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"1627","precision":3,"nai":"@@000000021"}},{"date":"2020-11-06T20:52:36","current_pays":{"amount":"2308","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"15211","precision":3,"nai":"@@000000021"}},{"date":"2020-11-06T20:52:36","current_pays":{"amount":"2308","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"15211","precision":3,"nai":"@@000000021"}},{"date":"2020-11-06T20:52:36","current_pays":{"amount":"2308","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"15211","precision":3,"nai":"@@000000021"}},{"date":"2020-11-06T20:52:33","current_pays":{"amount":"2308","precision":3,"nai":"@@000000013"},"open_pays":{"amount":"15211","precision":3,"nai":"@@000000021"}}]},"id":63}'
|
1146
|
+
recorded_at: Fri, 06 Nov 2020 21:13:46 GMT
|
1147
|
+
recorded_with: VCR 6.0.0
|