radiator 0.4.6pre1 → 0.4.8.pre.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -12
  3. data/Rakefile +53 -23
  4. data/lib/radiator.rb +3 -1
  5. data/lib/radiator/api.rb +111 -16
  6. data/lib/radiator/bridge.rb +34 -0
  7. data/lib/radiator/broadcast_operations.json +7 -7
  8. data/lib/radiator/chain.rb +1 -1
  9. data/lib/radiator/chain_config.rb +9 -2
  10. data/lib/radiator/database_api.rb +1 -1
  11. data/lib/radiator/error_parser.rb +1 -1
  12. data/lib/radiator/follow_api.rb +1 -1
  13. data/lib/radiator/market_history_api.rb +1 -1
  14. data/lib/radiator/mixins/acts_as_poster.rb +4 -4
  15. data/lib/radiator/operation.rb +3 -2
  16. data/lib/radiator/operation_types.rb +43 -27
  17. data/lib/radiator/ssc/base_steem_smart_contract_rpc.rb +1 -1
  18. data/lib/radiator/stream.rb +21 -8
  19. data/lib/radiator/transaction.rb +43 -3
  20. data/lib/radiator/type/amount.rb +8 -50
  21. data/lib/radiator/type/beneficiaries.rb +8 -1
  22. data/lib/radiator/type/price.rb +2 -2
  23. data/lib/radiator/version.rb +1 -1
  24. data/radiator.gemspec +17 -13
  25. data/test/fixtures/empty.json +1 -0
  26. data/test/fixtures/error.json +29 -0
  27. data/test/fixtures/follow_api_get_followers.json +1 -0
  28. data/test/fixtures/get_account.json +165 -0
  29. data/test/fixtures/get_account_count.json +1 -0
  30. data/test/fixtures/get_account_references.json +1 -0
  31. data/test/fixtures/get_block.json +193 -0
  32. data/test/fixtures/get_dynamic_global_properties.json +32 -0
  33. data/test/fixtures/get_feed_history.json +684 -0
  34. data/test/fixtures/get_hardfork_version.json +1 -0
  35. data/test/fixtures/get_key_references.json +14 -0
  36. data/test/fixtures/get_stats_for_time.json +57 -0
  37. data/test/fixtures/get_vesting_delegation.json +936 -0
  38. data/test/fixtures/golos_get_dynamic_global_properties.json +32 -0
  39. data/test/fixtures/market_history_api_get_market_history_buckets.json +1 -0
  40. data/test/fixtures/market_history_api_get_order_book.json +109 -0
  41. data/test/fixtures/market_history_api_get_recent_trades.json +55 -0
  42. data/test/fixtures/market_history_api_get_ticker.json +11 -0
  43. data/test/fixtures/market_history_api_get_volume.json +1 -0
  44. data/test/fixtures/null.json +1 -0
  45. data/test/fixtures/vcr_cassettes/account_by_key_api_all_methods.yml +1465 -0
  46. data/test/fixtures/vcr_cassettes/account_by_key_api_jsonrpc.yml +199 -0
  47. data/test/fixtures/vcr_cassettes/api_all_methods.yml +13802 -0
  48. data/test/fixtures/vcr_cassettes/api_jsonrpc.yml +53 -0
  49. data/test/fixtures/vcr_cassettes/base_per_debt.yml +11068 -0
  50. data/test/fixtures/vcr_cassettes/base_per_mvest.yml +6024 -0
  51. data/test/fixtures/vcr_cassettes/block_time.yml +5368 -0
  52. data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +1723 -0
  53. data/test/fixtures/vcr_cassettes/chain_stats_api_jsonrpc.yml +51 -0
  54. data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +13770 -0
  55. data/test/fixtures/vcr_cassettes/condenser_api_jsonrpc.yml +103 -0
  56. data/test/fixtures/vcr_cassettes/expiration_initialize.yml +16108 -0
  57. data/test/fixtures/vcr_cassettes/find_account.yml +5732 -0
  58. data/test/fixtures/vcr_cassettes/find_block.yml +5322 -0
  59. data/test/fixtures/vcr_cassettes/find_comment.yml +16386 -0
  60. data/test/fixtures/vcr_cassettes/follow_api_jsonrpc.yml +99 -0
  61. data/test/fixtures/vcr_cassettes/get_account_count.yml +783 -0
  62. data/test/fixtures/vcr_cassettes/get_account_references.yml +773 -0
  63. data/test/fixtures/vcr_cassettes/get_accounts.yml +918 -0
  64. data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +773 -0
  65. data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +893 -0
  66. data/test/fixtures/vcr_cassettes/get_feed_history.yml +1432 -0
  67. data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +835 -0
  68. data/test/fixtures/vcr_cassettes/get_key_references.yml +1571 -0
  69. data/test/fixtures/vcr_cassettes/get_market_history.yml +1563 -0
  70. data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +1665 -0
  71. data/test/fixtures/vcr_cassettes/get_order_book.yml +1459 -0
  72. data/test/fixtures/vcr_cassettes/get_recent_trades.yml +1459 -0
  73. data/test/fixtures/vcr_cassettes/get_ticker.yml +1563 -0
  74. data/test/fixtures/vcr_cassettes/get_trade_history.yml +1459 -0
  75. data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +731 -0
  76. data/test/fixtures/vcr_cassettes/get_volume.yml +1561 -0
  77. data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +835 -0
  78. data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +831 -0
  79. data/test/fixtures/vcr_cassettes/market_history_api_all_methods.yml +10191 -0
  80. data/test/fixtures/vcr_cassettes/market_history_api_jsonrpc.yml +51 -0
  81. data/test/fixtures/vcr_cassettes/network_broadcast_api_all_methods.yml +2455 -0
  82. data/test/fixtures/vcr_cassettes/network_broadcast_api_jsonrpc.yml +51 -0
  83. data/test/fixtures/vcr_cassettes/properties.yml +5551 -0
  84. data/test/fixtures/vcr_cassettes/recover_transaction.yml +1815 -0
  85. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info.yml +90 -0
  86. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info_invalid.yml +88 -0
  87. data/test/fixtures/vcr_cassettes/ssc_blockchain_latest_block_info.yml +90 -0
  88. data/test/fixtures/vcr_cassettes/ssc_blockchain_transaction_info.yml +90 -0
  89. data/test/fixtures/vcr_cassettes/ssc_contracts_contract.yml +364 -0
  90. data/test/fixtures/vcr_cassettes/ssc_contracts_find.yml +89 -0
  91. data/test/fixtures/vcr_cassettes/ssc_contracts_find_one.yml +87 -0
  92. data/test/fixtures/vcr_cassettes/stream_jsonrpc.yml +27502 -0
  93. data/test/fixtures/vcr_cassettes/tag_api_jsonrpc.yml +155 -0
  94. data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +17597 -0
  95. data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +61 -0
  96. data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +13038 -0
  97. data/test/fixtures/vcr_cassettes/valid_chains.yml +11450 -0
  98. data/test/radiator/account_by_key_api_test.rb +46 -0
  99. data/test/radiator/api_test.rb +135 -0
  100. data/test/radiator/chain_stats_api_test.rb +49 -0
  101. data/test/radiator/chain_test.rb +153 -0
  102. data/test/radiator/condenser_api_test.rb +48 -0
  103. data/test/radiator/follow_api_test.rb +48 -0
  104. data/test/radiator/market_history_api_test.rb +100 -0
  105. data/test/radiator/network_broadcast_api_test.rb +48 -0
  106. data/test/radiator/operation_test.rb +116 -0
  107. data/test/radiator/ssc/blockchain_test.rb +58 -0
  108. data/test/radiator/ssc/contracts_test.rb +65 -0
  109. data/test/radiator/stream_test.rb +48 -0
  110. data/test/radiator/tag_api_test.rb +40 -0
  111. data/test/radiator/transaction_test.rb +755 -0
  112. data/test/test_helper.rb +66 -0
  113. metadata +187 -79
  114. data/.codeclimate.yml +0 -19
  115. data/.gitignore +0 -52
  116. data/.travis.yml +0 -23
  117. data/gource.sh +0 -8
  118. data/images/Anthony Martin.png +0 -0
  119. data/images/Marvin Hofmann.jpg +0 -0
  120. data/images/Marvin Hofmann.png +0 -0
  121. data/lib/steem.rb +0 -17
