radiator 0.4.4 → 0.4.8.pre.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +90 -6
- data/Rakefile +50 -20
- data/lib/radiator.rb +7 -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 +147 -0
- data/lib/radiator/ssc/blockchain.rb +57 -0
- data/lib/radiator/ssc/contracts.rb +88 -0
- data/lib/radiator/ssc/stream.rb +62 -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 -12
- 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 +525 -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 +13254 -0
- data/test/fixtures/vcr_cassettes/base_per_debt.yml +4946 -0
- data/test/fixtures/vcr_cassettes/base_per_mvest.yml +3969 -0
- data/test/fixtures/vcr_cassettes/block_time.yml +3322 -0
- data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +1186 -0
- data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +13297 -0
- data/test/fixtures/vcr_cassettes/expiration_initialize.yml +3428 -0
- data/test/fixtures/vcr_cassettes/find_account.yml +3681 -0
- data/test/fixtures/vcr_cassettes/find_block.yml +3589 -0
- data/test/fixtures/vcr_cassettes/find_comment.yml +11464 -0
- data/test/fixtures/vcr_cassettes/follow_api_jsonrpc.yml +52 -0
- data/test/fixtures/vcr_cassettes/get_account_count.yml +575 -0
- data/test/fixtures/vcr_cassettes/get_account_references.yml +608 -0
- data/test/fixtures/vcr_cassettes/get_accounts.yml +674 -0
- data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +608 -0
- data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +661 -0
- data/test/fixtures/vcr_cassettes/get_feed_history.yml +1106 -0
- data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +577 -0
- data/test/fixtures/vcr_cassettes/get_key_references.yml +987 -0
- data/test/fixtures/vcr_cassettes/get_market_history.yml +1043 -0
- data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +1043 -0
- data/test/fixtures/vcr_cassettes/get_order_book.yml +1091 -0
- data/test/fixtures/vcr_cassettes/get_recent_trades.yml +1043 -0
- data/test/fixtures/vcr_cassettes/get_ticker.yml +1047 -0
- data/test/fixtures/vcr_cassettes/get_trade_history.yml +1049 -0
- data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +523 -0
- data/test/fixtures/vcr_cassettes/get_volume.yml +1051 -0
- data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +575 -0
- data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +523 -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 +3627 -0
- data/test/fixtures/vcr_cassettes/recover_transaction.yml +1099 -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 +8253 -0
- data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +3176 -0
- data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +151 -0
- data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +3343 -0
- data/test/fixtures/vcr_cassettes/valid_chains.yml +3124 -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 +206 -73
- 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,608 @@
|
|
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":59,"method":"condenser_api.get_accounts","params":[]}'
|
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
|
+
- '98'
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Date:
|
28
|
+
- Sat, 17 Oct 2020 04:07:03 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Content-Length:
|
32
|
+
- '429'
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
Server:
|
36
|
+
- nginx
|
37
|
+
X-Jussi-Request-Id:
|
38
|
+
- '001027489790693843'
|
39
|
+
X-Amzn-Trace-Id:
|
40
|
+
- Root=1-5f8a6de7-391f60241e94dfb04e2e0d36
|
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","error":{"code":-32003,"message":"Assert Exception:args.size()
|
54
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
55
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:07:03"},"format":"args.size()
|
56
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":59}'
|
57
|
+
recorded_at: Sat, 17 Oct 2020 04:07:03 GMT
|
58
|
+
- request:
|
59
|
+
method: post
|
60
|
+
uri: https://api.steemit.com/
|
61
|
+
body:
|
62
|
+
encoding: UTF-8
|
63
|
+
string: '{"jsonrpc":"2.0","id":48,"method":"condenser_api.get_accounts","params":[]}'
|
64
|
+
headers:
|
65
|
+
Content-Type:
|
66
|
+
- application/json; charset=utf-8
|
67
|
+
User-Agent:
|
68
|
+
- steem-ruby/0.9.4
|
69
|
+
Accept-Encoding:
|
70
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
71
|
+
Accept:
|
72
|
+
- "*/*"
|
73
|
+
Host:
|
74
|
+
- api.steemit.com
|
75
|
+
Content-Length:
|
76
|
+
- '78'
|
77
|
+
response:
|
78
|
+
status:
|
79
|
+
code: 200
|
80
|
+
message: OK
|
81
|
+
headers:
|
82
|
+
Date:
|
83
|
+
- Sat, 17 Oct 2020 04:09:07 GMT
|
84
|
+
Content-Type:
|
85
|
+
- application/json
|
86
|
+
Content-Length:
|
87
|
+
- '429'
|
88
|
+
Connection:
|
89
|
+
- keep-alive
|
90
|
+
Server:
|
91
|
+
- nginx
|
92
|
+
X-Jussi-Request-Id:
|
93
|
+
- '000998818508521452'
|
94
|
+
X-Amzn-Trace-Id:
|
95
|
+
- Root=1-5f8a6e63-6377e30b403ac31c11bb5eeb
|
96
|
+
Access-Control-Allow-Origin:
|
97
|
+
- "*"
|
98
|
+
Access-Control-Allow-Methods:
|
99
|
+
- GET, POST, OPTIONS
|
100
|
+
Access-Control-Allow-Headers:
|
101
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
102
|
+
Strict-Transport-Security:
|
103
|
+
- max-age=31557600; includeSubDomains; preload
|
104
|
+
Content-Security-Policy:
|
105
|
+
- upgrade-insecure-requests
|
106
|
+
body:
|
107
|
+
encoding: UTF-8
|
108
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
109
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
110
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:09:07"},"format":"args.size()
|
111
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":48}'
|
112
|
+
recorded_at: Sat, 17 Oct 2020 04:09:07 GMT
|
113
|
+
- request:
|
114
|
+
method: post
|
115
|
+
uri: https://api.steemit.com/
|
116
|
+
body:
|
117
|
+
encoding: UTF-8
|
118
|
+
string: '{"jsonrpc":"2.0","id":128,"method":"condenser_api.get_accounts","params":[]}'
|
119
|
+
headers:
|
120
|
+
Content-Type:
|
121
|
+
- application/json; charset=utf-8
|
122
|
+
User-Agent:
|
123
|
+
- steem-ruby/0.9.4
|
124
|
+
Accept-Encoding:
|
125
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
126
|
+
Accept:
|
127
|
+
- "*/*"
|
128
|
+
Host:
|
129
|
+
- api.steemit.com
|
130
|
+
Content-Length:
|
131
|
+
- '88'
|
132
|
+
response:
|
133
|
+
status:
|
134
|
+
code: 200
|
135
|
+
message: OK
|
136
|
+
headers:
|
137
|
+
Date:
|
138
|
+
- Sat, 17 Oct 2020 04:13:52 GMT
|
139
|
+
Content-Type:
|
140
|
+
- application/json
|
141
|
+
Content-Length:
|
142
|
+
- '430'
|
143
|
+
Connection:
|
144
|
+
- keep-alive
|
145
|
+
Server:
|
146
|
+
- nginx
|
147
|
+
X-Jussi-Request-Id:
|
148
|
+
- '000809733189754705'
|
149
|
+
X-Amzn-Trace-Id:
|
150
|
+
- Root=1-5f8a6f80-343c313766fedefb3dba4b3a
|
151
|
+
Access-Control-Allow-Origin:
|
152
|
+
- "*"
|
153
|
+
Access-Control-Allow-Methods:
|
154
|
+
- GET, POST, OPTIONS
|
155
|
+
Access-Control-Allow-Headers:
|
156
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
157
|
+
Strict-Transport-Security:
|
158
|
+
- max-age=31557600; includeSubDomains; preload
|
159
|
+
Content-Security-Policy:
|
160
|
+
- upgrade-insecure-requests
|
161
|
+
body:
|
162
|
+
encoding: UTF-8
|
163
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
164
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
165
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:13:52"},"format":"args.size()
|
166
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":128}'
|
167
|
+
recorded_at: Sat, 17 Oct 2020 04:13:53 GMT
|
168
|
+
- request:
|
169
|
+
method: post
|
170
|
+
uri: https://api.steemit.com/
|
171
|
+
body:
|
172
|
+
encoding: UTF-8
|
173
|
+
string: '{"jsonrpc":"2.0","id":125,"method":"condenser_api.get_accounts","params":[]}'
|
174
|
+
headers:
|
175
|
+
Content-Type:
|
176
|
+
- application/json; charset=utf-8
|
177
|
+
User-Agent:
|
178
|
+
- steem-ruby/0.9.4
|
179
|
+
Accept-Encoding:
|
180
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
181
|
+
Accept:
|
182
|
+
- "*/*"
|
183
|
+
Host:
|
184
|
+
- api.steemit.com
|
185
|
+
Content-Length:
|
186
|
+
- '93'
|
187
|
+
response:
|
188
|
+
status:
|
189
|
+
code: 200
|
190
|
+
message: OK
|
191
|
+
headers:
|
192
|
+
Date:
|
193
|
+
- Sat, 17 Oct 2020 04:14:48 GMT
|
194
|
+
Content-Type:
|
195
|
+
- application/json
|
196
|
+
Content-Length:
|
197
|
+
- '430'
|
198
|
+
Connection:
|
199
|
+
- keep-alive
|
200
|
+
Server:
|
201
|
+
- nginx
|
202
|
+
X-Jussi-Request-Id:
|
203
|
+
- '000265031629220839'
|
204
|
+
X-Amzn-Trace-Id:
|
205
|
+
- Root=1-5f8a6fb8-6a8cc29f702e047b58e410a7
|
206
|
+
Access-Control-Allow-Origin:
|
207
|
+
- "*"
|
208
|
+
Access-Control-Allow-Methods:
|
209
|
+
- GET, POST, OPTIONS
|
210
|
+
Access-Control-Allow-Headers:
|
211
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
212
|
+
Strict-Transport-Security:
|
213
|
+
- max-age=31557600; includeSubDomains; preload
|
214
|
+
Content-Security-Policy:
|
215
|
+
- upgrade-insecure-requests
|
216
|
+
body:
|
217
|
+
encoding: UTF-8
|
218
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
219
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
220
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:14:48"},"format":"args.size()
|
221
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":125}'
|
222
|
+
recorded_at: Sat, 17 Oct 2020 04:14:48 GMT
|
223
|
+
- request:
|
224
|
+
method: post
|
225
|
+
uri: https://api.steemit.com/
|
226
|
+
body:
|
227
|
+
encoding: UTF-8
|
228
|
+
string: '{"jsonrpc":"2.0","id":23,"method":"condenser_api.get_accounts","params":[]}'
|
229
|
+
headers:
|
230
|
+
Content-Type:
|
231
|
+
- application/json; charset=utf-8
|
232
|
+
User-Agent:
|
233
|
+
- steem-ruby/0.9.4
|
234
|
+
Accept-Encoding:
|
235
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
236
|
+
Accept:
|
237
|
+
- "*/*"
|
238
|
+
Host:
|
239
|
+
- api.steemit.com
|
240
|
+
Content-Length:
|
241
|
+
- '80'
|
242
|
+
response:
|
243
|
+
status:
|
244
|
+
code: 200
|
245
|
+
message: OK
|
246
|
+
headers:
|
247
|
+
Date:
|
248
|
+
- Sat, 17 Oct 2020 04:18:03 GMT
|
249
|
+
Content-Type:
|
250
|
+
- application/json
|
251
|
+
Content-Length:
|
252
|
+
- '429'
|
253
|
+
Connection:
|
254
|
+
- keep-alive
|
255
|
+
Server:
|
256
|
+
- nginx
|
257
|
+
X-Jussi-Request-Id:
|
258
|
+
- '000293137618557892'
|
259
|
+
X-Amzn-Trace-Id:
|
260
|
+
- Root=1-5f8a707b-2b53c6b210636fe81b0aafda
|
261
|
+
Access-Control-Allow-Origin:
|
262
|
+
- "*"
|
263
|
+
Access-Control-Allow-Methods:
|
264
|
+
- GET, POST, OPTIONS
|
265
|
+
Access-Control-Allow-Headers:
|
266
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
267
|
+
Strict-Transport-Security:
|
268
|
+
- max-age=31557600; includeSubDomains; preload
|
269
|
+
Content-Security-Policy:
|
270
|
+
- upgrade-insecure-requests
|
271
|
+
body:
|
272
|
+
encoding: UTF-8
|
273
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
274
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
275
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:18:03"},"format":"args.size()
|
276
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":23}'
|
277
|
+
recorded_at: Sat, 17 Oct 2020 04:18:03 GMT
|
278
|
+
- request:
|
279
|
+
method: post
|
280
|
+
uri: https://api.steemitdev.com/
|
281
|
+
body:
|
282
|
+
encoding: UTF-8
|
283
|
+
string: '{"jsonrpc":"2.0","id":98,"method":"condenser_api.get_accounts","params":[]}'
|
284
|
+
headers:
|
285
|
+
Content-Type:
|
286
|
+
- application/json; charset=utf-8
|
287
|
+
User-Agent:
|
288
|
+
- steem-ruby/0.9.4
|
289
|
+
Accept-Encoding:
|
290
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
291
|
+
Accept:
|
292
|
+
- "*/*"
|
293
|
+
Host:
|
294
|
+
- api.steemitdev.com
|
295
|
+
Content-Length:
|
296
|
+
- '98'
|
297
|
+
response:
|
298
|
+
status:
|
299
|
+
code: 200
|
300
|
+
message: OK
|
301
|
+
headers:
|
302
|
+
Date:
|
303
|
+
- Sat, 17 Oct 2020 04:23:13 GMT
|
304
|
+
Content-Type:
|
305
|
+
- application/json
|
306
|
+
Content-Length:
|
307
|
+
- '429'
|
308
|
+
Connection:
|
309
|
+
- keep-alive
|
310
|
+
Server:
|
311
|
+
- nginx
|
312
|
+
X-Jussi-Request-Id:
|
313
|
+
- '000163544895449836'
|
314
|
+
X-Amzn-Trace-Id:
|
315
|
+
- Root=1-5f8a71b1-71d5770f3d17e7c304dea84b
|
316
|
+
Access-Control-Allow-Origin:
|
317
|
+
- "*"
|
318
|
+
Access-Control-Allow-Methods:
|
319
|
+
- GET, POST, OPTIONS
|
320
|
+
Access-Control-Allow-Headers:
|
321
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
322
|
+
Strict-Transport-Security:
|
323
|
+
- max-age=31557600; includeSubDomains; preload
|
324
|
+
Content-Security-Policy:
|
325
|
+
- upgrade-insecure-requests
|
326
|
+
body:
|
327
|
+
encoding: UTF-8
|
328
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
329
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
330
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:23:13"},"format":"args.size()
|
331
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":98}'
|
332
|
+
recorded_at: Sat, 17 Oct 2020 04:23:13 GMT
|
333
|
+
- request:
|
334
|
+
method: post
|
335
|
+
uri: https://api.steemitdev.com/
|
336
|
+
body:
|
337
|
+
encoding: UTF-8
|
338
|
+
string: '{"jsonrpc":"2.0","id":71,"method":"condenser_api.get_accounts","params":[]}'
|
339
|
+
headers:
|
340
|
+
Content-Type:
|
341
|
+
- application/json; charset=utf-8
|
342
|
+
User-Agent:
|
343
|
+
- steem-ruby/0.9.4
|
344
|
+
Accept-Encoding:
|
345
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
346
|
+
Accept:
|
347
|
+
- "*/*"
|
348
|
+
Host:
|
349
|
+
- api.steemitdev.com
|
350
|
+
Content-Length:
|
351
|
+
- '87'
|
352
|
+
response:
|
353
|
+
status:
|
354
|
+
code: 200
|
355
|
+
message: OK
|
356
|
+
headers:
|
357
|
+
Date:
|
358
|
+
- Sat, 17 Oct 2020 04:27:20 GMT
|
359
|
+
Content-Type:
|
360
|
+
- application/json
|
361
|
+
Content-Length:
|
362
|
+
- '429'
|
363
|
+
Connection:
|
364
|
+
- keep-alive
|
365
|
+
Server:
|
366
|
+
- nginx
|
367
|
+
X-Jussi-Request-Id:
|
368
|
+
- '000760905641621422'
|
369
|
+
X-Amzn-Trace-Id:
|
370
|
+
- Root=1-5f8a72a8-7752598906893af5077bf96e
|
371
|
+
Access-Control-Allow-Origin:
|
372
|
+
- "*"
|
373
|
+
Access-Control-Allow-Methods:
|
374
|
+
- GET, POST, OPTIONS
|
375
|
+
Access-Control-Allow-Headers:
|
376
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
377
|
+
Strict-Transport-Security:
|
378
|
+
- max-age=31557600; includeSubDomains; preload
|
379
|
+
Content-Security-Policy:
|
380
|
+
- upgrade-insecure-requests
|
381
|
+
body:
|
382
|
+
encoding: UTF-8
|
383
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
384
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
385
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:27:20"},"format":"args.size()
|
386
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":71}'
|
387
|
+
recorded_at: Sat, 17 Oct 2020 04:27:20 GMT
|
388
|
+
- request:
|
389
|
+
method: post
|
390
|
+
uri: https://api.steemitdev.com/
|
391
|
+
body:
|
392
|
+
encoding: UTF-8
|
393
|
+
string: '{"jsonrpc":"2.0","id":33,"method":"condenser_api.get_accounts","params":[]}'
|
394
|
+
headers:
|
395
|
+
Content-Type:
|
396
|
+
- application/json; charset=utf-8
|
397
|
+
User-Agent:
|
398
|
+
- steem-ruby/0.9.4
|
399
|
+
Accept-Encoding:
|
400
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
401
|
+
Accept:
|
402
|
+
- "*/*"
|
403
|
+
Host:
|
404
|
+
- api.steemitdev.com
|
405
|
+
Content-Length:
|
406
|
+
- '86'
|
407
|
+
response:
|
408
|
+
status:
|
409
|
+
code: 200
|
410
|
+
message: OK
|
411
|
+
headers:
|
412
|
+
Date:
|
413
|
+
- Sat, 17 Oct 2020 04:34:06 GMT
|
414
|
+
Content-Type:
|
415
|
+
- application/json
|
416
|
+
Content-Length:
|
417
|
+
- '429'
|
418
|
+
Connection:
|
419
|
+
- keep-alive
|
420
|
+
Server:
|
421
|
+
- nginx
|
422
|
+
X-Jussi-Request-Id:
|
423
|
+
- '000213357246359047'
|
424
|
+
X-Amzn-Trace-Id:
|
425
|
+
- Root=1-5f8a743e-1aae003901a423ac74f17d36
|
426
|
+
Access-Control-Allow-Origin:
|
427
|
+
- "*"
|
428
|
+
Access-Control-Allow-Methods:
|
429
|
+
- GET, POST, OPTIONS
|
430
|
+
Access-Control-Allow-Headers:
|
431
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
432
|
+
Strict-Transport-Security:
|
433
|
+
- max-age=31557600; includeSubDomains; preload
|
434
|
+
Content-Security-Policy:
|
435
|
+
- upgrade-insecure-requests
|
436
|
+
body:
|
437
|
+
encoding: UTF-8
|
438
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
439
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
440
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:34:06"},"format":"args.size()
|
441
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":33}'
|
442
|
+
recorded_at: Sat, 17 Oct 2020 04:34:06 GMT
|
443
|
+
- request:
|
444
|
+
method: post
|
445
|
+
uri: https://api.steemitdev.com/
|
446
|
+
body:
|
447
|
+
encoding: UTF-8
|
448
|
+
string: '{"jsonrpc":"2.0","id":64,"method":"condenser_api.get_accounts","params":[]}'
|
449
|
+
headers:
|
450
|
+
Content-Type:
|
451
|
+
- application/json; charset=utf-8
|
452
|
+
User-Agent:
|
453
|
+
- steem-ruby/0.9.4
|
454
|
+
Accept-Encoding:
|
455
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
456
|
+
Accept:
|
457
|
+
- "*/*"
|
458
|
+
Host:
|
459
|
+
- api.steemitdev.com
|
460
|
+
Content-Length:
|
461
|
+
- '86'
|
462
|
+
response:
|
463
|
+
status:
|
464
|
+
code: 200
|
465
|
+
message: OK
|
466
|
+
headers:
|
467
|
+
Date:
|
468
|
+
- Sat, 17 Oct 2020 04:39:54 GMT
|
469
|
+
Content-Type:
|
470
|
+
- application/json
|
471
|
+
Content-Length:
|
472
|
+
- '429'
|
473
|
+
Connection:
|
474
|
+
- keep-alive
|
475
|
+
Server:
|
476
|
+
- nginx
|
477
|
+
X-Jussi-Request-Id:
|
478
|
+
- '000269479699272140'
|
479
|
+
X-Amzn-Trace-Id:
|
480
|
+
- Root=1-5f8a759a-11eaa689657831ef51e4447b
|
481
|
+
Access-Control-Allow-Origin:
|
482
|
+
- "*"
|
483
|
+
Access-Control-Allow-Methods:
|
484
|
+
- GET, POST, OPTIONS
|
485
|
+
Access-Control-Allow-Headers:
|
486
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
487
|
+
Strict-Transport-Security:
|
488
|
+
- max-age=31557600; includeSubDomains; preload
|
489
|
+
Content-Security-Policy:
|
490
|
+
- upgrade-insecure-requests
|
491
|
+
body:
|
492
|
+
encoding: UTF-8
|
493
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
494
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
495
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:39:54"},"format":"args.size()
|
496
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":64}'
|
497
|
+
recorded_at: Sat, 17 Oct 2020 04:39:54 GMT
|
498
|
+
- request:
|
499
|
+
method: post
|
500
|
+
uri: https://api.steemitdev.com/
|
501
|
+
body:
|
502
|
+
encoding: UTF-8
|
503
|
+
string: '{"jsonrpc":"2.0","id":14,"method":"condenser_api.get_accounts","params":[]}'
|
504
|
+
headers:
|
505
|
+
Content-Type:
|
506
|
+
- application/json; charset=utf-8
|
507
|
+
User-Agent:
|
508
|
+
- steem-ruby/0.9.4
|
509
|
+
Accept-Encoding:
|
510
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
511
|
+
Accept:
|
512
|
+
- "*/*"
|
513
|
+
Host:
|
514
|
+
- api.steemitdev.com
|
515
|
+
Content-Length:
|
516
|
+
- '80'
|
517
|
+
response:
|
518
|
+
status:
|
519
|
+
code: 200
|
520
|
+
message: OK
|
521
|
+
headers:
|
522
|
+
Date:
|
523
|
+
- Sat, 17 Oct 2020 04:55:49 GMT
|
524
|
+
Content-Type:
|
525
|
+
- application/json
|
526
|
+
Content-Length:
|
527
|
+
- '429'
|
528
|
+
Connection:
|
529
|
+
- keep-alive
|
530
|
+
Server:
|
531
|
+
- nginx
|
532
|
+
X-Jussi-Request-Id:
|
533
|
+
- '000440489877120091'
|
534
|
+
X-Amzn-Trace-Id:
|
535
|
+
- Root=1-5f8a7954-743cccd01c5b4c3c6c9a0a89
|
536
|
+
Access-Control-Allow-Origin:
|
537
|
+
- "*"
|
538
|
+
Access-Control-Allow-Methods:
|
539
|
+
- GET, POST, OPTIONS
|
540
|
+
Access-Control-Allow-Headers:
|
541
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
542
|
+
Strict-Transport-Security:
|
543
|
+
- max-age=31557600; includeSubDomains; preload
|
544
|
+
Content-Security-Policy:
|
545
|
+
- upgrade-insecure-requests
|
546
|
+
body:
|
547
|
+
encoding: UTF-8
|
548
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
549
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
550
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T04:55:49"},"format":"args.size()
|
551
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":14}'
|
552
|
+
recorded_at: Sat, 17 Oct 2020 04:55:49 GMT
|
553
|
+
- request:
|
554
|
+
method: post
|
555
|
+
uri: https://api.steemitdev.com/
|
556
|
+
body:
|
557
|
+
encoding: UTF-8
|
558
|
+
string: '{"jsonrpc":"2.0","id":80,"method":"condenser_api.get_accounts","params":[]}'
|
559
|
+
headers:
|
560
|
+
Content-Type:
|
561
|
+
- application/json; charset=utf-8
|
562
|
+
User-Agent:
|
563
|
+
- steem-ruby/0.9.4
|
564
|
+
Accept-Encoding:
|
565
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
566
|
+
Accept:
|
567
|
+
- "*/*"
|
568
|
+
Host:
|
569
|
+
- api.steemit.com
|
570
|
+
Content-Length:
|
571
|
+
- '96'
|
572
|
+
response:
|
573
|
+
status:
|
574
|
+
code: 200
|
575
|
+
message: OK
|
576
|
+
headers:
|
577
|
+
Date:
|
578
|
+
- Sat, 17 Oct 2020 05:03:34 GMT
|
579
|
+
Content-Type:
|
580
|
+
- application/json
|
581
|
+
Content-Length:
|
582
|
+
- '429'
|
583
|
+
Connection:
|
584
|
+
- keep-alive
|
585
|
+
Server:
|
586
|
+
- nginx
|
587
|
+
X-Jussi-Request-Id:
|
588
|
+
- '000893497094316558'
|
589
|
+
X-Amzn-Trace-Id:
|
590
|
+
- Root=1-5f8a7b26-2d8bcb2c09c5392317cb719b
|
591
|
+
Access-Control-Allow-Origin:
|
592
|
+
- "*"
|
593
|
+
Access-Control-Allow-Methods:
|
594
|
+
- GET, POST, OPTIONS
|
595
|
+
Access-Control-Allow-Headers:
|
596
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
597
|
+
Strict-Transport-Security:
|
598
|
+
- max-age=31557600; includeSubDomains; preload
|
599
|
+
Content-Security-Policy:
|
600
|
+
- upgrade-insecure-requests
|
601
|
+
body:
|
602
|
+
encoding: UTF-8
|
603
|
+
string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
|
604
|
+
== 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
|
605
|
+
Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-10-17T05:03:34"},"format":"args.size()
|
606
|
+
== 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":80}'
|
607
|
+
recorded_at: Sat, 17 Oct 2020 05:03:34 GMT
|
608
|
+
recorded_with: VCR 6.0.0
|