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,1186 @@
|
|
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":16,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
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:07:00 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Content-Length:
|
32
|
+
- '203'
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
Server:
|
36
|
+
- nginx
|
37
|
+
X-Jussi-Request-Id:
|
38
|
+
- '000188945264992831'
|
39
|
+
X-Amzn-Trace-Id:
|
40
|
+
- Root=1-5f8a6de4-0ecd76ea56a4509d0275bfaf
|
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":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}},"id":16}'
|
54
|
+
recorded_at: Sat, 17 Oct 2020 04:07:01 GMT
|
55
|
+
- request:
|
56
|
+
method: post
|
57
|
+
uri: https://api.steemit.com/
|
58
|
+
body:
|
59
|
+
encoding: UTF-8
|
60
|
+
string: '{"jsonrpc":"2.0","id":17,"method":"network_broadcast_api.broadcast_transaction","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
|
+
- '124'
|
74
|
+
response:
|
75
|
+
status:
|
76
|
+
code: 200
|
77
|
+
message: OK
|
78
|
+
headers:
|
79
|
+
Date:
|
80
|
+
- Sat, 17 Oct 2020 04:07:01 GMT
|
81
|
+
Content-Type:
|
82
|
+
- application/json
|
83
|
+
Content-Length:
|
84
|
+
- '175'
|
85
|
+
Connection:
|
86
|
+
- keep-alive
|
87
|
+
Server:
|
88
|
+
- nginx
|
89
|
+
X-Jussi-Error-Id:
|
90
|
+
- e8e710de-3d35-4b17-9792-29a2c75f3c77
|
91
|
+
X-Jussi-Request-Id:
|
92
|
+
- '000312574586602854'
|
93
|
+
X-Amzn-Trace-Id:
|
94
|
+
- Root=1-5f8a6de5-6f22ad314518040c63d8e406
|
95
|
+
Access-Control-Allow-Origin:
|
96
|
+
- "*"
|
97
|
+
Access-Control-Allow-Methods:
|
98
|
+
- GET, POST, OPTIONS
|
99
|
+
Access-Control-Allow-Headers:
|
100
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
101
|
+
Strict-Transport-Security:
|
102
|
+
- max-age=31557600; includeSubDomains; preload
|
103
|
+
Content-Security-Policy:
|
104
|
+
- upgrade-insecure-requests
|
105
|
+
body:
|
106
|
+
encoding: UTF-8
|
107
|
+
string: '{"jsonrpc":"2.0","id":17,"error":{"code":-32603,"message":"Internal
|
108
|
+
Error","data":{"error_id":"e8e710de-3d35-4b17-9792-29a2c75f3c77","jussi_request_id":"000171896568963539"}}}'
|
109
|
+
recorded_at: Sat, 17 Oct 2020 04:07:01 GMT
|
110
|
+
- request:
|
111
|
+
method: post
|
112
|
+
uri: https://api.steemit.com/
|
113
|
+
body:
|
114
|
+
encoding: UTF-8
|
115
|
+
string: '{"jsonrpc":"2.0","id":20,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
116
|
+
headers:
|
117
|
+
Content-Type:
|
118
|
+
- application/json; charset=utf-8
|
119
|
+
User-Agent:
|
120
|
+
- steem-ruby/0.9.4
|
121
|
+
Accept-Encoding:
|
122
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
123
|
+
Accept:
|
124
|
+
- "*/*"
|
125
|
+
Host:
|
126
|
+
- api.steemit.com
|
127
|
+
Content-Length:
|
128
|
+
- '85'
|
129
|
+
response:
|
130
|
+
status:
|
131
|
+
code: 200
|
132
|
+
message: OK
|
133
|
+
headers:
|
134
|
+
Date:
|
135
|
+
- Sat, 17 Oct 2020 04:08:50 GMT
|
136
|
+
Content-Type:
|
137
|
+
- application/json
|
138
|
+
Content-Length:
|
139
|
+
- '203'
|
140
|
+
Connection:
|
141
|
+
- keep-alive
|
142
|
+
Server:
|
143
|
+
- nginx
|
144
|
+
X-Jussi-Request-Id:
|
145
|
+
- '000350667538332043'
|
146
|
+
X-Amzn-Trace-Id:
|
147
|
+
- Root=1-5f8a6e52-610f3225797a6695368d65f1
|
148
|
+
Access-Control-Allow-Origin:
|
149
|
+
- "*"
|
150
|
+
Access-Control-Allow-Methods:
|
151
|
+
- GET, POST, OPTIONS
|
152
|
+
Access-Control-Allow-Headers:
|
153
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
154
|
+
Strict-Transport-Security:
|
155
|
+
- max-age=31557600; includeSubDomains; preload
|
156
|
+
Content-Security-Policy:
|
157
|
+
- upgrade-insecure-requests
|
158
|
+
body:
|
159
|
+
encoding: UTF-8
|
160
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}},"id":20}'
|
161
|
+
recorded_at: Sat, 17 Oct 2020 04:08:50 GMT
|
162
|
+
- request:
|
163
|
+
method: post
|
164
|
+
uri: https://api.steemit.com/
|
165
|
+
body:
|
166
|
+
encoding: UTF-8
|
167
|
+
string: '{"jsonrpc":"2.0","id":21,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
168
|
+
headers:
|
169
|
+
Content-Type:
|
170
|
+
- application/json; charset=utf-8
|
171
|
+
User-Agent:
|
172
|
+
- steem-ruby/0.9.4
|
173
|
+
Accept-Encoding:
|
174
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
175
|
+
Accept:
|
176
|
+
- "*/*"
|
177
|
+
Host:
|
178
|
+
- api.steemit.com
|
179
|
+
Content-Length:
|
180
|
+
- '124'
|
181
|
+
response:
|
182
|
+
status:
|
183
|
+
code: 200
|
184
|
+
message: OK
|
185
|
+
headers:
|
186
|
+
Date:
|
187
|
+
- Sat, 17 Oct 2020 04:08:50 GMT
|
188
|
+
Content-Type:
|
189
|
+
- application/json
|
190
|
+
Content-Length:
|
191
|
+
- '175'
|
192
|
+
Connection:
|
193
|
+
- keep-alive
|
194
|
+
Server:
|
195
|
+
- nginx
|
196
|
+
X-Jussi-Error-Id:
|
197
|
+
- 6ce1764c-a9f9-41b6-8fd4-a24c91f20be3
|
198
|
+
X-Jussi-Request-Id:
|
199
|
+
- '000144065599498936'
|
200
|
+
X-Amzn-Trace-Id:
|
201
|
+
- Root=1-5f8a6e52-1c9b0b5a0b7528702e413336
|
202
|
+
Access-Control-Allow-Origin:
|
203
|
+
- "*"
|
204
|
+
Access-Control-Allow-Methods:
|
205
|
+
- GET, POST, OPTIONS
|
206
|
+
Access-Control-Allow-Headers:
|
207
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
208
|
+
Strict-Transport-Security:
|
209
|
+
- max-age=31557600; includeSubDomains; preload
|
210
|
+
Content-Security-Policy:
|
211
|
+
- upgrade-insecure-requests
|
212
|
+
body:
|
213
|
+
encoding: UTF-8
|
214
|
+
string: '{"jsonrpc":"2.0","id":21,"error":{"code":-32603,"message":"Internal
|
215
|
+
Error","data":{"error_id":"6ce1764c-a9f9-41b6-8fd4-a24c91f20be3","jussi_request_id":"000983410954915919"}}}'
|
216
|
+
recorded_at: Sat, 17 Oct 2020 04:08:51 GMT
|
217
|
+
- request:
|
218
|
+
method: post
|
219
|
+
uri: https://api.steemit.com/
|
220
|
+
body:
|
221
|
+
encoding: UTF-8
|
222
|
+
string: '{"jsonrpc":"2.0","id":91,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
223
|
+
headers:
|
224
|
+
Content-Type:
|
225
|
+
- application/json; charset=utf-8
|
226
|
+
User-Agent:
|
227
|
+
- steem-ruby/0.9.4
|
228
|
+
Accept-Encoding:
|
229
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
230
|
+
Accept:
|
231
|
+
- "*/*"
|
232
|
+
Host:
|
233
|
+
- api.steemit.com
|
234
|
+
Content-Length:
|
235
|
+
- '82'
|
236
|
+
response:
|
237
|
+
status:
|
238
|
+
code: 200
|
239
|
+
message: OK
|
240
|
+
headers:
|
241
|
+
Date:
|
242
|
+
- Sat, 17 Oct 2020 04:13:43 GMT
|
243
|
+
Content-Type:
|
244
|
+
- application/json
|
245
|
+
Content-Length:
|
246
|
+
- '203'
|
247
|
+
Connection:
|
248
|
+
- keep-alive
|
249
|
+
Server:
|
250
|
+
- nginx
|
251
|
+
X-Jussi-Request-Id:
|
252
|
+
- '000905607691273564'
|
253
|
+
X-Amzn-Trace-Id:
|
254
|
+
- Root=1-5f8a6f77-462308dd3fab24575bda945c
|
255
|
+
Access-Control-Allow-Origin:
|
256
|
+
- "*"
|
257
|
+
Access-Control-Allow-Methods:
|
258
|
+
- GET, POST, OPTIONS
|
259
|
+
Access-Control-Allow-Headers:
|
260
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
261
|
+
Strict-Transport-Security:
|
262
|
+
- max-age=31557600; includeSubDomains; preload
|
263
|
+
Content-Security-Policy:
|
264
|
+
- upgrade-insecure-requests
|
265
|
+
body:
|
266
|
+
encoding: UTF-8
|
267
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}},"id":91}'
|
268
|
+
recorded_at: Sat, 17 Oct 2020 04:13:44 GMT
|
269
|
+
- request:
|
270
|
+
method: post
|
271
|
+
uri: https://api.steemit.com/
|
272
|
+
body:
|
273
|
+
encoding: UTF-8
|
274
|
+
string: '{"jsonrpc":"2.0","id":92,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
275
|
+
headers:
|
276
|
+
Content-Type:
|
277
|
+
- application/json; charset=utf-8
|
278
|
+
User-Agent:
|
279
|
+
- steem-ruby/0.9.4
|
280
|
+
Accept-Encoding:
|
281
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
282
|
+
Accept:
|
283
|
+
- "*/*"
|
284
|
+
Host:
|
285
|
+
- api.steemit.com
|
286
|
+
Content-Length:
|
287
|
+
- '124'
|
288
|
+
response:
|
289
|
+
status:
|
290
|
+
code: 200
|
291
|
+
message: OK
|
292
|
+
headers:
|
293
|
+
Date:
|
294
|
+
- Sat, 17 Oct 2020 04:13:44 GMT
|
295
|
+
Content-Type:
|
296
|
+
- application/json
|
297
|
+
Content-Length:
|
298
|
+
- '175'
|
299
|
+
Connection:
|
300
|
+
- keep-alive
|
301
|
+
Server:
|
302
|
+
- nginx
|
303
|
+
X-Jussi-Error-Id:
|
304
|
+
- b57f3f26-b180-47ec-92f9-0e4d36daf2a0
|
305
|
+
X-Jussi-Request-Id:
|
306
|
+
- '000908947859849535'
|
307
|
+
X-Amzn-Trace-Id:
|
308
|
+
- Root=1-5f8a6f78-3a9c27dc0f3b3f1f74c01852
|
309
|
+
Access-Control-Allow-Origin:
|
310
|
+
- "*"
|
311
|
+
Access-Control-Allow-Methods:
|
312
|
+
- GET, POST, OPTIONS
|
313
|
+
Access-Control-Allow-Headers:
|
314
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
315
|
+
Strict-Transport-Security:
|
316
|
+
- max-age=31557600; includeSubDomains; preload
|
317
|
+
Content-Security-Policy:
|
318
|
+
- upgrade-insecure-requests
|
319
|
+
body:
|
320
|
+
encoding: UTF-8
|
321
|
+
string: '{"jsonrpc":"2.0","id":92,"error":{"code":-32603,"message":"Internal
|
322
|
+
Error","data":{"error_id":"b57f3f26-b180-47ec-92f9-0e4d36daf2a0","jussi_request_id":"000781639155089480"}}}'
|
323
|
+
recorded_at: Sat, 17 Oct 2020 04:13:44 GMT
|
324
|
+
- request:
|
325
|
+
method: post
|
326
|
+
uri: https://api.steemit.com/
|
327
|
+
body:
|
328
|
+
encoding: UTF-8
|
329
|
+
string: '{"jsonrpc":"2.0","id":10,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
330
|
+
headers:
|
331
|
+
Content-Type:
|
332
|
+
- application/json; charset=utf-8
|
333
|
+
User-Agent:
|
334
|
+
- steem-ruby/0.9.4
|
335
|
+
Accept-Encoding:
|
336
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
337
|
+
Accept:
|
338
|
+
- "*/*"
|
339
|
+
Host:
|
340
|
+
- api.steemit.com
|
341
|
+
Content-Length:
|
342
|
+
- '91'
|
343
|
+
response:
|
344
|
+
status:
|
345
|
+
code: 200
|
346
|
+
message: OK
|
347
|
+
headers:
|
348
|
+
Date:
|
349
|
+
- Sat, 17 Oct 2020 04:14:10 GMT
|
350
|
+
Content-Type:
|
351
|
+
- application/json
|
352
|
+
Content-Length:
|
353
|
+
- '203'
|
354
|
+
Connection:
|
355
|
+
- keep-alive
|
356
|
+
Server:
|
357
|
+
- nginx
|
358
|
+
X-Jussi-Cache-Hit:
|
359
|
+
- appbase.jsonrpc.get_signature.params={"method":"network_broadcast_api.broadcast_transaction"}
|
360
|
+
X-Jussi-Request-Id:
|
361
|
+
- '000604979323715413'
|
362
|
+
X-Amzn-Trace-Id:
|
363
|
+
- Root=1-5f8a6f92-3b8fdb50208e2c3a343a5363
|
364
|
+
Access-Control-Allow-Origin:
|
365
|
+
- "*"
|
366
|
+
Access-Control-Allow-Methods:
|
367
|
+
- GET, POST, OPTIONS
|
368
|
+
Access-Control-Allow-Headers:
|
369
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
370
|
+
Strict-Transport-Security:
|
371
|
+
- max-age=31557600; includeSubDomains; preload
|
372
|
+
Content-Security-Policy:
|
373
|
+
- upgrade-insecure-requests
|
374
|
+
body:
|
375
|
+
encoding: UTF-8
|
376
|
+
string: '{"id":10,"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}}}'
|
377
|
+
recorded_at: Sat, 17 Oct 2020 04:14:10 GMT
|
378
|
+
- request:
|
379
|
+
method: post
|
380
|
+
uri: https://api.steemit.com/
|
381
|
+
body:
|
382
|
+
encoding: UTF-8
|
383
|
+
string: '{"jsonrpc":"2.0","id":11,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
384
|
+
headers:
|
385
|
+
Content-Type:
|
386
|
+
- application/json; charset=utf-8
|
387
|
+
User-Agent:
|
388
|
+
- steem-ruby/0.9.4
|
389
|
+
Accept-Encoding:
|
390
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
391
|
+
Accept:
|
392
|
+
- "*/*"
|
393
|
+
Host:
|
394
|
+
- api.steemit.com
|
395
|
+
Content-Length:
|
396
|
+
- '124'
|
397
|
+
response:
|
398
|
+
status:
|
399
|
+
code: 200
|
400
|
+
message: OK
|
401
|
+
headers:
|
402
|
+
Date:
|
403
|
+
- Sat, 17 Oct 2020 04:14:10 GMT
|
404
|
+
Content-Type:
|
405
|
+
- application/json
|
406
|
+
Content-Length:
|
407
|
+
- '175'
|
408
|
+
Connection:
|
409
|
+
- keep-alive
|
410
|
+
Server:
|
411
|
+
- nginx
|
412
|
+
X-Jussi-Error-Id:
|
413
|
+
- db1cbe9b-8a10-44ce-8336-99ce48abd777
|
414
|
+
X-Jussi-Request-Id:
|
415
|
+
- '000012415756061892'
|
416
|
+
X-Amzn-Trace-Id:
|
417
|
+
- Root=1-5f8a6f92-62cde27171b3bc9651b214d0
|
418
|
+
Access-Control-Allow-Origin:
|
419
|
+
- "*"
|
420
|
+
Access-Control-Allow-Methods:
|
421
|
+
- GET, POST, OPTIONS
|
422
|
+
Access-Control-Allow-Headers:
|
423
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
424
|
+
Strict-Transport-Security:
|
425
|
+
- max-age=31557600; includeSubDomains; preload
|
426
|
+
Content-Security-Policy:
|
427
|
+
- upgrade-insecure-requests
|
428
|
+
body:
|
429
|
+
encoding: UTF-8
|
430
|
+
string: '{"jsonrpc":"2.0","id":11,"error":{"code":-32603,"message":"Internal
|
431
|
+
Error","data":{"error_id":"db1cbe9b-8a10-44ce-8336-99ce48abd777","jussi_request_id":"000863234927571148"}}}'
|
432
|
+
recorded_at: Sat, 17 Oct 2020 04:14:10 GMT
|
433
|
+
- request:
|
434
|
+
method: post
|
435
|
+
uri: https://api.steemit.com/
|
436
|
+
body:
|
437
|
+
encoding: UTF-8
|
438
|
+
string: '{"jsonrpc":"2.0","id":50,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
439
|
+
headers:
|
440
|
+
Content-Type:
|
441
|
+
- application/json; charset=utf-8
|
442
|
+
User-Agent:
|
443
|
+
- steem-ruby/0.9.4
|
444
|
+
Accept-Encoding:
|
445
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
446
|
+
Accept:
|
447
|
+
- "*/*"
|
448
|
+
Host:
|
449
|
+
- api.steemit.com
|
450
|
+
Content-Length:
|
451
|
+
- '80'
|
452
|
+
response:
|
453
|
+
status:
|
454
|
+
code: 200
|
455
|
+
message: OK
|
456
|
+
headers:
|
457
|
+
Date:
|
458
|
+
- Sat, 17 Oct 2020 04:18:50 GMT
|
459
|
+
Content-Type:
|
460
|
+
- application/json
|
461
|
+
Content-Length:
|
462
|
+
- '203'
|
463
|
+
Connection:
|
464
|
+
- keep-alive
|
465
|
+
Server:
|
466
|
+
- nginx
|
467
|
+
X-Jussi-Request-Id:
|
468
|
+
- '000503625952634762'
|
469
|
+
X-Amzn-Trace-Id:
|
470
|
+
- Root=1-5f8a70aa-1edd16e8183fb243136ae77a
|
471
|
+
Access-Control-Allow-Origin:
|
472
|
+
- "*"
|
473
|
+
Access-Control-Allow-Methods:
|
474
|
+
- GET, POST, OPTIONS
|
475
|
+
Access-Control-Allow-Headers:
|
476
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
477
|
+
Strict-Transport-Security:
|
478
|
+
- max-age=31557600; includeSubDomains; preload
|
479
|
+
Content-Security-Policy:
|
480
|
+
- upgrade-insecure-requests
|
481
|
+
body:
|
482
|
+
encoding: UTF-8
|
483
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}},"id":50}'
|
484
|
+
recorded_at: Sat, 17 Oct 2020 04:18:51 GMT
|
485
|
+
- request:
|
486
|
+
method: post
|
487
|
+
uri: https://api.steemit.com/
|
488
|
+
body:
|
489
|
+
encoding: UTF-8
|
490
|
+
string: '{"jsonrpc":"2.0","id":51,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
491
|
+
headers:
|
492
|
+
Content-Type:
|
493
|
+
- application/json; charset=utf-8
|
494
|
+
User-Agent:
|
495
|
+
- steem-ruby/0.9.4
|
496
|
+
Accept-Encoding:
|
497
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
498
|
+
Accept:
|
499
|
+
- "*/*"
|
500
|
+
Host:
|
501
|
+
- api.steemit.com
|
502
|
+
Content-Length:
|
503
|
+
- '124'
|
504
|
+
response:
|
505
|
+
status:
|
506
|
+
code: 200
|
507
|
+
message: OK
|
508
|
+
headers:
|
509
|
+
Date:
|
510
|
+
- Sat, 17 Oct 2020 04:18:51 GMT
|
511
|
+
Content-Type:
|
512
|
+
- application/json
|
513
|
+
Content-Length:
|
514
|
+
- '175'
|
515
|
+
Connection:
|
516
|
+
- keep-alive
|
517
|
+
Server:
|
518
|
+
- nginx
|
519
|
+
X-Jussi-Error-Id:
|
520
|
+
- e9c9c669-9024-4cf5-bd41-65c59c97e1c8
|
521
|
+
X-Jussi-Request-Id:
|
522
|
+
- '000740246547637876'
|
523
|
+
X-Amzn-Trace-Id:
|
524
|
+
- Root=1-5f8a70ab-11fd2c1d2725149651ad8974
|
525
|
+
Access-Control-Allow-Origin:
|
526
|
+
- "*"
|
527
|
+
Access-Control-Allow-Methods:
|
528
|
+
- GET, POST, OPTIONS
|
529
|
+
Access-Control-Allow-Headers:
|
530
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
531
|
+
Strict-Transport-Security:
|
532
|
+
- max-age=31557600; includeSubDomains; preload
|
533
|
+
Content-Security-Policy:
|
534
|
+
- upgrade-insecure-requests
|
535
|
+
body:
|
536
|
+
encoding: UTF-8
|
537
|
+
string: '{"jsonrpc":"2.0","id":51,"error":{"code":-32603,"message":"Internal
|
538
|
+
Error","data":{"error_id":"e9c9c669-9024-4cf5-bd41-65c59c97e1c8","jussi_request_id":"000011690626749289"}}}'
|
539
|
+
recorded_at: Sat, 17 Oct 2020 04:18:51 GMT
|
540
|
+
- request:
|
541
|
+
method: post
|
542
|
+
uri: https://api.steemitdev.com/
|
543
|
+
body:
|
544
|
+
encoding: UTF-8
|
545
|
+
string: '{"jsonrpc":"2.0","id":9,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
546
|
+
headers:
|
547
|
+
Content-Type:
|
548
|
+
- application/json; charset=utf-8
|
549
|
+
User-Agent:
|
550
|
+
- steem-ruby/0.9.4
|
551
|
+
Accept-Encoding:
|
552
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
553
|
+
Accept:
|
554
|
+
- "*/*"
|
555
|
+
Host:
|
556
|
+
- api.steemitdev.com
|
557
|
+
Content-Length:
|
558
|
+
- '67'
|
559
|
+
response:
|
560
|
+
status:
|
561
|
+
code: 200
|
562
|
+
message: OK
|
563
|
+
headers:
|
564
|
+
Date:
|
565
|
+
- Sat, 17 Oct 2020 04:21:58 GMT
|
566
|
+
Content-Type:
|
567
|
+
- application/json
|
568
|
+
Content-Length:
|
569
|
+
- '202'
|
570
|
+
Connection:
|
571
|
+
- keep-alive
|
572
|
+
Server:
|
573
|
+
- nginx
|
574
|
+
X-Jussi-Cache-Hit:
|
575
|
+
- appbase.jsonrpc.get_signature.params={"method":"network_broadcast_api.broadcast_transaction"}
|
576
|
+
X-Jussi-Request-Id:
|
577
|
+
- '000736759981793569'
|
578
|
+
X-Amzn-Trace-Id:
|
579
|
+
- Root=1-5f8a7166-3e68ac1573d7ac3d2b767e25
|
580
|
+
Access-Control-Allow-Origin:
|
581
|
+
- "*"
|
582
|
+
Access-Control-Allow-Methods:
|
583
|
+
- GET, POST, OPTIONS
|
584
|
+
Access-Control-Allow-Headers:
|
585
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
586
|
+
Strict-Transport-Security:
|
587
|
+
- max-age=31557600; includeSubDomains; preload
|
588
|
+
Content-Security-Policy:
|
589
|
+
- upgrade-insecure-requests
|
590
|
+
body:
|
591
|
+
encoding: UTF-8
|
592
|
+
string: '{"id":9,"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}}}'
|
593
|
+
recorded_at: Sat, 17 Oct 2020 04:21:59 GMT
|
594
|
+
- request:
|
595
|
+
method: post
|
596
|
+
uri: https://api.steemitdev.com/
|
597
|
+
body:
|
598
|
+
encoding: UTF-8
|
599
|
+
string: '{"jsonrpc":"2.0","id":10,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
600
|
+
headers:
|
601
|
+
Content-Type:
|
602
|
+
- application/json; charset=utf-8
|
603
|
+
User-Agent:
|
604
|
+
- steem-ruby/0.9.4
|
605
|
+
Accept-Encoding:
|
606
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
607
|
+
Accept:
|
608
|
+
- "*/*"
|
609
|
+
Host:
|
610
|
+
- api.steemitdev.com
|
611
|
+
Content-Length:
|
612
|
+
- '123'
|
613
|
+
response:
|
614
|
+
status:
|
615
|
+
code: 200
|
616
|
+
message: OK
|
617
|
+
headers:
|
618
|
+
Date:
|
619
|
+
- Sat, 17 Oct 2020 04:21:59 GMT
|
620
|
+
Content-Type:
|
621
|
+
- application/json
|
622
|
+
Content-Length:
|
623
|
+
- '175'
|
624
|
+
Connection:
|
625
|
+
- keep-alive
|
626
|
+
Server:
|
627
|
+
- nginx
|
628
|
+
X-Jussi-Error-Id:
|
629
|
+
- a73cbd17-283d-4c96-881a-bfe3600c554e
|
630
|
+
X-Jussi-Request-Id:
|
631
|
+
- '000060292965437614'
|
632
|
+
X-Amzn-Trace-Id:
|
633
|
+
- Root=1-5f8a7167-7b861b8755bf99732c50b79b
|
634
|
+
Access-Control-Allow-Origin:
|
635
|
+
- "*"
|
636
|
+
Access-Control-Allow-Methods:
|
637
|
+
- GET, POST, OPTIONS
|
638
|
+
Access-Control-Allow-Headers:
|
639
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
640
|
+
Strict-Transport-Security:
|
641
|
+
- max-age=31557600; includeSubDomains; preload
|
642
|
+
Content-Security-Policy:
|
643
|
+
- upgrade-insecure-requests
|
644
|
+
body:
|
645
|
+
encoding: UTF-8
|
646
|
+
string: '{"jsonrpc":"2.0","id":10,"error":{"code":-32603,"message":"Internal
|
647
|
+
Error","data":{"error_id":"a73cbd17-283d-4c96-881a-bfe3600c554e","jussi_request_id":"000382290355972715"}}}'
|
648
|
+
recorded_at: Sat, 17 Oct 2020 04:21:59 GMT
|
649
|
+
- request:
|
650
|
+
method: post
|
651
|
+
uri: https://api.steemitdev.com/
|
652
|
+
body:
|
653
|
+
encoding: UTF-8
|
654
|
+
string: '{"jsonrpc":"2.0","id":99,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
655
|
+
headers:
|
656
|
+
Content-Type:
|
657
|
+
- application/json; charset=utf-8
|
658
|
+
User-Agent:
|
659
|
+
- steem-ruby/0.9.4
|
660
|
+
Accept-Encoding:
|
661
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
662
|
+
Accept:
|
663
|
+
- "*/*"
|
664
|
+
Host:
|
665
|
+
- api.steemitdev.com
|
666
|
+
Content-Length:
|
667
|
+
- '92'
|
668
|
+
response:
|
669
|
+
status:
|
670
|
+
code: 200
|
671
|
+
message: OK
|
672
|
+
headers:
|
673
|
+
Date:
|
674
|
+
- Sat, 17 Oct 2020 04:27:47 GMT
|
675
|
+
Content-Type:
|
676
|
+
- application/json
|
677
|
+
Content-Length:
|
678
|
+
- '203'
|
679
|
+
Connection:
|
680
|
+
- keep-alive
|
681
|
+
Server:
|
682
|
+
- nginx
|
683
|
+
X-Jussi-Request-Id:
|
684
|
+
- '000707384957637996'
|
685
|
+
X-Amzn-Trace-Id:
|
686
|
+
- Root=1-5f8a72c2-2ceaf9a308c3f76a5749206a
|
687
|
+
Access-Control-Allow-Origin:
|
688
|
+
- "*"
|
689
|
+
Access-Control-Allow-Methods:
|
690
|
+
- GET, POST, OPTIONS
|
691
|
+
Access-Control-Allow-Headers:
|
692
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
693
|
+
Strict-Transport-Security:
|
694
|
+
- max-age=31557600; includeSubDomains; preload
|
695
|
+
Content-Security-Policy:
|
696
|
+
- upgrade-insecure-requests
|
697
|
+
body:
|
698
|
+
encoding: UTF-8
|
699
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}},"id":99}'
|
700
|
+
recorded_at: Sat, 17 Oct 2020 04:27:48 GMT
|
701
|
+
- request:
|
702
|
+
method: post
|
703
|
+
uri: https://api.steemitdev.com/
|
704
|
+
body:
|
705
|
+
encoding: UTF-8
|
706
|
+
string: '{"jsonrpc":"2.0","id":100,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
707
|
+
headers:
|
708
|
+
Content-Type:
|
709
|
+
- application/json; charset=utf-8
|
710
|
+
User-Agent:
|
711
|
+
- steem-ruby/0.9.4
|
712
|
+
Accept-Encoding:
|
713
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
714
|
+
Accept:
|
715
|
+
- "*/*"
|
716
|
+
Host:
|
717
|
+
- api.steemitdev.com
|
718
|
+
Content-Length:
|
719
|
+
- '124'
|
720
|
+
response:
|
721
|
+
status:
|
722
|
+
code: 200
|
723
|
+
message: OK
|
724
|
+
headers:
|
725
|
+
Date:
|
726
|
+
- Sat, 17 Oct 2020 04:27:48 GMT
|
727
|
+
Content-Type:
|
728
|
+
- application/json
|
729
|
+
Content-Length:
|
730
|
+
- '176'
|
731
|
+
Connection:
|
732
|
+
- keep-alive
|
733
|
+
Server:
|
734
|
+
- nginx
|
735
|
+
X-Jussi-Error-Id:
|
736
|
+
- e94e19da-4610-4977-84cd-1e6ee4c87a1c
|
737
|
+
X-Jussi-Request-Id:
|
738
|
+
- '000757835831875895'
|
739
|
+
X-Amzn-Trace-Id:
|
740
|
+
- Root=1-5f8a72c4-4acbe7aa0ce74a920121035e
|
741
|
+
Access-Control-Allow-Origin:
|
742
|
+
- "*"
|
743
|
+
Access-Control-Allow-Methods:
|
744
|
+
- GET, POST, OPTIONS
|
745
|
+
Access-Control-Allow-Headers:
|
746
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
747
|
+
Strict-Transport-Security:
|
748
|
+
- max-age=31557600; includeSubDomains; preload
|
749
|
+
Content-Security-Policy:
|
750
|
+
- upgrade-insecure-requests
|
751
|
+
body:
|
752
|
+
encoding: UTF-8
|
753
|
+
string: '{"jsonrpc":"2.0","id":100,"error":{"code":-32603,"message":"Internal
|
754
|
+
Error","data":{"error_id":"e94e19da-4610-4977-84cd-1e6ee4c87a1c","jussi_request_id":"000540728334743281"}}}'
|
755
|
+
recorded_at: Sat, 17 Oct 2020 04:27:48 GMT
|
756
|
+
- request:
|
757
|
+
method: post
|
758
|
+
uri: https://api.steemitdev.com/
|
759
|
+
body:
|
760
|
+
encoding: UTF-8
|
761
|
+
string: '{"jsonrpc":"2.0","id":48,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
762
|
+
headers:
|
763
|
+
Content-Type:
|
764
|
+
- application/json; charset=utf-8
|
765
|
+
User-Agent:
|
766
|
+
- steem-ruby/0.9.4
|
767
|
+
Accept-Encoding:
|
768
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
769
|
+
Accept:
|
770
|
+
- "*/*"
|
771
|
+
Host:
|
772
|
+
- api.steemitdev.com
|
773
|
+
Content-Length:
|
774
|
+
- '92'
|
775
|
+
response:
|
776
|
+
status:
|
777
|
+
code: 200
|
778
|
+
message: OK
|
779
|
+
headers:
|
780
|
+
Date:
|
781
|
+
- Sat, 17 Oct 2020 04:34:19 GMT
|
782
|
+
Content-Type:
|
783
|
+
- application/json
|
784
|
+
Content-Length:
|
785
|
+
- '203'
|
786
|
+
Connection:
|
787
|
+
- keep-alive
|
788
|
+
Server:
|
789
|
+
- nginx
|
790
|
+
X-Jussi-Request-Id:
|
791
|
+
- '000448018756937049'
|
792
|
+
X-Amzn-Trace-Id:
|
793
|
+
- Root=1-5f8a744b-31f3edad3c3439d46677a090
|
794
|
+
Access-Control-Allow-Origin:
|
795
|
+
- "*"
|
796
|
+
Access-Control-Allow-Methods:
|
797
|
+
- GET, POST, OPTIONS
|
798
|
+
Access-Control-Allow-Headers:
|
799
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
800
|
+
Strict-Transport-Security:
|
801
|
+
- max-age=31557600; includeSubDomains; preload
|
802
|
+
Content-Security-Policy:
|
803
|
+
- upgrade-insecure-requests
|
804
|
+
body:
|
805
|
+
encoding: UTF-8
|
806
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}},"id":48}'
|
807
|
+
recorded_at: Sat, 17 Oct 2020 04:34:19 GMT
|
808
|
+
- request:
|
809
|
+
method: post
|
810
|
+
uri: https://api.steemitdev.com/
|
811
|
+
body:
|
812
|
+
encoding: UTF-8
|
813
|
+
string: '{"jsonrpc":"2.0","id":49,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
814
|
+
headers:
|
815
|
+
Content-Type:
|
816
|
+
- application/json; charset=utf-8
|
817
|
+
User-Agent:
|
818
|
+
- steem-ruby/0.9.4
|
819
|
+
Accept-Encoding:
|
820
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
821
|
+
Accept:
|
822
|
+
- "*/*"
|
823
|
+
Host:
|
824
|
+
- api.steemitdev.com
|
825
|
+
Content-Length:
|
826
|
+
- '124'
|
827
|
+
response:
|
828
|
+
status:
|
829
|
+
code: 200
|
830
|
+
message: OK
|
831
|
+
headers:
|
832
|
+
Date:
|
833
|
+
- Sat, 17 Oct 2020 04:34:20 GMT
|
834
|
+
Content-Type:
|
835
|
+
- application/json
|
836
|
+
Content-Length:
|
837
|
+
- '175'
|
838
|
+
Connection:
|
839
|
+
- keep-alive
|
840
|
+
Server:
|
841
|
+
- nginx
|
842
|
+
X-Jussi-Error-Id:
|
843
|
+
- fb5fb582-9314-4da1-8402-24edfbbaeb2b
|
844
|
+
X-Jussi-Request-Id:
|
845
|
+
- '000611050701570875'
|
846
|
+
X-Amzn-Trace-Id:
|
847
|
+
- Root=1-5f8a744c-4325ed5e215f4d9b1b2e5ae6
|
848
|
+
Access-Control-Allow-Origin:
|
849
|
+
- "*"
|
850
|
+
Access-Control-Allow-Methods:
|
851
|
+
- GET, POST, OPTIONS
|
852
|
+
Access-Control-Allow-Headers:
|
853
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
854
|
+
Strict-Transport-Security:
|
855
|
+
- max-age=31557600; includeSubDomains; preload
|
856
|
+
Content-Security-Policy:
|
857
|
+
- upgrade-insecure-requests
|
858
|
+
body:
|
859
|
+
encoding: UTF-8
|
860
|
+
string: '{"jsonrpc":"2.0","id":49,"error":{"code":-32603,"message":"Internal
|
861
|
+
Error","data":{"error_id":"fb5fb582-9314-4da1-8402-24edfbbaeb2b","jussi_request_id":"000827352505162801"}}}'
|
862
|
+
recorded_at: Sat, 17 Oct 2020 04:34:20 GMT
|
863
|
+
- request:
|
864
|
+
method: post
|
865
|
+
uri: https://api.steemitdev.com/
|
866
|
+
body:
|
867
|
+
encoding: UTF-8
|
868
|
+
string: '{"jsonrpc":"2.0","id":95,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
869
|
+
headers:
|
870
|
+
Content-Type:
|
871
|
+
- application/json; charset=utf-8
|
872
|
+
User-Agent:
|
873
|
+
- steem-ruby/0.9.4
|
874
|
+
Accept-Encoding:
|
875
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
876
|
+
Accept:
|
877
|
+
- "*/*"
|
878
|
+
Host:
|
879
|
+
- api.steemitdev.com
|
880
|
+
Content-Length:
|
881
|
+
- '92'
|
882
|
+
response:
|
883
|
+
status:
|
884
|
+
code: 200
|
885
|
+
message: OK
|
886
|
+
headers:
|
887
|
+
Date:
|
888
|
+
- Sat, 17 Oct 2020 04:40:11 GMT
|
889
|
+
Content-Type:
|
890
|
+
- application/json
|
891
|
+
Content-Length:
|
892
|
+
- '203'
|
893
|
+
Connection:
|
894
|
+
- keep-alive
|
895
|
+
Server:
|
896
|
+
- nginx
|
897
|
+
X-Jussi-Cache-Hit:
|
898
|
+
- appbase.jsonrpc.get_signature.params={"method":"network_broadcast_api.broadcast_transaction"}
|
899
|
+
X-Jussi-Request-Id:
|
900
|
+
- '001078973211048406'
|
901
|
+
X-Amzn-Trace-Id:
|
902
|
+
- Root=1-5f8a75ab-592c4bfa4e8dac2c303f9efa
|
903
|
+
Access-Control-Allow-Origin:
|
904
|
+
- "*"
|
905
|
+
Access-Control-Allow-Methods:
|
906
|
+
- GET, POST, OPTIONS
|
907
|
+
Access-Control-Allow-Headers:
|
908
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
909
|
+
Strict-Transport-Security:
|
910
|
+
- max-age=31557600; includeSubDomains; preload
|
911
|
+
Content-Security-Policy:
|
912
|
+
- upgrade-insecure-requests
|
913
|
+
body:
|
914
|
+
encoding: UTF-8
|
915
|
+
string: '{"id":95,"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}}}'
|
916
|
+
recorded_at: Sat, 17 Oct 2020 04:40:11 GMT
|
917
|
+
- request:
|
918
|
+
method: post
|
919
|
+
uri: https://api.steemitdev.com/
|
920
|
+
body:
|
921
|
+
encoding: UTF-8
|
922
|
+
string: '{"jsonrpc":"2.0","id":96,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
923
|
+
headers:
|
924
|
+
Content-Type:
|
925
|
+
- application/json; charset=utf-8
|
926
|
+
User-Agent:
|
927
|
+
- steem-ruby/0.9.4
|
928
|
+
Accept-Encoding:
|
929
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
930
|
+
Accept:
|
931
|
+
- "*/*"
|
932
|
+
Host:
|
933
|
+
- api.steemitdev.com
|
934
|
+
Content-Length:
|
935
|
+
- '124'
|
936
|
+
response:
|
937
|
+
status:
|
938
|
+
code: 200
|
939
|
+
message: OK
|
940
|
+
headers:
|
941
|
+
Date:
|
942
|
+
- Sat, 17 Oct 2020 04:40:11 GMT
|
943
|
+
Content-Type:
|
944
|
+
- application/json
|
945
|
+
Content-Length:
|
946
|
+
- '175'
|
947
|
+
Connection:
|
948
|
+
- keep-alive
|
949
|
+
Server:
|
950
|
+
- nginx
|
951
|
+
X-Jussi-Error-Id:
|
952
|
+
- ec0079b3-788b-4405-ade4-06068efd8745
|
953
|
+
X-Jussi-Request-Id:
|
954
|
+
- '000522881613206599'
|
955
|
+
X-Amzn-Trace-Id:
|
956
|
+
- Root=1-5f8a75ab-7d57a9b227eb927955dd3c0f
|
957
|
+
Access-Control-Allow-Origin:
|
958
|
+
- "*"
|
959
|
+
Access-Control-Allow-Methods:
|
960
|
+
- GET, POST, OPTIONS
|
961
|
+
Access-Control-Allow-Headers:
|
962
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
963
|
+
Strict-Transport-Security:
|
964
|
+
- max-age=31557600; includeSubDomains; preload
|
965
|
+
Content-Security-Policy:
|
966
|
+
- upgrade-insecure-requests
|
967
|
+
body:
|
968
|
+
encoding: UTF-8
|
969
|
+
string: '{"jsonrpc":"2.0","id":96,"error":{"code":-32603,"message":"Internal
|
970
|
+
Error","data":{"error_id":"ec0079b3-788b-4405-ade4-06068efd8745","jussi_request_id":"000519105133827554"}}}'
|
971
|
+
recorded_at: Sat, 17 Oct 2020 04:40:11 GMT
|
972
|
+
- request:
|
973
|
+
method: post
|
974
|
+
uri: https://api.steemitdev.com/
|
975
|
+
body:
|
976
|
+
encoding: UTF-8
|
977
|
+
string: '{"jsonrpc":"2.0","id":27,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
978
|
+
headers:
|
979
|
+
Content-Type:
|
980
|
+
- application/json; charset=utf-8
|
981
|
+
User-Agent:
|
982
|
+
- steem-ruby/0.9.4
|
983
|
+
Accept-Encoding:
|
984
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
985
|
+
Accept:
|
986
|
+
- "*/*"
|
987
|
+
Host:
|
988
|
+
- api.steemitdev.com
|
989
|
+
Content-Length:
|
990
|
+
- '68'
|
991
|
+
response:
|
992
|
+
status:
|
993
|
+
code: 200
|
994
|
+
message: OK
|
995
|
+
headers:
|
996
|
+
Date:
|
997
|
+
- Sat, 17 Oct 2020 04:56:11 GMT
|
998
|
+
Content-Type:
|
999
|
+
- application/json
|
1000
|
+
Content-Length:
|
1001
|
+
- '203'
|
1002
|
+
Connection:
|
1003
|
+
- keep-alive
|
1004
|
+
Server:
|
1005
|
+
- nginx
|
1006
|
+
X-Jussi-Request-Id:
|
1007
|
+
- '000503600862290014'
|
1008
|
+
X-Amzn-Trace-Id:
|
1009
|
+
- Root=1-5f8a7969-1178829b566e9355380c63b0
|
1010
|
+
Access-Control-Allow-Origin:
|
1011
|
+
- "*"
|
1012
|
+
Access-Control-Allow-Methods:
|
1013
|
+
- GET, POST, OPTIONS
|
1014
|
+
Access-Control-Allow-Headers:
|
1015
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1016
|
+
Strict-Transport-Security:
|
1017
|
+
- max-age=31557600; includeSubDomains; preload
|
1018
|
+
Content-Security-Policy:
|
1019
|
+
- upgrade-insecure-requests
|
1020
|
+
body:
|
1021
|
+
encoding: UTF-8
|
1022
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}},"id":27}'
|
1023
|
+
recorded_at: Sat, 17 Oct 2020 04:56:11 GMT
|
1024
|
+
- request:
|
1025
|
+
method: post
|
1026
|
+
uri: https://api.steemitdev.com/
|
1027
|
+
body:
|
1028
|
+
encoding: UTF-8
|
1029
|
+
string: '{"jsonrpc":"2.0","id":28,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
1030
|
+
headers:
|
1031
|
+
Content-Type:
|
1032
|
+
- application/json; charset=utf-8
|
1033
|
+
User-Agent:
|
1034
|
+
- steem-ruby/0.9.4
|
1035
|
+
Accept-Encoding:
|
1036
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1037
|
+
Accept:
|
1038
|
+
- "*/*"
|
1039
|
+
Host:
|
1040
|
+
- api.steemitdev.com
|
1041
|
+
Content-Length:
|
1042
|
+
- '124'
|
1043
|
+
response:
|
1044
|
+
status:
|
1045
|
+
code: 200
|
1046
|
+
message: OK
|
1047
|
+
headers:
|
1048
|
+
Date:
|
1049
|
+
- Sat, 17 Oct 2020 04:56:11 GMT
|
1050
|
+
Content-Type:
|
1051
|
+
- application/json
|
1052
|
+
Content-Length:
|
1053
|
+
- '175'
|
1054
|
+
Connection:
|
1055
|
+
- keep-alive
|
1056
|
+
Server:
|
1057
|
+
- nginx
|
1058
|
+
X-Jussi-Error-Id:
|
1059
|
+
- 5f555d02-7190-4a81-9a18-1537bb47f912
|
1060
|
+
X-Jussi-Request-Id:
|
1061
|
+
- '000845600652263715'
|
1062
|
+
X-Amzn-Trace-Id:
|
1063
|
+
- Root=1-5f8a796b-6d30014c303f0356091a201e
|
1064
|
+
Access-Control-Allow-Origin:
|
1065
|
+
- "*"
|
1066
|
+
Access-Control-Allow-Methods:
|
1067
|
+
- GET, POST, OPTIONS
|
1068
|
+
Access-Control-Allow-Headers:
|
1069
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1070
|
+
Strict-Transport-Security:
|
1071
|
+
- max-age=31557600; includeSubDomains; preload
|
1072
|
+
Content-Security-Policy:
|
1073
|
+
- upgrade-insecure-requests
|
1074
|
+
body:
|
1075
|
+
encoding: UTF-8
|
1076
|
+
string: '{"jsonrpc":"2.0","id":28,"error":{"code":-32603,"message":"Internal
|
1077
|
+
Error","data":{"error_id":"5f555d02-7190-4a81-9a18-1537bb47f912","jussi_request_id":"000072785337380522"}}}'
|
1078
|
+
recorded_at: Sat, 17 Oct 2020 04:56:11 GMT
|
1079
|
+
- request:
|
1080
|
+
method: post
|
1081
|
+
uri: https://api.steemitdev.com/
|
1082
|
+
body:
|
1083
|
+
encoding: UTF-8
|
1084
|
+
string: '{"jsonrpc":"2.0","id":88,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
|
1085
|
+
headers:
|
1086
|
+
Content-Type:
|
1087
|
+
- application/json; charset=utf-8
|
1088
|
+
User-Agent:
|
1089
|
+
- steem-ruby/0.9.4
|
1090
|
+
Accept-Encoding:
|
1091
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1092
|
+
Accept:
|
1093
|
+
- "*/*"
|
1094
|
+
Host:
|
1095
|
+
- api.steemit.com
|
1096
|
+
Content-Length:
|
1097
|
+
- '83'
|
1098
|
+
response:
|
1099
|
+
status:
|
1100
|
+
code: 200
|
1101
|
+
message: OK
|
1102
|
+
headers:
|
1103
|
+
Date:
|
1104
|
+
- Sat, 17 Oct 2020 05:03:38 GMT
|
1105
|
+
Content-Type:
|
1106
|
+
- application/json
|
1107
|
+
Content-Length:
|
1108
|
+
- '203'
|
1109
|
+
Connection:
|
1110
|
+
- keep-alive
|
1111
|
+
Server:
|
1112
|
+
- nginx
|
1113
|
+
X-Jussi-Request-Id:
|
1114
|
+
- '000304897153710571'
|
1115
|
+
X-Amzn-Trace-Id:
|
1116
|
+
- Root=1-5f8a7b2a-1ad5d25a1ab1788b76225979
|
1117
|
+
Access-Control-Allow-Origin:
|
1118
|
+
- "*"
|
1119
|
+
Access-Control-Allow-Methods:
|
1120
|
+
- GET, POST, OPTIONS
|
1121
|
+
Access-Control-Allow-Headers:
|
1122
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1123
|
+
Strict-Transport-Security:
|
1124
|
+
- max-age=31557600; includeSubDomains; preload
|
1125
|
+
Content-Security-Policy:
|
1126
|
+
- upgrade-insecure-requests
|
1127
|
+
body:
|
1128
|
+
encoding: UTF-8
|
1129
|
+
string: '{"jsonrpc":"2.0","result":{"args":{"trx":{"ref_block_num":0,"ref_block_prefix":0,"expiration":"1970-01-01T00:00:00","operations":[],"extensions":[],"signatures":[]},"max_block_age":-1},"ret":{}},"id":88}'
|
1130
|
+
recorded_at: Sat, 17 Oct 2020 05:03:38 GMT
|
1131
|
+
- request:
|
1132
|
+
method: post
|
1133
|
+
uri: https://api.steemitdev.com/
|
1134
|
+
body:
|
1135
|
+
encoding: UTF-8
|
1136
|
+
string: '{"jsonrpc":"2.0","id":89,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
|
1137
|
+
headers:
|
1138
|
+
Content-Type:
|
1139
|
+
- application/json; charset=utf-8
|
1140
|
+
User-Agent:
|
1141
|
+
- steem-ruby/0.9.4
|
1142
|
+
Accept-Encoding:
|
1143
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1144
|
+
Accept:
|
1145
|
+
- "*/*"
|
1146
|
+
Host:
|
1147
|
+
- api.steemit.com
|
1148
|
+
Content-Length:
|
1149
|
+
- '124'
|
1150
|
+
response:
|
1151
|
+
status:
|
1152
|
+
code: 200
|
1153
|
+
message: OK
|
1154
|
+
headers:
|
1155
|
+
Date:
|
1156
|
+
- Sat, 17 Oct 2020 05:03:38 GMT
|
1157
|
+
Content-Type:
|
1158
|
+
- application/json
|
1159
|
+
Content-Length:
|
1160
|
+
- '175'
|
1161
|
+
Connection:
|
1162
|
+
- keep-alive
|
1163
|
+
Server:
|
1164
|
+
- nginx
|
1165
|
+
X-Jussi-Error-Id:
|
1166
|
+
- f04d43ba-38c9-44c7-9b61-36cdb2047f7d
|
1167
|
+
X-Jussi-Request-Id:
|
1168
|
+
- '000645819620703430'
|
1169
|
+
X-Amzn-Trace-Id:
|
1170
|
+
- Root=1-5f8a7b2a-6644d8c942c1a7d239fe8ee4
|
1171
|
+
Access-Control-Allow-Origin:
|
1172
|
+
- "*"
|
1173
|
+
Access-Control-Allow-Methods:
|
1174
|
+
- GET, POST, OPTIONS
|
1175
|
+
Access-Control-Allow-Headers:
|
1176
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1177
|
+
Strict-Transport-Security:
|
1178
|
+
- max-age=31557600; includeSubDomains; preload
|
1179
|
+
Content-Security-Policy:
|
1180
|
+
- upgrade-insecure-requests
|
1181
|
+
body:
|
1182
|
+
encoding: UTF-8
|
1183
|
+
string: '{"jsonrpc":"2.0","id":89,"error":{"code":-32603,"message":"Internal
|
1184
|
+
Error","data":{"error_id":"f04d43ba-38c9-44c7-9b61-36cdb2047f7d","jussi_request_id":"000758617590502018"}}}'
|
1185
|
+
recorded_at: Sat, 17 Oct 2020 05:03:38 GMT
|
1186
|
+
recorded_with: VCR 6.0.0
|