@@ -0,0 +1,1723 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.steemitdev.com/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"jsonrpc":"2.0","id":59,"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.5
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, 07 Nov 2020 19:33:39 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
+ - '001070247213263072'
39
+ X-Amzn-Trace-Id:
40
+ - Root=1-5fa6f692-5b08b7225aba6eb1255a808c
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":59}'
54
+ recorded_at: Sat, 07 Nov 2020 19:33:39 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://api.steemitdev.com/
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"jsonrpc":"2.0","id":60,"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.5
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, 07 Nov 2020 19:33:39 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
+ - 3465f497-b6b9-4ca8-9906-d00c49e87874
91
+ X-Jussi-Request-Id:
92
+ - '000012329038001715'
93
+ X-Amzn-Trace-Id:
94
+ - Root=1-5fa6f693-7e27dfd7484664f801d8aa82
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":60,"error":{"code":-32603,"message":"Internal
108
+ Error","data":{"error_id":"3465f497-b6b9-4ca8-9906-d00c49e87874","jussi_request_id":"000964223559140613"}}}'
109
+ recorded_at: Sat, 07 Nov 2020 19:33:39 GMT
110
+ - request:
111
+ method: post
112
+ uri: https://api.steemitdev.com/
113
+ body:
114
+ encoding: UTF-8
115
+ string: '{"jsonrpc":"2.0","id":123,"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.5
121
+ Accept-Encoding:
122
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
123
+ Accept:
124
+ - "*/*"
125
+ Host:
126
+ - api.steemitdev.com
127
+ Content-Length:
128
+ - '93'
129
+ response:
130
+ status:
131
+ code: 200
132
+ message: OK
133
+ headers:
134
+ Date:
135
+ - Sat, 07 Nov 2020 20:16:39 GMT
136
+ Content-Type:
137
+ - application/json
138
+ Content-Length:
139
+ - '204'
140
+ Connection:
141
+ - keep-alive
142
+ Server:
143
+ - nginx
144
+ X-Jussi-Request-Id:
145
+ - '000486617948084564'
146
+ X-Amzn-Trace-Id:
147
+ - Root=1-5fa700a6-75a1af2b54523f9f632821bc
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":123}'
161
+ recorded_at: Sat, 07 Nov 2020 20:16:39 GMT
162
+ - request:
163
+ method: post
164
+ uri: https://api.steemitdev.com/
165
+ body:
166
+ encoding: UTF-8
167
+ string: '{"jsonrpc":"2.0","id":124,"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.5
173
+ Accept-Encoding:
174
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
175
+ Accept:
176
+ - "*/*"
177
+ Host:
178
+ - api.steemitdev.com
179
+ Content-Length:
180
+ - '125'
181
+ response:
182
+ status:
183
+ code: 200
184
+ message: OK
185
+ headers:
186
+ Date:
187
+ - Sat, 07 Nov 2020 20:16:40 GMT
188
+ Content-Type:
189
+ - application/json
190
+ Content-Length:
191
+ - '176'
192
+ Connection:
193
+ - keep-alive
194
+ Server:
195
+ - nginx
196
+ X-Jussi-Error-Id:
197
+ - 203c8ccf-9828-4a64-b0d1-50392d06e0d7
198
+ X-Jussi-Request-Id:
199
+ - '000926599898119499'
200
+ X-Amzn-Trace-Id:
201
+ - Root=1-5fa700a8-5737473a01254aa86461938f
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":124,"error":{"code":-32603,"message":"Internal
215
+ Error","data":{"error_id":"203c8ccf-9828-4a64-b0d1-50392d06e0d7","jussi_request_id":"000835458987829498"}}}'
216
+ recorded_at: Sat, 07 Nov 2020 20:16:40 GMT
217
+ - request:
218
+ method: post
219
+ uri: https://api.steemitdev.com/
220
+ body:
221
+ encoding: UTF-8
222
+ string: '{"jsonrpc":"2.0","id":5,"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.5
228
+ Accept-Encoding:
229
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
230
+ Accept:
231
+ - "*/*"
232
+ Host:
233
+ - api.steemitdev.com
234
+ Content-Length:
235
+ - '67'
236
+ response:
237
+ status:
238
+ code: 200
239
+ message: OK
240
+ headers:
241
+ Date:
242
+ - Sat, 07 Nov 2020 20:20:31 GMT
243
+ Content-Type:
244
+ - application/json
245
+ Content-Length:
246
+ - '202'
247
+ Connection:
248
+ - keep-alive
249
+ Server:
250
+ - nginx
251
+ X-Jussi-Cache-Hit:
252
+ - appbase.jsonrpc.get_signature.params={"method":"network_broadcast_api.broadcast_transaction"}
253
+ X-Jussi-Request-Id:
254
+ - '000857414213632530'
255
+ X-Amzn-Trace-Id:
256
+ - Root=1-5fa7018f-3f762eee49e1cc375178006e
257
+ Access-Control-Allow-Origin:
258
+ - "*"
259
+ Access-Control-Allow-Methods:
260
+ - GET, POST, OPTIONS
261
+ Access-Control-Allow-Headers:
262
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
263
+ Strict-Transport-Security:
264
+ - max-age=31557600; includeSubDomains; preload
265
+ Content-Security-Policy:
266
+ - upgrade-insecure-requests
267
+ body:
268
+ encoding: UTF-8
269
+ string: '{"id":5,"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":{}}}'
270
+ recorded_at: Sat, 07 Nov 2020 20:20:31 GMT
271
+ - request:
272
+ method: post
273
+ uri: https://api.steemitdev.com/
274
+ body:
275
+ encoding: UTF-8
276
+ string: '{"jsonrpc":"2.0","id":6,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
277
+ headers:
278
+ Content-Type:
279
+ - application/json; charset=utf-8
280
+ User-Agent:
281
+ - steem-ruby/0.9.5
282
+ Accept-Encoding:
283
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
284
+ Accept:
285
+ - "*/*"
286
+ Host:
287
+ - api.steemitdev.com
288
+ Content-Length:
289
+ - '123'
290
+ response:
291
+ status:
292
+ code: 200
293
+ message: OK
294
+ headers:
295
+ Date:
296
+ - Sat, 07 Nov 2020 20:20:32 GMT
297
+ Content-Type:
298
+ - application/json
299
+ Content-Length:
300
+ - '174'
301
+ Connection:
302
+ - keep-alive
303
+ Server:
304
+ - nginx
305
+ X-Jussi-Error-Id:
306
+ - fb5fa8de-a3d8-4bac-9df0-4589b0bdd5d8
307
+ X-Jussi-Request-Id:
308
+ - '000806718573285509'
309
+ X-Amzn-Trace-Id:
310
+ - Root=1-5fa70190-6ddc3b5b1a5739d42c70fdb8
311
+ Access-Control-Allow-Origin:
312
+ - "*"
313
+ Access-Control-Allow-Methods:
314
+ - GET, POST, OPTIONS
315
+ Access-Control-Allow-Headers:
316
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
317
+ Strict-Transport-Security:
318
+ - max-age=31557600; includeSubDomains; preload
319
+ Content-Security-Policy:
320
+ - upgrade-insecure-requests
321
+ body:
322
+ encoding: UTF-8
323
+ string: '{"jsonrpc":"2.0","id":6,"error":{"code":-32603,"message":"Internal
324
+ Error","data":{"error_id":"fb5fa8de-a3d8-4bac-9df0-4589b0bdd5d8","jussi_request_id":"000224842970593666"}}}'
325
+ recorded_at: Sat, 07 Nov 2020 20:20:32 GMT
326
+ - request:
327
+ method: post
328
+ uri: https://api.steemitdev.com/
329
+ body:
330
+ encoding: UTF-8
331
+ string: '{"jsonrpc":"2.0","id":87,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
332
+ headers:
333
+ Content-Type:
334
+ - application/json; charset=utf-8
335
+ User-Agent:
336
+ - steem-ruby/0.9.5
337
+ Accept-Encoding:
338
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
339
+ Accept:
340
+ - "*/*"
341
+ Host:
342
+ - api.steemit.com
343
+ Content-Length:
344
+ - '80'
345
+ response:
346
+ status:
347
+ code: 200
348
+ message: OK
349
+ headers:
350
+ Date:
351
+ - Sat, 07 Nov 2020 20:27:42 GMT
352
+ Content-Type:
353
+ - application/json
354
+ Content-Length:
355
+ - '203'
356
+ Connection:
357
+ - keep-alive
358
+ Server:
359
+ - nginx
360
+ X-Jussi-Request-Id:
361
+ - '001041725737468352'
362
+ X-Amzn-Trace-Id:
363
+ - Root=1-5fa7033d-3069a7f271b4a1e433b7de62
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: '{"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":87}'
377
+ recorded_at: Sat, 07 Nov 2020 20:27:42 GMT
378
+ - request:
379
+ method: post
380
+ uri: https://api.steemitdev.com/
381
+ body:
382
+ encoding: UTF-8
383
+ string: '{"jsonrpc":"2.0","id":88,"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.5
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, 07 Nov 2020 20:27:43 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
+ - 1094d36f-0a19-4c5e-93d0-af31590a45ab
414
+ X-Jussi-Request-Id:
415
+ - '000336870220664460'
416
+ X-Amzn-Trace-Id:
417
+ - Root=1-5fa7033f-7e0c57046e77af91054b0499
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":88,"error":{"code":-32603,"message":"Internal
431
+ Error","data":{"error_id":"1094d36f-0a19-4c5e-93d0-af31590a45ab","jussi_request_id":"000639664254204178"}}}'
432
+ recorded_at: Sat, 07 Nov 2020 20:27:43 GMT
433
+ - request:
434
+ method: post
435
+ uri: https://api.steemitdev.com/
436
+ body:
437
+ encoding: UTF-8
438
+ string: '{"jsonrpc":"2.0","id":70,"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.5
444
+ Accept-Encoding:
445
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
446
+ Accept:
447
+ - "*/*"
448
+ Host:
449
+ - api.steemitdev.com
450
+ Content-Length:
451
+ - '78'
452
+ response:
453
+ status:
454
+ code: 200
455
+ message: OK
456
+ headers:
457
+ Date:
458
+ - Sat, 07 Nov 2020 20:31:19 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
+ - '000820214769501149'
469
+ X-Amzn-Trace-Id:
470
+ - Root=1-5fa70416-2a3d25c33a28b90e48f0ce0a
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":70}'
484
+ recorded_at: Sat, 07 Nov 2020 20:31:20 GMT
485
+ - request:
486
+ method: post
487
+ uri: https://api.steemitdev.com/
488
+ body:
489
+ encoding: UTF-8
490
+ string: '{"jsonrpc":"2.0","id":71,"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.5
496
+ Accept-Encoding:
497
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
498
+ Accept:
499
+ - "*/*"
500
+ Host:
501
+ - api.steemitdev.com
502
+ Content-Length:
503
+ - '124'
504
+ response:
505
+ status:
506
+ code: 200
507
+ message: OK
508
+ headers:
509
+ Date:
510
+ - Sat, 07 Nov 2020 20:31:20 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
+ - 8270fff4-a3a4-40d7-9976-fb357cc2a5c7
521
+ X-Jussi-Request-Id:
522
+ - '000789370594855578'
523
+ X-Amzn-Trace-Id:
524
+ - Root=1-5fa70418-3a3f01a35c9ed56e79eb7c0a
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":71,"error":{"code":-32603,"message":"Internal
538
+ Error","data":{"error_id":"8270fff4-a3a4-40d7-9976-fb357cc2a5c7","jussi_request_id":"000433127643003547"}}}'
539
+ recorded_at: Sat, 07 Nov 2020 20:31:20 GMT
540
+ - request:
541
+ method: post
542
+ uri: https://api.steemitdev.com/
543
+ body:
544
+ encoding: UTF-8
545
+ string: '{"jsonrpc":"2.0","id":68,"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.5
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
+ - '78'
559
+ response:
560
+ status:
561
+ code: 200
562
+ message: OK
563
+ headers:
564
+ Date:
565
+ - Sat, 07 Nov 2020 20:35:14 GMT
566
+ Content-Type:
567
+ - application/json
568
+ Content-Length:
569
+ - '203'
570
+ Connection:
571
+ - keep-alive
572
+ Server:
573
+ - nginx
574
+ X-Jussi-Request-Id:
575
+ - '000307345409103316'
576
+ X-Amzn-Trace-Id:
577
+ - Root=1-5fa70502-3214d665696c8629065690e3
578
+ Access-Control-Allow-Origin:
579
+ - "*"
580
+ Access-Control-Allow-Methods:
581
+ - GET, POST, OPTIONS
582
+ Access-Control-Allow-Headers:
583
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
584
+ Strict-Transport-Security:
585
+ - max-age=31557600; includeSubDomains; preload
586
+ Content-Security-Policy:
587
+ - upgrade-insecure-requests
588
+ body:
589
+ encoding: UTF-8
590
+ 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":68}'
591
+ recorded_at: Sat, 07 Nov 2020 20:35:14 GMT
592
+ - request:
593
+ method: post
594
+ uri: https://api.steemitdev.com/
595
+ body:
596
+ encoding: UTF-8
597
+ string: '{"jsonrpc":"2.0","id":69,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
598
+ headers:
599
+ Content-Type:
600
+ - application/json; charset=utf-8
601
+ User-Agent:
602
+ - steem-ruby/0.9.5
603
+ Accept-Encoding:
604
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
605
+ Accept:
606
+ - "*/*"
607
+ Host:
608
+ - api.steemitdev.com
609
+ Content-Length:
610
+ - '124'
611
+ response:
612
+ status:
613
+ code: 200
614
+ message: OK
615
+ headers:
616
+ Date:
617
+ - Sat, 07 Nov 2020 20:35:14 GMT
618
+ Content-Type:
619
+ - application/json
620
+ Content-Length:
621
+ - '175'
622
+ Connection:
623
+ - keep-alive
624
+ Server:
625
+ - nginx
626
+ X-Jussi-Error-Id:
627
+ - b6866e65-a8da-4763-8215-166b48ca07ab
628
+ X-Jussi-Request-Id:
629
+ - '000211440642807522'
630
+ X-Amzn-Trace-Id:
631
+ - Root=1-5fa70502-61cf615b593e0a7e6640b4f0
632
+ Access-Control-Allow-Origin:
633
+ - "*"
634
+ Access-Control-Allow-Methods:
635
+ - GET, POST, OPTIONS
636
+ Access-Control-Allow-Headers:
637
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
638
+ Strict-Transport-Security:
639
+ - max-age=31557600; includeSubDomains; preload
640
+ Content-Security-Policy:
641
+ - upgrade-insecure-requests
642
+ body:
643
+ encoding: UTF-8
644
+ string: '{"jsonrpc":"2.0","id":69,"error":{"code":-32603,"message":"Internal
645
+ Error","data":{"error_id":"b6866e65-a8da-4763-8215-166b48ca07ab","jussi_request_id":"000223134882106079"}}}'
646
+ recorded_at: Sat, 07 Nov 2020 20:35:14 GMT
647
+ - request:
648
+ method: post
649
+ uri: https://api.steemitdev.com/
650
+ body:
651
+ encoding: UTF-8
652
+ string: '{"jsonrpc":"2.0","id":128,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
653
+ headers:
654
+ Content-Type:
655
+ - application/json; charset=utf-8
656
+ User-Agent:
657
+ - steem-ruby/0.9.5
658
+ Accept-Encoding:
659
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
660
+ Accept:
661
+ - "*/*"
662
+ Host:
663
+ - api.steemitdev.com
664
+ Content-Length:
665
+ - '93'
666
+ response:
667
+ status:
668
+ code: 200
669
+ message: OK
670
+ headers:
671
+ Date:
672
+ - Sat, 07 Nov 2020 20:43:25 GMT
673
+ Content-Type:
674
+ - application/json
675
+ Content-Length:
676
+ - '204'
677
+ Connection:
678
+ - keep-alive
679
+ Server:
680
+ - nginx
681
+ X-Jussi-Cache-Hit:
682
+ - appbase.jsonrpc.get_signature.params={"method":"network_broadcast_api.broadcast_transaction"}
683
+ X-Jussi-Request-Id:
684
+ - '000156312403600479'
685
+ X-Amzn-Trace-Id:
686
+ - Root=1-5fa706ed-733da0344e0165d26d588a92
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: '{"id":128,"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":{}}}'
700
+ recorded_at: Sat, 07 Nov 2020 20:43:25 GMT
701
+ - request:
702
+ method: post
703
+ uri: https://api.steemitdev.com/
704
+ body:
705
+ encoding: UTF-8
706
+ string: '{"jsonrpc":"2.0","id":129,"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.5
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
+ - '125'
720
+ response:
721
+ status:
722
+ code: 200
723
+ message: OK
724
+ headers:
725
+ Date:
726
+ - Sat, 07 Nov 2020 20:43:25 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
+ - 182a0d8f-6f88-473d-b4ee-f105ad1dd359
737
+ X-Jussi-Request-Id:
738
+ - '000651515469333326'
739
+ X-Amzn-Trace-Id:
740
+ - Root=1-5fa706ed-2ebdf2ec62cf4c9a0b6f9dd8
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":129,"error":{"code":-32603,"message":"Internal
754
+ Error","data":{"error_id":"182a0d8f-6f88-473d-b4ee-f105ad1dd359","jussi_request_id":"000226364059255917"}}}'
755
+ recorded_at: Sat, 07 Nov 2020 20:43:25 GMT
756
+ - request:
757
+ method: post
758
+ uri: https://api.steemitdev.com/
759
+ body:
760
+ encoding: UTF-8
761
+ string: '{"jsonrpc":"2.0","id":60,"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.5
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
+ - '68'
775
+ response:
776
+ status:
777
+ code: 200
778
+ message: OK
779
+ headers:
780
+ Date:
781
+ - Sat, 07 Nov 2020 20:47:41 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
+ - '000829781744260651'
792
+ X-Amzn-Trace-Id:
793
+ - Root=1-5fa707ec-24aadce77649f34214a486aa
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":60}'
807
+ recorded_at: Sat, 07 Nov 2020 20:47:41 GMT
808
+ - request:
809
+ method: post
810
+ uri: https://api.steemitdev.com/
811
+ body:
812
+ encoding: UTF-8
813
+ string: '{"jsonrpc":"2.0","id":61,"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.5
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, 07 Nov 2020 20:47:42 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
+ - 819aed83-34ac-40c7-9eb6-db3b6625e513
844
+ X-Jussi-Request-Id:
845
+ - '000026763106131185'
846
+ X-Amzn-Trace-Id:
847
+ - Root=1-5fa707ee-37fda43247648fda5780151e
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":61,"error":{"code":-32603,"message":"Internal
861
+ Error","data":{"error_id":"819aed83-34ac-40c7-9eb6-db3b6625e513","jussi_request_id":"000257056070557921"}}}'
862
+ recorded_at: Sat, 07 Nov 2020 20:47:42 GMT
863
+ - request:
864
+ method: post
865
+ uri: https://api.steemitdev.com/
866
+ body:
867
+ encoding: UTF-8
868
+ string: '{"jsonrpc":"2.0","id":93,"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.5
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
+ - '75'
882
+ response:
883
+ status:
884
+ code: 200
885
+ message: OK
886
+ headers:
887
+ Date:
888
+ - Sat, 07 Nov 2020 20:54:26 GMT
889
+ Content-Type:
890
+ - application/json
891
+ Content-Length:
892
+ - '203'
893
+ Connection:
894
+ - keep-alive
895
+ Server:
896
+ - nginx
897
+ X-Jussi-Request-Id:
898
+ - '001110618479809675'
899
+ X-Amzn-Trace-Id:
900
+ - Root=1-5fa70980-3da6a4490da4166e34a8cd85
901
+ Access-Control-Allow-Origin:
902
+ - "*"
903
+ Access-Control-Allow-Methods:
904
+ - GET, POST, OPTIONS
905
+ Access-Control-Allow-Headers:
906
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
907
+ Strict-Transport-Security:
908
+ - max-age=31557600; includeSubDomains; preload
909
+ Content-Security-Policy:
910
+ - upgrade-insecure-requests
911
+ body:
912
+ encoding: UTF-8
913
+ 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":93}'
914
+ recorded_at: Sat, 07 Nov 2020 20:54:26 GMT
915
+ - request:
916
+ method: post
917
+ uri: https://api.steemitdev.com/
918
+ body:
919
+ encoding: UTF-8
920
+ string: '{"jsonrpc":"2.0","id":94,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
921
+ headers:
922
+ Content-Type:
923
+ - application/json; charset=utf-8
924
+ User-Agent:
925
+ - steem-ruby/0.9.5
926
+ Accept-Encoding:
927
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
928
+ Accept:
929
+ - "*/*"
930
+ Host:
931
+ - api.steemitdev.com
932
+ Content-Length:
933
+ - '124'
934
+ response:
935
+ status:
936
+ code: 200
937
+ message: OK
938
+ headers:
939
+ Date:
940
+ - Sat, 07 Nov 2020 20:54:26 GMT
941
+ Content-Type:
942
+ - application/json
943
+ Content-Length:
944
+ - '175'
945
+ Connection:
946
+ - keep-alive
947
+ Server:
948
+ - nginx
949
+ X-Jussi-Error-Id:
950
+ - 38899ac2-97ad-4aad-90cb-afbfad16deac
951
+ X-Jussi-Request-Id:
952
+ - '000804401966422823'
953
+ X-Amzn-Trace-Id:
954
+ - Root=1-5fa70982-2e059bb4611847df7c732598
955
+ Access-Control-Allow-Origin:
956
+ - "*"
957
+ Access-Control-Allow-Methods:
958
+ - GET, POST, OPTIONS
959
+ Access-Control-Allow-Headers:
960
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
961
+ Strict-Transport-Security:
962
+ - max-age=31557600; includeSubDomains; preload
963
+ Content-Security-Policy:
964
+ - upgrade-insecure-requests
965
+ body:
966
+ encoding: UTF-8
967
+ string: '{"jsonrpc":"2.0","id":94,"error":{"code":-32603,"message":"Internal
968
+ Error","data":{"error_id":"38899ac2-97ad-4aad-90cb-afbfad16deac","jussi_request_id":"000933601733757260"}}}'
969
+ recorded_at: Sat, 07 Nov 2020 20:54:27 GMT
970
+ - request:
971
+ method: post
972
+ uri: https://api.steemitdev.com/
973
+ body:
974
+ encoding: UTF-8
975
+ string: '{"jsonrpc":"2.0","id":74,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
976
+ headers:
977
+ Content-Type:
978
+ - application/json; charset=utf-8
979
+ User-Agent:
980
+ - steem-ruby/0.9.5
981
+ Accept-Encoding:
982
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
983
+ Accept:
984
+ - "*/*"
985
+ Host:
986
+ - api.steemitdev.com
987
+ Content-Length:
988
+ - '78'
989
+ response:
990
+ status:
991
+ code: 200
992
+ message: OK
993
+ headers:
994
+ Date:
995
+ - Sat, 07 Nov 2020 21:02:05 GMT
996
+ Content-Type:
997
+ - application/json
998
+ Content-Length:
999
+ - '203'
1000
+ Connection:
1001
+ - keep-alive
1002
+ Server:
1003
+ - nginx
1004
+ X-Jussi-Request-Id:
1005
+ - '000615252015400494'
1006
+ X-Amzn-Trace-Id:
1007
+ - Root=1-5fa70b4d-382916a1329219456d2f5665
1008
+ Access-Control-Allow-Origin:
1009
+ - "*"
1010
+ Access-Control-Allow-Methods:
1011
+ - GET, POST, OPTIONS
1012
+ Access-Control-Allow-Headers:
1013
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1014
+ Strict-Transport-Security:
1015
+ - max-age=31557600; includeSubDomains; preload
1016
+ Content-Security-Policy:
1017
+ - upgrade-insecure-requests
1018
+ body:
1019
+ encoding: UTF-8
1020
+ 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":74}'
1021
+ recorded_at: Sat, 07 Nov 2020 21:02:06 GMT
1022
+ - request:
1023
+ method: post
1024
+ uri: https://api.steemitdev.com/
1025
+ body:
1026
+ encoding: UTF-8
1027
+ string: '{"jsonrpc":"2.0","id":75,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
1028
+ headers:
1029
+ Content-Type:
1030
+ - application/json; charset=utf-8
1031
+ User-Agent:
1032
+ - steem-ruby/0.9.5
1033
+ Accept-Encoding:
1034
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1035
+ Accept:
1036
+ - "*/*"
1037
+ Host:
1038
+ - api.steemitdev.com
1039
+ Content-Length:
1040
+ - '124'
1041
+ response:
1042
+ status:
1043
+ code: 200
1044
+ message: OK
1045
+ headers:
1046
+ Date:
1047
+ - Sat, 07 Nov 2020 21:02:06 GMT
1048
+ Content-Type:
1049
+ - application/json
1050
+ Content-Length:
1051
+ - '175'
1052
+ Connection:
1053
+ - keep-alive
1054
+ Server:
1055
+ - nginx
1056
+ X-Jussi-Error-Id:
1057
+ - 888d5897-90f5-4e13-b13d-c3c12614e1e7
1058
+ X-Jussi-Request-Id:
1059
+ - '000243633956980231'
1060
+ X-Amzn-Trace-Id:
1061
+ - Root=1-5fa70b4e-14f774ac53229b6d03ed1633
1062
+ Access-Control-Allow-Origin:
1063
+ - "*"
1064
+ Access-Control-Allow-Methods:
1065
+ - GET, POST, OPTIONS
1066
+ Access-Control-Allow-Headers:
1067
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1068
+ Strict-Transport-Security:
1069
+ - max-age=31557600; includeSubDomains; preload
1070
+ Content-Security-Policy:
1071
+ - upgrade-insecure-requests
1072
+ body:
1073
+ encoding: UTF-8
1074
+ string: '{"jsonrpc":"2.0","id":75,"error":{"code":-32603,"message":"Internal
1075
+ Error","data":{"error_id":"888d5897-90f5-4e13-b13d-c3c12614e1e7","jussi_request_id":"000534199760184117"}}}'
1076
+ recorded_at: Sat, 07 Nov 2020 21:02:06 GMT
1077
+ - request:
1078
+ method: post
1079
+ uri: https://api.steemitdev.com/
1080
+ body:
1081
+ encoding: UTF-8
1082
+ string: '{"jsonrpc":"2.0","id":126,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
1083
+ headers:
1084
+ Content-Type:
1085
+ - application/json; charset=utf-8
1086
+ User-Agent:
1087
+ - steem-ruby/0.9.5
1088
+ Accept-Encoding:
1089
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1090
+ Accept:
1091
+ - "*/*"
1092
+ Host:
1093
+ - api.steemit.com
1094
+ Content-Length:
1095
+ - '81'
1096
+ response:
1097
+ status:
1098
+ code: 200
1099
+ message: OK
1100
+ headers:
1101
+ Date:
1102
+ - Sat, 07 Nov 2020 21:09:05 GMT
1103
+ Content-Type:
1104
+ - application/json
1105
+ Content-Length:
1106
+ - '204'
1107
+ Connection:
1108
+ - keep-alive
1109
+ Server:
1110
+ - nginx
1111
+ X-Jussi-Request-Id:
1112
+ - '000996954285131794'
1113
+ X-Amzn-Trace-Id:
1114
+ - Root=1-5fa70cef-6d84ef383264003b4027b315
1115
+ Access-Control-Allow-Origin:
1116
+ - "*"
1117
+ Access-Control-Allow-Methods:
1118
+ - GET, POST, OPTIONS
1119
+ Access-Control-Allow-Headers:
1120
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1121
+ Strict-Transport-Security:
1122
+ - max-age=31557600; includeSubDomains; preload
1123
+ Content-Security-Policy:
1124
+ - upgrade-insecure-requests
1125
+ body:
1126
+ encoding: UTF-8
1127
+ 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":126}'
1128
+ recorded_at: Sat, 07 Nov 2020 21:09:05 GMT
1129
+ - request:
1130
+ method: post
1131
+ uri: https://api.steemitdev.com/
1132
+ body:
1133
+ encoding: UTF-8
1134
+ string: '{"jsonrpc":"2.0","id":127,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
1135
+ headers:
1136
+ Content-Type:
1137
+ - application/json; charset=utf-8
1138
+ User-Agent:
1139
+ - steem-ruby/0.9.5
1140
+ Accept-Encoding:
1141
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1142
+ Accept:
1143
+ - "*/*"
1144
+ Host:
1145
+ - api.steemit.com
1146
+ Content-Length:
1147
+ - '125'
1148
+ response:
1149
+ status:
1150
+ code: 200
1151
+ message: OK
1152
+ headers:
1153
+ Date:
1154
+ - Sat, 07 Nov 2020 21:09:05 GMT
1155
+ Content-Type:
1156
+ - application/json
1157
+ Content-Length:
1158
+ - '176'
1159
+ Connection:
1160
+ - keep-alive
1161
+ Server:
1162
+ - nginx
1163
+ X-Jussi-Error-Id:
1164
+ - f606fe4b-6c2b-4e75-9a57-272c75b5f21c
1165
+ X-Jussi-Request-Id:
1166
+ - '000848209495176084'
1167
+ X-Amzn-Trace-Id:
1168
+ - Root=1-5fa70cf1-70e3c50230e759331eb204ff
1169
+ Access-Control-Allow-Origin:
1170
+ - "*"
1171
+ Access-Control-Allow-Methods:
1172
+ - GET, POST, OPTIONS
1173
+ Access-Control-Allow-Headers:
1174
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1175
+ Strict-Transport-Security:
1176
+ - max-age=31557600; includeSubDomains; preload
1177
+ Content-Security-Policy:
1178
+ - upgrade-insecure-requests
1179
+ body:
1180
+ encoding: UTF-8
1181
+ string: '{"jsonrpc":"2.0","id":127,"error":{"code":-32603,"message":"Internal
1182
+ Error","data":{"error_id":"f606fe4b-6c2b-4e75-9a57-272c75b5f21c","jussi_request_id":"000206750784017575"}}}'
1183
+ recorded_at: Sat, 07 Nov 2020 21:09:05 GMT
1184
+ - request:
1185
+ method: post
1186
+ uri: https://api.steemitdev.com/
1187
+ body:
1188
+ encoding: UTF-8
1189
+ string: '{"jsonrpc":"2.0","id":52,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
1190
+ headers:
1191
+ Content-Type:
1192
+ - application/json; charset=utf-8
1193
+ User-Agent:
1194
+ - steem-ruby/0.9.5
1195
+ Accept-Encoding:
1196
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1197
+ Accept:
1198
+ - "*/*"
1199
+ Host:
1200
+ - api.steemitdev.com
1201
+ Content-Length:
1202
+ - '95'
1203
+ response:
1204
+ status:
1205
+ code: 200
1206
+ message: OK
1207
+ headers:
1208
+ Date:
1209
+ - Sun, 08 Nov 2020 05:35:50 GMT
1210
+ Content-Type:
1211
+ - application/json
1212
+ Content-Length:
1213
+ - '203'
1214
+ Connection:
1215
+ - keep-alive
1216
+ Server:
1217
+ - nginx
1218
+ X-Jussi-Request-Id:
1219
+ - '000915934611123221'
1220
+ X-Amzn-Trace-Id:
1221
+ - Root=1-5fa783b5-6ef7998105b5fcbb581eb57d
1222
+ Access-Control-Allow-Origin:
1223
+ - "*"
1224
+ Access-Control-Allow-Methods:
1225
+ - GET, POST, OPTIONS
1226
+ Access-Control-Allow-Headers:
1227
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1228
+ Strict-Transport-Security:
1229
+ - max-age=31557600; includeSubDomains; preload
1230
+ Content-Security-Policy:
1231
+ - upgrade-insecure-requests
1232
+ body:
1233
+ encoding: UTF-8
1234
+ 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":52}'
1235
+ recorded_at: Sun, 08 Nov 2020 05:35:50 GMT
1236
+ - request:
1237
+ method: post
1238
+ uri: https://api.steemitdev.com/
1239
+ body:
1240
+ encoding: UTF-8
1241
+ string: '{"jsonrpc":"2.0","id":53,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
1242
+ headers:
1243
+ Content-Type:
1244
+ - application/json; charset=utf-8
1245
+ User-Agent:
1246
+ - steem-ruby/0.9.5
1247
+ Accept-Encoding:
1248
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1249
+ Accept:
1250
+ - "*/*"
1251
+ Host:
1252
+ - api.steemitdev.com
1253
+ Content-Length:
1254
+ - '124'
1255
+ response:
1256
+ status:
1257
+ code: 200
1258
+ message: OK
1259
+ headers:
1260
+ Date:
1261
+ - Sun, 08 Nov 2020 05:35:50 GMT
1262
+ Content-Type:
1263
+ - application/json
1264
+ Content-Length:
1265
+ - '175'
1266
+ Connection:
1267
+ - keep-alive
1268
+ Server:
1269
+ - nginx
1270
+ X-Jussi-Error-Id:
1271
+ - e32168c9-46fd-48bb-a6c9-e8f7c5028ccd
1272
+ X-Jussi-Request-Id:
1273
+ - '001115458092065672'
1274
+ X-Amzn-Trace-Id:
1275
+ - Root=1-5fa783b6-1760790677c1a74e1e03cae2
1276
+ Access-Control-Allow-Origin:
1277
+ - "*"
1278
+ Access-Control-Allow-Methods:
1279
+ - GET, POST, OPTIONS
1280
+ Access-Control-Allow-Headers:
1281
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1282
+ Strict-Transport-Security:
1283
+ - max-age=31557600; includeSubDomains; preload
1284
+ Content-Security-Policy:
1285
+ - upgrade-insecure-requests
1286
+ body:
1287
+ encoding: UTF-8
1288
+ string: '{"jsonrpc":"2.0","id":53,"error":{"code":-32603,"message":"Internal
1289
+ Error","data":{"error_id":"e32168c9-46fd-48bb-a6c9-e8f7c5028ccd","jussi_request_id":"000122283504586981"}}}'
1290
+ recorded_at: Sun, 08 Nov 2020 05:35:50 GMT
1291
+ - request:
1292
+ method: post
1293
+ uri: https://api.steemitdev.com/
1294
+ body:
1295
+ encoding: UTF-8
1296
+ string: '{"jsonrpc":"2.0","id":3,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
1297
+ headers:
1298
+ Content-Type:
1299
+ - application/json; charset=utf-8
1300
+ User-Agent:
1301
+ - steem-ruby/0.9.5
1302
+ Accept-Encoding:
1303
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1304
+ Accept:
1305
+ - "*/*"
1306
+ Host:
1307
+ - api.steemitdev.com
1308
+ Content-Length:
1309
+ - '90'
1310
+ response:
1311
+ status:
1312
+ code: 200
1313
+ message: OK
1314
+ headers:
1315
+ Date:
1316
+ - Sun, 08 Nov 2020 05:37:33 GMT
1317
+ Content-Type:
1318
+ - application/json
1319
+ Content-Length:
1320
+ - '202'
1321
+ Connection:
1322
+ - keep-alive
1323
+ Server:
1324
+ - nginx
1325
+ X-Jussi-Cache-Hit:
1326
+ - appbase.jsonrpc.get_signature.params={"method":"network_broadcast_api.broadcast_transaction"}
1327
+ X-Jussi-Request-Id:
1328
+ - '000310563955767493'
1329
+ X-Amzn-Trace-Id:
1330
+ - Root=1-5fa7841d-6a07155c2d614b450a8e7362
1331
+ Access-Control-Allow-Origin:
1332
+ - "*"
1333
+ Access-Control-Allow-Methods:
1334
+ - GET, POST, OPTIONS
1335
+ Access-Control-Allow-Headers:
1336
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1337
+ Strict-Transport-Security:
1338
+ - max-age=31557600; includeSubDomains; preload
1339
+ Content-Security-Policy:
1340
+ - upgrade-insecure-requests
1341
+ body:
1342
+ encoding: UTF-8
1343
+ string: '{"id":3,"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":{}}}'
1344
+ recorded_at: Sun, 08 Nov 2020 05:37:33 GMT
1345
+ - request:
1346
+ method: post
1347
+ uri: https://api.steemitdev.com/
1348
+ body:
1349
+ encoding: UTF-8
1350
+ string: '{"jsonrpc":"2.0","id":4,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
1351
+ headers:
1352
+ Content-Type:
1353
+ - application/json; charset=utf-8
1354
+ User-Agent:
1355
+ - steem-ruby/0.9.5
1356
+ Accept-Encoding:
1357
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1358
+ Accept:
1359
+ - "*/*"
1360
+ Host:
1361
+ - api.steemitdev.com
1362
+ Content-Length:
1363
+ - '123'
1364
+ response:
1365
+ status:
1366
+ code: 200
1367
+ message: OK
1368
+ headers:
1369
+ Date:
1370
+ - Sun, 08 Nov 2020 05:37:33 GMT
1371
+ Content-Type:
1372
+ - application/json
1373
+ Content-Length:
1374
+ - '174'
1375
+ Connection:
1376
+ - keep-alive
1377
+ Server:
1378
+ - nginx
1379
+ X-Jussi-Error-Id:
1380
+ - 2484a1a1-816e-4e26-9197-777152e6b09e
1381
+ X-Jussi-Request-Id:
1382
+ - '000608310796048115'
1383
+ X-Amzn-Trace-Id:
1384
+ - Root=1-5fa7841d-1223d0590d9f7cf2017107fb
1385
+ Access-Control-Allow-Origin:
1386
+ - "*"
1387
+ Access-Control-Allow-Methods:
1388
+ - GET, POST, OPTIONS
1389
+ Access-Control-Allow-Headers:
1390
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1391
+ Strict-Transport-Security:
1392
+ - max-age=31557600; includeSubDomains; preload
1393
+ Content-Security-Policy:
1394
+ - upgrade-insecure-requests
1395
+ body:
1396
+ encoding: UTF-8
1397
+ string: '{"jsonrpc":"2.0","id":4,"error":{"code":-32603,"message":"Internal
1398
+ Error","data":{"error_id":"2484a1a1-816e-4e26-9197-777152e6b09e","jussi_request_id":"000382982141599701"}}}'
1399
+ recorded_at: Sun, 08 Nov 2020 05:37:33 GMT
1400
+ - request:
1401
+ method: post
1402
+ uri: https://api.steemitdev.com/
1403
+ body:
1404
+ encoding: UTF-8
1405
+ string: '{"jsonrpc":"2.0","id":66,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
1406
+ headers:
1407
+ Content-Type:
1408
+ - application/json; charset=utf-8
1409
+ User-Agent:
1410
+ - steem-ruby/0.9.5
1411
+ Accept-Encoding:
1412
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1413
+ Accept:
1414
+ - "*/*"
1415
+ Host:
1416
+ - api.steemit.com
1417
+ Content-Length:
1418
+ - '78'
1419
+ response:
1420
+ status:
1421
+ code: 200
1422
+ message: OK
1423
+ headers:
1424
+ Date:
1425
+ - Sun, 08 Nov 2020 05:40:04 GMT
1426
+ Content-Type:
1427
+ - application/json
1428
+ Content-Length:
1429
+ - '203'
1430
+ Connection:
1431
+ - keep-alive
1432
+ Server:
1433
+ - nginx
1434
+ X-Jussi-Cache-Hit:
1435
+ - appbase.jsonrpc.get_signature.params={"method":"network_broadcast_api.broadcast_transaction"}
1436
+ X-Jussi-Request-Id:
1437
+ - '000059763045623276'
1438
+ X-Amzn-Trace-Id:
1439
+ - Root=1-5fa784b4-35fadbc7781698ba25cfbc97
1440
+ Access-Control-Allow-Origin:
1441
+ - "*"
1442
+ Access-Control-Allow-Methods:
1443
+ - GET, POST, OPTIONS
1444
+ Access-Control-Allow-Headers:
1445
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1446
+ Strict-Transport-Security:
1447
+ - max-age=31557600; includeSubDomains; preload
1448
+ Content-Security-Policy:
1449
+ - upgrade-insecure-requests
1450
+ body:
1451
+ encoding: UTF-8
1452
+ string: '{"id":66,"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":{}}}'
1453
+ recorded_at: Sun, 08 Nov 2020 05:40:04 GMT
1454
+ - request:
1455
+ method: post
1456
+ uri: https://api.steemitdev.com/
1457
+ body:
1458
+ encoding: UTF-8
1459
+ string: '{"jsonrpc":"2.0","id":67,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
1460
+ headers:
1461
+ Content-Type:
1462
+ - application/json; charset=utf-8
1463
+ User-Agent:
1464
+ - steem-ruby/0.9.5
1465
+ Accept-Encoding:
1466
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1467
+ Accept:
1468
+ - "*/*"
1469
+ Host:
1470
+ - api.steemit.com
1471
+ Content-Length:
1472
+ - '124'
1473
+ response:
1474
+ status:
1475
+ code: 200
1476
+ message: OK
1477
+ headers:
1478
+ Date:
1479
+ - Sun, 08 Nov 2020 05:40:04 GMT
1480
+ Content-Type:
1481
+ - application/json
1482
+ Content-Length:
1483
+ - '175'
1484
+ Connection:
1485
+ - keep-alive
1486
+ Server:
1487
+ - nginx
1488
+ X-Jussi-Error-Id:
1489
+ - ddd62ec4-9ac0-4e18-ae0b-b95cdd5366bd
1490
+ X-Jussi-Request-Id:
1491
+ - '000343155045705434'
1492
+ X-Amzn-Trace-Id:
1493
+ - Root=1-5fa784b4-638175212b7a76f617bb27a7
1494
+ Access-Control-Allow-Origin:
1495
+ - "*"
1496
+ Access-Control-Allow-Methods:
1497
+ - GET, POST, OPTIONS
1498
+ Access-Control-Allow-Headers:
1499
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1500
+ Strict-Transport-Security:
1501
+ - max-age=31557600; includeSubDomains; preload
1502
+ Content-Security-Policy:
1503
+ - upgrade-insecure-requests
1504
+ body:
1505
+ encoding: UTF-8
1506
+ string: '{"jsonrpc":"2.0","id":67,"error":{"code":-32603,"message":"Internal
1507
+ Error","data":{"error_id":"ddd62ec4-9ac0-4e18-ae0b-b95cdd5366bd","jussi_request_id":"000782610944237759"}}}'
1508
+ recorded_at: Sun, 08 Nov 2020 05:40:04 GMT
1509
+ - request:
1510
+ method: post
1511
+ uri: https://api.steemitdev.com/
1512
+ body:
1513
+ encoding: UTF-8
1514
+ string: '{"jsonrpc":"2.0","id":69,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
1515
+ headers:
1516
+ Content-Type:
1517
+ - application/json; charset=utf-8
1518
+ User-Agent:
1519
+ - steem-ruby/0.9.5
1520
+ Accept-Encoding:
1521
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1522
+ Accept:
1523
+ - "*/*"
1524
+ Host:
1525
+ - api.steemitdev.com
1526
+ Content-Length:
1527
+ - '78'
1528
+ response:
1529
+ status:
1530
+ code: 200
1531
+ message: OK
1532
+ headers:
1533
+ Date:
1534
+ - Sun, 08 Nov 2020 05:47:59 GMT
1535
+ Content-Type:
1536
+ - application/json
1537
+ Content-Length:
1538
+ - '203'
1539
+ Connection:
1540
+ - keep-alive
1541
+ Server:
1542
+ - nginx
1543
+ X-Jussi-Request-Id:
1544
+ - '000334708365275271'
1545
+ X-Amzn-Trace-Id:
1546
+ - Root=1-5fa7868f-0aeb12be056d6de133bbf7b7
1547
+ Access-Control-Allow-Origin:
1548
+ - "*"
1549
+ Access-Control-Allow-Methods:
1550
+ - GET, POST, OPTIONS
1551
+ Access-Control-Allow-Headers:
1552
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1553
+ Strict-Transport-Security:
1554
+ - max-age=31557600; includeSubDomains; preload
1555
+ Content-Security-Policy:
1556
+ - upgrade-insecure-requests
1557
+ body:
1558
+ encoding: UTF-8
1559
+ string: '{"jsonrpc":"2.0","result":{"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":69}'
1560
+ recorded_at: Sun, 08 Nov 2020 05:47:59 GMT
1561
+ - request:
1562
+ method: post
1563
+ uri: https://api.steemitdev.com/
1564
+ body:
1565
+ encoding: UTF-8
1566
+ string: '{"jsonrpc":"2.0","id":70,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
1567
+ headers:
1568
+ Content-Type:
1569
+ - application/json; charset=utf-8
1570
+ User-Agent:
1571
+ - steem-ruby/0.9.5
1572
+ Accept-Encoding:
1573
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1574
+ Accept:
1575
+ - "*/*"
1576
+ Host:
1577
+ - api.steemitdev.com
1578
+ Content-Length:
1579
+ - '124'
1580
+ response:
1581
+ status:
1582
+ code: 200
1583
+ message: OK
1584
+ headers:
1585
+ Date:
1586
+ - Sun, 08 Nov 2020 05:48:00 GMT
1587
+ Content-Type:
1588
+ - application/json
1589
+ Content-Length:
1590
+ - '175'
1591
+ Connection:
1592
+ - keep-alive
1593
+ Server:
1594
+ - nginx
1595
+ X-Jussi-Error-Id:
1596
+ - 0f0bcb5e-b053-42d7-9fd5-ea8ccef4a305
1597
+ X-Jussi-Request-Id:
1598
+ - '000017978501218993'
1599
+ X-Amzn-Trace-Id:
1600
+ - Root=1-5fa78690-2b069664041361601bcb8366
1601
+ Access-Control-Allow-Origin:
1602
+ - "*"
1603
+ Access-Control-Allow-Methods:
1604
+ - GET, POST, OPTIONS
1605
+ Access-Control-Allow-Headers:
1606
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1607
+ Strict-Transport-Security:
1608
+ - max-age=31557600; includeSubDomains; preload
1609
+ Content-Security-Policy:
1610
+ - upgrade-insecure-requests
1611
+ body:
1612
+ encoding: UTF-8
1613
+ string: '{"jsonrpc":"2.0","id":70,"error":{"code":-32603,"message":"Internal
1614
+ Error","data":{"error_id":"0f0bcb5e-b053-42d7-9fd5-ea8ccef4a305","jussi_request_id":"000207812858265599"}}}'
1615
+ recorded_at: Sun, 08 Nov 2020 05:48:00 GMT
1616
+ - request:
1617
+ method: post
1618
+ uri: https://api.steemitdev.com/
1619
+ body:
1620
+ encoding: UTF-8
1621
+ string: '{"jsonrpc":"2.0","id":46,"method":"jsonrpc.get_signature","params":{"method":"network_broadcast_api.broadcast_transaction"}}'
1622
+ headers:
1623
+ Content-Type:
1624
+ - application/json; charset=utf-8
1625
+ User-Agent:
1626
+ - steem-ruby/0.9.5
1627
+ Accept-Encoding:
1628
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1629
+ Accept:
1630
+ - "*/*"
1631
+ Host:
1632
+ - api.steemitdev.com
1633
+ Content-Length:
1634
+ - '68'
1635
+ response:
1636
+ status:
1637
+ code: 200
1638
+ message: OK
1639
+ headers:
1640
+ Date:
1641
+ - Sun, 08 Nov 2020 06:01:31 GMT
1642
+ Content-Type:
1643
+ - application/json
1644
+ Content-Length:
1645
+ - '203'
1646
+ Connection:
1647
+ - keep-alive
1648
+ Server:
1649
+ - nginx
1650
+ X-Jussi-Request-Id:
1651
+ - '000676003458049206'
1652
+ X-Amzn-Trace-Id:
1653
+ - Root=1-5fa789bb-462201f17e6f7fd74ac2f2da
1654
+ Access-Control-Allow-Origin:
1655
+ - "*"
1656
+ Access-Control-Allow-Methods:
1657
+ - GET, POST, OPTIONS
1658
+ Access-Control-Allow-Headers:
1659
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1660
+ Strict-Transport-Security:
1661
+ - max-age=31557600; includeSubDomains; preload
1662
+ Content-Security-Policy:
1663
+ - upgrade-insecure-requests
1664
+ body:
1665
+ encoding: UTF-8
1666
+ 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":46}'
1667
+ recorded_at: Sun, 08 Nov 2020 06:01:31 GMT
1668
+ - request:
1669
+ method: post
1670
+ uri: https://api.steemitdev.com/
1671
+ body:
1672
+ encoding: UTF-8
1673
+ string: '{"jsonrpc":"2.0","id":47,"method":"network_broadcast_api.broadcast_transaction","params":{}}'
1674
+ headers:
1675
+ Content-Type:
1676
+ - application/json; charset=utf-8
1677
+ User-Agent:
1678
+ - steem-ruby/0.9.5
1679
+ Accept-Encoding:
1680
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1681
+ Accept:
1682
+ - "*/*"
1683
+ Host:
1684
+ - api.steemitdev.com
1685
+ Content-Length:
1686
+ - '124'
1687
+ response:
1688
+ status:
1689
+ code: 200
1690
+ message: OK
1691
+ headers:
1692
+ Date:
1693
+ - Sun, 08 Nov 2020 06:01:31 GMT
1694
+ Content-Type:
1695
+ - application/json
1696
+ Content-Length:
1697
+ - '175'
1698
+ Connection:
1699
+ - keep-alive
1700
+ Server:
1701
+ - nginx
1702
+ X-Jussi-Error-Id:
1703
+ - 56680b60-69cf-4b02-b7dd-6dcf6c8a0a9c
1704
+ X-Jussi-Request-Id:
1705
+ - '000284932036641132'
1706
+ X-Amzn-Trace-Id:
1707
+ - Root=1-5fa789bb-5f9b4bf27c852ee6489a2e15
1708
+ Access-Control-Allow-Origin:
1709
+ - "*"
1710
+ Access-Control-Allow-Methods:
1711
+ - GET, POST, OPTIONS
1712
+ Access-Control-Allow-Headers:
1713
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1714
+ Strict-Transport-Security:
1715
+ - max-age=31557600; includeSubDomains; preload
1716
+ Content-Security-Policy:
1717
+ - upgrade-insecure-requests
1718
+ body:
1719
+ encoding: UTF-8
1720
+ string: '{"jsonrpc":"2.0","id":47,"error":{"code":-32603,"message":"Internal
1721
+ Error","data":{"error_id":"56680b60-69cf-4b02-b7dd-6dcf6c8a0a9c","jussi_request_id":"000246460624386742"}}}'
1722
+ recorded_at: Sun, 08 Nov 2020 06:01:31 GMT
1723
+ recorded_with: VCR 6.0.0