radiator 0.4.7 → 0.4.8.pre.1

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