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,987 @@
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":2,"method":"jsonrpc.get_methods","params":{}}'
9
+ headers:
10
+ Content-Type:
11
+ - application/json; charset=utf-8
12
+ User-Agent:
13
+ - steem-ruby/0.9.4
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - "*/*"
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Date:
24
+ - Sat, 17 Oct 2020 04:06:54 GMT
25
+ Content-Type:
26
+ - application/json
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Connection:
30
+ - keep-alive
31
+ Server:
32
+ - nginx
33
+ X-Jussi-Request-Id:
34
+ - '000105640241350457'
35
+ X-Amzn-Trace-Id:
36
+ - Root=1-5f8a6dde-31bc6e5c5e3ad3bc1b2808c6
37
+ Access-Control-Allow-Origin:
38
+ - "*"
39
+ Access-Control-Allow-Methods:
40
+ - GET, POST, OPTIONS
41
+ Access-Control-Allow-Headers:
42
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
43
+ Strict-Transport-Security:
44
+ - max-age=31557600; includeSubDomains; preload
45
+ Content-Security-Policy:
46
+ - upgrade-insecure-requests
47
+ body:
48
+ encoding: ASCII-8BIT
49
+ string: '{"jsonrpc":"2.0","result":["account_by_key_api.get_key_references","block_api.get_block","block_api.get_block_header","condenser_api.broadcast_block","condenser_api.broadcast_transaction","condenser_api.broadcast_transaction_synchronous","condenser_api.find_proposals","condenser_api.get_account_count","condenser_api.get_account_history","condenser_api.get_account_references","condenser_api.get_account_reputations","condenser_api.get_account_votes","condenser_api.get_accounts","condenser_api.get_active_votes","condenser_api.get_active_witnesses","condenser_api.get_block","condenser_api.get_block_header","condenser_api.get_blog","condenser_api.get_blog_authors","condenser_api.get_blog_entries","condenser_api.get_chain_properties","condenser_api.get_comment_discussions_by_payout","condenser_api.get_config","condenser_api.get_content","condenser_api.get_content_replies","condenser_api.get_conversion_requests","condenser_api.get_current_median_history_price","condenser_api.get_discussions_by_active","condenser_api.get_discussions_by_author_before_date","condenser_api.get_discussions_by_blog","condenser_api.get_discussions_by_cashout","condenser_api.get_discussions_by_children","condenser_api.get_discussions_by_comments","condenser_api.get_discussions_by_created","condenser_api.get_discussions_by_feed","condenser_api.get_discussions_by_hot","condenser_api.get_discussions_by_promoted","condenser_api.get_discussions_by_trending","condenser_api.get_discussions_by_votes","condenser_api.get_dynamic_global_properties","condenser_api.get_escrow","condenser_api.get_expiring_vesting_delegations","condenser_api.get_feed","condenser_api.get_feed_entries","condenser_api.get_feed_history","condenser_api.get_follow_count","condenser_api.get_followers","condenser_api.get_following","condenser_api.get_hardfork_version","condenser_api.get_key_references","condenser_api.get_market_history","condenser_api.get_market_history_buckets","condenser_api.get_next_scheduled_hardfork","condenser_api.get_open_orders","condenser_api.get_ops_in_block","condenser_api.get_order_book","condenser_api.get_owner_history","condenser_api.get_post_discussions_by_payout","condenser_api.get_potential_signatures","condenser_api.get_reblogged_by","condenser_api.get_recent_trades","condenser_api.get_recovery_request","condenser_api.get_replies_by_last_update","condenser_api.get_required_signatures","condenser_api.get_reward_fund","condenser_api.get_savings_withdraw_from","condenser_api.get_savings_withdraw_to","condenser_api.get_state","condenser_api.get_tags_used_by_author","condenser_api.get_ticker","condenser_api.get_trade_history","condenser_api.get_transaction","condenser_api.get_transaction_hex","condenser_api.get_trending_tags","condenser_api.get_version","condenser_api.get_vesting_delegations","condenser_api.get_volume","condenser_api.get_withdraw_routes","condenser_api.get_witness_by_account","condenser_api.get_witness_count","condenser_api.get_witness_schedule","condenser_api.get_witnesses","condenser_api.get_witnesses_by_vote","condenser_api.list_proposal_votes","condenser_api.list_proposals","condenser_api.lookup_account_names","condenser_api.lookup_accounts","condenser_api.lookup_witness_accounts","condenser_api.verify_account_authority","condenser_api.verify_authority","database_api.find_account_recovery_requests","database_api.find_accounts","database_api.find_change_recovery_account_requests","database_api.find_comments","database_api.find_decline_voting_rights_requests","database_api.find_escrows","database_api.find_limit_orders","database_api.find_owner_histories","database_api.find_proposals","database_api.find_savings_withdrawals","database_api.find_sbd_conversion_requests","database_api.find_vesting_delegation_expirations","database_api.find_vesting_delegations","database_api.find_votes","database_api.find_withdraw_vesting_routes","database_api.find_witnesses","database_api.get_active_witnesses","database_api.get_config","database_api.get_current_price_feed","database_api.get_dynamic_global_properties","database_api.get_feed_history","database_api.get_hardfork_properties","database_api.get_order_book","database_api.get_potential_signatures","database_api.get_required_signatures","database_api.get_reward_funds","database_api.get_transaction_hex","database_api.get_version","database_api.get_witness_schedule","database_api.list_account_recovery_requests","database_api.list_accounts","database_api.list_change_recovery_account_requests","database_api.list_comments","database_api.list_decline_voting_rights_requests","database_api.list_escrows","database_api.list_limit_orders","database_api.list_owner_histories","database_api.list_proposal_votes","database_api.list_proposals","database_api.list_savings_withdrawals","database_api.list_sbd_conversion_requests","database_api.list_vesting_delegation_expirations","database_api.list_vesting_delegations","database_api.list_votes","database_api.list_withdraw_vesting_routes","database_api.list_witness_votes","database_api.list_witnesses","database_api.verify_account_authority","database_api.verify_authority","database_api.verify_signatures","jsonrpc.get_methods","jsonrpc.get_signature","market_history_api.get_market_history","market_history_api.get_market_history_buckets","market_history_api.get_order_book","market_history_api.get_recent_trades","market_history_api.get_ticker","market_history_api.get_trade_history","market_history_api.get_volume","network_broadcast_api.broadcast_block","network_broadcast_api.broadcast_transaction","rc_api.find_rc_accounts","rc_api.get_resource_params","rc_api.get_resource_pool","reputation_api.get_account_reputations"],"id":2}'
50
+ recorded_at: Sat, 17 Oct 2020 04:06:54 GMT
51
+ - request:
52
+ method: post
53
+ uri: https://api.steemit.com/
54
+ body:
55
+ encoding: UTF-8
56
+ string: '{"jsonrpc":"2.0","id":3,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
57
+ headers:
58
+ Content-Type:
59
+ - application/json; charset=utf-8
60
+ User-Agent:
61
+ - steem-ruby/0.9.4
62
+ Accept-Encoding:
63
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
64
+ Accept:
65
+ - "*/*"
66
+ Host:
67
+ - api.steemit.com
68
+ Content-Length:
69
+ - '67'
70
+ response:
71
+ status:
72
+ code: 200
73
+ message: OK
74
+ headers:
75
+ Date:
76
+ - Sat, 17 Oct 2020 04:06:55 GMT
77
+ Content-Type:
78
+ - application/json
79
+ Content-Length:
80
+ - '76'
81
+ Connection:
82
+ - keep-alive
83
+ Server:
84
+ - nginx
85
+ X-Jussi-Request-Id:
86
+ - '001070908086588841'
87
+ X-Amzn-Trace-Id:
88
+ - Root=1-5f8a6ddf-4d50719e3fd7cf2f20b88ada
89
+ Access-Control-Allow-Origin:
90
+ - "*"
91
+ Access-Control-Allow-Methods:
92
+ - GET, POST, OPTIONS
93
+ Access-Control-Allow-Headers:
94
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
95
+ Strict-Transport-Security:
96
+ - max-age=31557600; includeSubDomains; preload
97
+ Content-Security-Policy:
98
+ - upgrade-insecure-requests
99
+ body:
100
+ encoding: UTF-8
101
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":3}'
102
+ recorded_at: Sat, 17 Oct 2020 04:06:55 GMT
103
+ - request:
104
+ method: post
105
+ uri: https://api.steemit.com/
106
+ body:
107
+ encoding: UTF-8
108
+ string: '{"jsonrpc":"2.0","id":4,"method":"account_by_key_api.get_key_references","params":{"keys":["STM71f6yWztimJuREVyyMXNqAVbx1FzPVW6LLXNoQ35dHwKuszmHX"]}}'
109
+ headers:
110
+ Content-Type:
111
+ - application/json; charset=utf-8
112
+ User-Agent:
113
+ - steem-ruby/0.9.4
114
+ Accept-Encoding:
115
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
116
+ Accept:
117
+ - "*/*"
118
+ Host:
119
+ - api.steemit.com
120
+ Content-Length:
121
+ - '117'
122
+ response:
123
+ status:
124
+ code: 200
125
+ message: OK
126
+ headers:
127
+ Date:
128
+ - Sat, 17 Oct 2020 04:06:55 GMT
129
+ Content-Type:
130
+ - application/json
131
+ Content-Length:
132
+ - '92'
133
+ Connection:
134
+ - keep-alive
135
+ Server:
136
+ - nginx
137
+ X-Jussi-Request-Id:
138
+ - '000112533102460111'
139
+ X-Amzn-Trace-Id:
140
+ - Root=1-5f8a6ddf-2d6c27561a124b8f2dce8d26
141
+ Access-Control-Allow-Origin:
142
+ - "*"
143
+ Access-Control-Allow-Methods:
144
+ - GET, POST, OPTIONS
145
+ Access-Control-Allow-Headers:
146
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
147
+ Strict-Transport-Security:
148
+ - max-age=31557600; includeSubDomains; preload
149
+ Content-Security-Policy:
150
+ - upgrade-insecure-requests
151
+ body:
152
+ encoding: UTF-8
153
+ string: '{"jsonrpc":"2.0","result":{"accounts":[["steemit1","steemit60","therealslimshady"]]},"id":4}'
154
+ recorded_at: Sat, 17 Oct 2020 04:06:55 GMT
155
+ - request:
156
+ method: post
157
+ uri: https://api.steemit.com/
158
+ body:
159
+ encoding: UTF-8
160
+ string: '{"jsonrpc":"2.0","id":7,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
161
+ headers:
162
+ Content-Type:
163
+ - application/json; charset=utf-8
164
+ User-Agent:
165
+ - steem-ruby/0.9.4
166
+ Accept-Encoding:
167
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
168
+ Accept:
169
+ - "*/*"
170
+ Host:
171
+ - api.steemit.com
172
+ Content-Length:
173
+ - '85'
174
+ response:
175
+ status:
176
+ code: 200
177
+ message: OK
178
+ headers:
179
+ Date:
180
+ - Sat, 17 Oct 2020 04:10:40 GMT
181
+ Content-Type:
182
+ - application/json
183
+ Content-Length:
184
+ - '76'
185
+ Connection:
186
+ - keep-alive
187
+ Server:
188
+ - nginx
189
+ X-Jussi-Cache-Hit:
190
+ - appbase.jsonrpc.get_signature.params={"method":"account_by_key_api.get_key_references"}
191
+ X-Jussi-Request-Id:
192
+ - '000175213491026029'
193
+ X-Amzn-Trace-Id:
194
+ - Root=1-5f8a6ec0-3f377bdd15cf28f35ae5d5fa
195
+ Access-Control-Allow-Origin:
196
+ - "*"
197
+ Access-Control-Allow-Methods:
198
+ - GET, POST, OPTIONS
199
+ Access-Control-Allow-Headers:
200
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
201
+ Strict-Transport-Security:
202
+ - max-age=31557600; includeSubDomains; preload
203
+ Content-Security-Policy:
204
+ - upgrade-insecure-requests
205
+ body:
206
+ encoding: UTF-8
207
+ string: '{"id":7,"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}}}'
208
+ recorded_at: Sat, 17 Oct 2020 04:10:41 GMT
209
+ - request:
210
+ method: post
211
+ uri: https://api.steemit.com/
212
+ body:
213
+ encoding: UTF-8
214
+ string: '{"jsonrpc":"2.0","id":8,"method":"account_by_key_api.get_key_references","params":{"keys":["STM71f6yWztimJuREVyyMXNqAVbx1FzPVW6LLXNoQ35dHwKuszmHX"]}}'
215
+ headers:
216
+ Content-Type:
217
+ - application/json; charset=utf-8
218
+ User-Agent:
219
+ - steem-ruby/0.9.4
220
+ Accept-Encoding:
221
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
222
+ Accept:
223
+ - "*/*"
224
+ Host:
225
+ - api.steemit.com
226
+ Content-Length:
227
+ - '117'
228
+ response:
229
+ status:
230
+ code: 200
231
+ message: OK
232
+ headers:
233
+ Date:
234
+ - Sat, 17 Oct 2020 04:10:41 GMT
235
+ Content-Type:
236
+ - application/json
237
+ Content-Length:
238
+ - '92'
239
+ Connection:
240
+ - keep-alive
241
+ Server:
242
+ - nginx
243
+ X-Jussi-Request-Id:
244
+ - '000238053358789580'
245
+ X-Amzn-Trace-Id:
246
+ - Root=1-5f8a6ec1-395ff72c75826f9146578734
247
+ Access-Control-Allow-Origin:
248
+ - "*"
249
+ Access-Control-Allow-Methods:
250
+ - GET, POST, OPTIONS
251
+ Access-Control-Allow-Headers:
252
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
253
+ Strict-Transport-Security:
254
+ - max-age=31557600; includeSubDomains; preload
255
+ Content-Security-Policy:
256
+ - upgrade-insecure-requests
257
+ body:
258
+ encoding: UTF-8
259
+ string: '{"jsonrpc":"2.0","result":{"accounts":[["steemit1","steemit60","therealslimshady"]]},"id":8}'
260
+ recorded_at: Sat, 17 Oct 2020 04:10:41 GMT
261
+ - request:
262
+ method: post
263
+ uri: https://api.steemit.com/
264
+ body:
265
+ encoding: UTF-8
266
+ string: '{"jsonrpc":"2.0","id":152,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
267
+ headers:
268
+ Content-Type:
269
+ - application/json; charset=utf-8
270
+ User-Agent:
271
+ - steem-ruby/0.9.4
272
+ Accept-Encoding:
273
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
274
+ Accept:
275
+ - "*/*"
276
+ Host:
277
+ - api.steemit.com
278
+ Content-Length:
279
+ - '97'
280
+ response:
281
+ status:
282
+ code: 200
283
+ message: OK
284
+ headers:
285
+ Date:
286
+ - Sat, 17 Oct 2020 04:13:56 GMT
287
+ Content-Type:
288
+ - application/json
289
+ Content-Length:
290
+ - '78'
291
+ Connection:
292
+ - keep-alive
293
+ Server:
294
+ - nginx
295
+ X-Jussi-Request-Id:
296
+ - '000933823164575848'
297
+ X-Amzn-Trace-Id:
298
+ - Root=1-5f8a6f84-1fabe0de5e664a5d01ba4a18
299
+ Access-Control-Allow-Origin:
300
+ - "*"
301
+ Access-Control-Allow-Methods:
302
+ - GET, POST, OPTIONS
303
+ Access-Control-Allow-Headers:
304
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
305
+ Strict-Transport-Security:
306
+ - max-age=31557600; includeSubDomains; preload
307
+ Content-Security-Policy:
308
+ - upgrade-insecure-requests
309
+ body:
310
+ encoding: UTF-8
311
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":152}'
312
+ recorded_at: Sat, 17 Oct 2020 04:13:56 GMT
313
+ - request:
314
+ method: post
315
+ uri: https://api.steemit.com/
316
+ body:
317
+ encoding: UTF-8
318
+ string: '{"jsonrpc":"2.0","id":153,"method":"account_by_key_api.get_key_references","params":{"keys":["STM71f6yWztimJuREVyyMXNqAVbx1FzPVW6LLXNoQ35dHwKuszmHX"]}}'
319
+ headers:
320
+ Content-Type:
321
+ - application/json; charset=utf-8
322
+ User-Agent:
323
+ - steem-ruby/0.9.4
324
+ Accept-Encoding:
325
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
326
+ Accept:
327
+ - "*/*"
328
+ Host:
329
+ - api.steemit.com
330
+ Content-Length:
331
+ - '119'
332
+ response:
333
+ status:
334
+ code: 200
335
+ message: OK
336
+ headers:
337
+ Date:
338
+ - Sat, 17 Oct 2020 04:13:56 GMT
339
+ Content-Type:
340
+ - application/json
341
+ Content-Length:
342
+ - '94'
343
+ Connection:
344
+ - keep-alive
345
+ Server:
346
+ - nginx
347
+ X-Jussi-Request-Id:
348
+ - '000928419558613988'
349
+ X-Amzn-Trace-Id:
350
+ - Root=1-5f8a6f84-64e0799a5dadd51462692017
351
+ Access-Control-Allow-Origin:
352
+ - "*"
353
+ Access-Control-Allow-Methods:
354
+ - GET, POST, OPTIONS
355
+ Access-Control-Allow-Headers:
356
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
357
+ Strict-Transport-Security:
358
+ - max-age=31557600; includeSubDomains; preload
359
+ Content-Security-Policy:
360
+ - upgrade-insecure-requests
361
+ body:
362
+ encoding: UTF-8
363
+ string: '{"jsonrpc":"2.0","result":{"accounts":[["steemit1","steemit60","therealslimshady"]]},"id":153}'
364
+ recorded_at: Sat, 17 Oct 2020 04:13:57 GMT
365
+ - request:
366
+ method: post
367
+ uri: https://api.steemit.com/
368
+ body:
369
+ encoding: UTF-8
370
+ string: '{"jsonrpc":"2.0","id":16,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
371
+ headers:
372
+ Content-Type:
373
+ - application/json; charset=utf-8
374
+ User-Agent:
375
+ - steem-ruby/0.9.4
376
+ Accept-Encoding:
377
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
378
+ Accept:
379
+ - "*/*"
380
+ Host:
381
+ - api.steemit.com
382
+ Content-Length:
383
+ - '92'
384
+ response:
385
+ status:
386
+ code: 200
387
+ message: OK
388
+ headers:
389
+ Date:
390
+ - Sat, 17 Oct 2020 04:14:10 GMT
391
+ Content-Type:
392
+ - application/json
393
+ Content-Length:
394
+ - '77'
395
+ Connection:
396
+ - keep-alive
397
+ Server:
398
+ - nginx
399
+ X-Jussi-Request-Id:
400
+ - '000119875033755820'
401
+ X-Amzn-Trace-Id:
402
+ - Root=1-5f8a6f92-35483f3320f6dc971e5bb3c3
403
+ Access-Control-Allow-Origin:
404
+ - "*"
405
+ Access-Control-Allow-Methods:
406
+ - GET, POST, OPTIONS
407
+ Access-Control-Allow-Headers:
408
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
409
+ Strict-Transport-Security:
410
+ - max-age=31557600; includeSubDomains; preload
411
+ Content-Security-Policy:
412
+ - upgrade-insecure-requests
413
+ body:
414
+ encoding: UTF-8
415
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":16}'
416
+ recorded_at: Sat, 17 Oct 2020 04:14:11 GMT
417
+ - request:
418
+ method: post
419
+ uri: https://api.steemit.com/
420
+ body:
421
+ encoding: UTF-8
422
+ string: '{"jsonrpc":"2.0","id":17,"method":"account_by_key_api.get_key_references","params":{"keys":["STM71f6yWztimJuREVyyMXNqAVbx1FzPVW6LLXNoQ35dHwKuszmHX"]}}'
423
+ headers:
424
+ Content-Type:
425
+ - application/json; charset=utf-8
426
+ User-Agent:
427
+ - steem-ruby/0.9.4
428
+ Accept-Encoding:
429
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
430
+ Accept:
431
+ - "*/*"
432
+ Host:
433
+ - api.steemit.com
434
+ Content-Length:
435
+ - '118'
436
+ response:
437
+ status:
438
+ code: 200
439
+ message: OK
440
+ headers:
441
+ Date:
442
+ - Sat, 17 Oct 2020 04:14:11 GMT
443
+ Content-Type:
444
+ - application/json
445
+ Content-Length:
446
+ - '93'
447
+ Connection:
448
+ - keep-alive
449
+ Server:
450
+ - nginx
451
+ X-Jussi-Request-Id:
452
+ - '000042668848479655'
453
+ X-Amzn-Trace-Id:
454
+ - Root=1-5f8a6f93-52054f87109025100915d79f
455
+ Access-Control-Allow-Origin:
456
+ - "*"
457
+ Access-Control-Allow-Methods:
458
+ - GET, POST, OPTIONS
459
+ Access-Control-Allow-Headers:
460
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
461
+ Strict-Transport-Security:
462
+ - max-age=31557600; includeSubDomains; preload
463
+ Content-Security-Policy:
464
+ - upgrade-insecure-requests
465
+ body:
466
+ encoding: UTF-8
467
+ string: '{"jsonrpc":"2.0","result":{"accounts":[["steemit1","steemit60","therealslimshady"]]},"id":17}'
468
+ recorded_at: Sat, 17 Oct 2020 04:14:11 GMT
469
+ - request:
470
+ method: post
471
+ uri: https://api.steemitdev.com/
472
+ body:
473
+ encoding: UTF-8
474
+ string: '{"jsonrpc":"2.0","id":4,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
475
+ headers:
476
+ Content-Type:
477
+ - application/json; charset=utf-8
478
+ User-Agent:
479
+ - steem-ruby/0.9.4
480
+ Accept-Encoding:
481
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
482
+ Accept:
483
+ - "*/*"
484
+ Host:
485
+ - api.steemitdev.com
486
+ Content-Length:
487
+ - '85'
488
+ response:
489
+ status:
490
+ code: 200
491
+ message: OK
492
+ headers:
493
+ Date:
494
+ - Sat, 17 Oct 2020 04:21:56 GMT
495
+ Content-Type:
496
+ - application/json
497
+ Content-Length:
498
+ - '76'
499
+ Connection:
500
+ - keep-alive
501
+ Server:
502
+ - nginx
503
+ X-Jussi-Cache-Hit:
504
+ - appbase.jsonrpc.get_signature.params={"method":"account_by_key_api.get_key_references"}
505
+ X-Jussi-Request-Id:
506
+ - '000864331012252264'
507
+ X-Amzn-Trace-Id:
508
+ - Root=1-5f8a7164-69e7d9192a93577e4d7e216a
509
+ Access-Control-Allow-Origin:
510
+ - "*"
511
+ Access-Control-Allow-Methods:
512
+ - GET, POST, OPTIONS
513
+ Access-Control-Allow-Headers:
514
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
515
+ Strict-Transport-Security:
516
+ - max-age=31557600; includeSubDomains; preload
517
+ Content-Security-Policy:
518
+ - upgrade-insecure-requests
519
+ body:
520
+ encoding: UTF-8
521
+ string: '{"id":4,"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}}}'
522
+ recorded_at: Sat, 17 Oct 2020 04:21:56 GMT
523
+ - request:
524
+ method: post
525
+ uri: https://api.steemitdev.com/
526
+ body:
527
+ encoding: UTF-8
528
+ string: '{"jsonrpc":"2.0","id":5,"method":"account_by_key_api.get_key_references","params":{"keys":["STM71f6yWztimJuREVyyMXNqAVbx1FzPVW6LLXNoQ35dHwKuszmHX"]}}'
529
+ headers:
530
+ Content-Type:
531
+ - application/json; charset=utf-8
532
+ User-Agent:
533
+ - steem-ruby/0.9.4
534
+ Accept-Encoding:
535
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
536
+ Accept:
537
+ - "*/*"
538
+ Host:
539
+ - api.steemitdev.com
540
+ Content-Length:
541
+ - '117'
542
+ response:
543
+ status:
544
+ code: 200
545
+ message: OK
546
+ headers:
547
+ Date:
548
+ - Sat, 17 Oct 2020 04:21:57 GMT
549
+ Content-Type:
550
+ - application/json
551
+ Content-Length:
552
+ - '92'
553
+ Connection:
554
+ - keep-alive
555
+ Server:
556
+ - nginx
557
+ X-Jussi-Request-Id:
558
+ - '000751465180495975'
559
+ X-Amzn-Trace-Id:
560
+ - Root=1-5f8a7165-10a4d77d7d4fd3ca4690830e
561
+ Access-Control-Allow-Origin:
562
+ - "*"
563
+ Access-Control-Allow-Methods:
564
+ - GET, POST, OPTIONS
565
+ Access-Control-Allow-Headers:
566
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
567
+ Strict-Transport-Security:
568
+ - max-age=31557600; includeSubDomains; preload
569
+ Content-Security-Policy:
570
+ - upgrade-insecure-requests
571
+ body:
572
+ encoding: UTF-8
573
+ string: '{"jsonrpc":"2.0","result":{"accounts":[["steemit1","steemit60","therealslimshady"]]},"id":5}'
574
+ recorded_at: Sat, 17 Oct 2020 04:21:57 GMT
575
+ - request:
576
+ method: post
577
+ uri: https://api.steemitdev.com/
578
+ body:
579
+ encoding: UTF-8
580
+ string: '{"jsonrpc":"2.0","id":30,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
581
+ headers:
582
+ Content-Type:
583
+ - application/json; charset=utf-8
584
+ User-Agent:
585
+ - steem-ruby/0.9.4
586
+ Accept-Encoding:
587
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
588
+ Accept:
589
+ - "*/*"
590
+ Host:
591
+ - api.steemitdev.com
592
+ Content-Length:
593
+ - '86'
594
+ response:
595
+ status:
596
+ code: 200
597
+ message: OK
598
+ headers:
599
+ Date:
600
+ - Sat, 17 Oct 2020 04:26:52 GMT
601
+ Content-Type:
602
+ - application/json
603
+ Content-Length:
604
+ - '77'
605
+ Connection:
606
+ - keep-alive
607
+ Server:
608
+ - nginx
609
+ X-Jussi-Request-Id:
610
+ - '000167512101000651'
611
+ X-Amzn-Trace-Id:
612
+ - Root=1-5f8a728c-1e0c7bbc18c096c60cf9ca58
613
+ Access-Control-Allow-Origin:
614
+ - "*"
615
+ Access-Control-Allow-Methods:
616
+ - GET, POST, OPTIONS
617
+ Access-Control-Allow-Headers:
618
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
619
+ Strict-Transport-Security:
620
+ - max-age=31557600; includeSubDomains; preload
621
+ Content-Security-Policy:
622
+ - upgrade-insecure-requests
623
+ body:
624
+ encoding: UTF-8
625
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":30}'
626
+ recorded_at: Sat, 17 Oct 2020 04:26:52 GMT
627
+ - request:
628
+ method: post
629
+ uri: https://api.steemitdev.com/
630
+ body:
631
+ encoding: UTF-8
632
+ string: '{"jsonrpc":"2.0","id":31,"method":"account_by_key_api.get_key_references","params":{"keys":["STM71f6yWztimJuREVyyMXNqAVbx1FzPVW6LLXNoQ35dHwKuszmHX"]}}'
633
+ headers:
634
+ Content-Type:
635
+ - application/json; charset=utf-8
636
+ User-Agent:
637
+ - steem-ruby/0.9.4
638
+ Accept-Encoding:
639
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
640
+ Accept:
641
+ - "*/*"
642
+ Host:
643
+ - api.steemitdev.com
644
+ Content-Length:
645
+ - '118'
646
+ response:
647
+ status:
648
+ code: 200
649
+ message: OK
650
+ headers:
651
+ Date:
652
+ - Sat, 17 Oct 2020 04:26:53 GMT
653
+ Content-Type:
654
+ - application/json
655
+ Content-Length:
656
+ - '93'
657
+ Connection:
658
+ - keep-alive
659
+ Server:
660
+ - nginx
661
+ X-Jussi-Request-Id:
662
+ - '000170972035907960'
663
+ X-Amzn-Trace-Id:
664
+ - Root=1-5f8a728d-3a53ca5749c5727a5422f338
665
+ Access-Control-Allow-Origin:
666
+ - "*"
667
+ Access-Control-Allow-Methods:
668
+ - GET, POST, OPTIONS
669
+ Access-Control-Allow-Headers:
670
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
671
+ Strict-Transport-Security:
672
+ - max-age=31557600; includeSubDomains; preload
673
+ Content-Security-Policy:
674
+ - upgrade-insecure-requests
675
+ body:
676
+ encoding: UTF-8
677
+ string: '{"jsonrpc":"2.0","result":{"accounts":[["steemit1","steemit60","therealslimshady"]]},"id":31}'
678
+ recorded_at: Sat, 17 Oct 2020 04:26:53 GMT
679
+ - request:
680
+ method: post
681
+ uri: https://api.steemitdev.com/
682
+ body:
683
+ encoding: UTF-8
684
+ string: '{"jsonrpc":"2.0","id":84,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
685
+ headers:
686
+ Content-Type:
687
+ - application/json; charset=utf-8
688
+ User-Agent:
689
+ - steem-ruby/0.9.4
690
+ Accept-Encoding:
691
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
692
+ Accept:
693
+ - "*/*"
694
+ Host:
695
+ - api.steemitdev.com
696
+ Content-Length:
697
+ - '86'
698
+ response:
699
+ status:
700
+ code: 200
701
+ message: OK
702
+ headers:
703
+ Date:
704
+ - Sat, 17 Oct 2020 04:34:53 GMT
705
+ Content-Type:
706
+ - application/json
707
+ Content-Length:
708
+ - '77'
709
+ Connection:
710
+ - keep-alive
711
+ Server:
712
+ - nginx
713
+ X-Jussi-Request-Id:
714
+ - '000654519416405343'
715
+ X-Amzn-Trace-Id:
716
+ - Root=1-5f8a746a-2cc154f7530c073d4f6b7a69
717
+ Access-Control-Allow-Origin:
718
+ - "*"
719
+ Access-Control-Allow-Methods:
720
+ - GET, POST, OPTIONS
721
+ Access-Control-Allow-Headers:
722
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
723
+ Strict-Transport-Security:
724
+ - max-age=31557600; includeSubDomains; preload
725
+ Content-Security-Policy:
726
+ - upgrade-insecure-requests
727
+ body:
728
+ encoding: UTF-8
729
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":84}'
730
+ recorded_at: Sat, 17 Oct 2020 04:34:54 GMT
731
+ - request:
732
+ method: post
733
+ uri: https://api.steemitdev.com/
734
+ body:
735
+ encoding: UTF-8
736
+ string: '{"jsonrpc":"2.0","id":85,"method":"account_by_key_api.get_key_references","params":{"keys":["STM71f6yWztimJuREVyyMXNqAVbx1FzPVW6LLXNoQ35dHwKuszmHX"]}}'
737
+ headers:
738
+ Content-Type:
739
+ - application/json; charset=utf-8
740
+ User-Agent:
741
+ - steem-ruby/0.9.4
742
+ Accept-Encoding:
743
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
744
+ Accept:
745
+ - "*/*"
746
+ Host:
747
+ - api.steemitdev.com
748
+ Content-Length:
749
+ - '118'
750
+ response:
751
+ status:
752
+ code: 200
753
+ message: OK
754
+ headers:
755
+ Date:
756
+ - Sat, 17 Oct 2020 04:34:56 GMT
757
+ Content-Type:
758
+ - application/json
759
+ Content-Length:
760
+ - '93'
761
+ Connection:
762
+ - keep-alive
763
+ Server:
764
+ - nginx
765
+ X-Jussi-Request-Id:
766
+ - '001061374304040317'
767
+ X-Amzn-Trace-Id:
768
+ - Root=1-5f8a746e-5db0d11837d8ec8f7d67f483
769
+ Access-Control-Allow-Origin:
770
+ - "*"
771
+ Access-Control-Allow-Methods:
772
+ - GET, POST, OPTIONS
773
+ Access-Control-Allow-Headers:
774
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
775
+ Strict-Transport-Security:
776
+ - max-age=31557600; includeSubDomains; preload
777
+ Content-Security-Policy:
778
+ - upgrade-insecure-requests
779
+ body:
780
+ encoding: UTF-8
781
+ string: '{"jsonrpc":"2.0","result":{"accounts":[["steemit1","steemit60","therealslimshady"]]},"id":85}'
782
+ recorded_at: Sat, 17 Oct 2020 04:34:56 GMT
783
+ - request:
784
+ method: post
785
+ uri: https://api.steemitdev.com/
786
+ body:
787
+ encoding: UTF-8
788
+ string: '{"jsonrpc":"2.0","id":2,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
789
+ headers:
790
+ Content-Type:
791
+ - application/json; charset=utf-8
792
+ User-Agent:
793
+ - steem-ruby/0.9.4
794
+ Accept-Encoding:
795
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
796
+ Accept:
797
+ - "*/*"
798
+ response:
799
+ status:
800
+ code: 200
801
+ message: OK
802
+ headers:
803
+ Date:
804
+ - Sat, 17 Oct 2020 04:39:09 GMT
805
+ Content-Type:
806
+ - application/json
807
+ Content-Length:
808
+ - '76'
809
+ Connection:
810
+ - keep-alive
811
+ Server:
812
+ - nginx
813
+ X-Jussi-Request-Id:
814
+ - '000854807290260828'
815
+ X-Amzn-Trace-Id:
816
+ - Root=1-5f8a756d-0031304377575d255fde7c32
817
+ Access-Control-Allow-Origin:
818
+ - "*"
819
+ Access-Control-Allow-Methods:
820
+ - GET, POST, OPTIONS
821
+ Access-Control-Allow-Headers:
822
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
823
+ Strict-Transport-Security:
824
+ - max-age=31557600; includeSubDomains; preload
825
+ Content-Security-Policy:
826
+ - upgrade-insecure-requests
827
+ body:
828
+ encoding: UTF-8
829
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":2}'
830
+ recorded_at: Sat, 17 Oct 2020 04:39:09 GMT
831
+ - request:
832
+ method: post
833
+ uri: https://api.steemitdev.com/
834
+ body:
835
+ encoding: UTF-8
836
+ string: '{"jsonrpc":"2.0","id":3,"method":"account_by_key_api.get_key_references","params":{"keys":["STM71f6yWztimJuREVyyMXNqAVbx1FzPVW6LLXNoQ35dHwKuszmHX"]}}'
837
+ headers:
838
+ Content-Type:
839
+ - application/json; charset=utf-8
840
+ User-Agent:
841
+ - steem-ruby/0.9.4
842
+ Accept-Encoding:
843
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
844
+ Accept:
845
+ - "*/*"
846
+ Host:
847
+ - api.steemitdev.com
848
+ Content-Length:
849
+ - '117'
850
+ response:
851
+ status:
852
+ code: 200
853
+ message: OK
854
+ headers:
855
+ Date:
856
+ - Sat, 17 Oct 2020 04:39:10 GMT
857
+ Content-Type:
858
+ - application/json
859
+ Content-Length:
860
+ - '92'
861
+ Connection:
862
+ - keep-alive
863
+ Server:
864
+ - nginx
865
+ X-Jussi-Request-Id:
866
+ - '001121982988046270'
867
+ X-Amzn-Trace-Id:
868
+ - Root=1-5f8a756e-4c73fc7d7937de9d240c97ee
869
+ Access-Control-Allow-Origin:
870
+ - "*"
871
+ Access-Control-Allow-Methods:
872
+ - GET, POST, OPTIONS
873
+ Access-Control-Allow-Headers:
874
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
875
+ Strict-Transport-Security:
876
+ - max-age=31557600; includeSubDomains; preload
877
+ Content-Security-Policy:
878
+ - upgrade-insecure-requests
879
+ body:
880
+ encoding: UTF-8
881
+ string: '{"jsonrpc":"2.0","result":{"accounts":[["steemit1","steemit60","therealslimshady"]]},"id":3}'
882
+ recorded_at: Sat, 17 Oct 2020 04:39:10 GMT
883
+ - request:
884
+ method: post
885
+ uri: https://api.steemitdev.com/
886
+ body:
887
+ encoding: UTF-8
888
+ string: '{"jsonrpc":"2.0","id":17,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
889
+ headers:
890
+ Content-Type:
891
+ - application/json; charset=utf-8
892
+ User-Agent:
893
+ - steem-ruby/0.9.4
894
+ Accept-Encoding:
895
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
896
+ Accept:
897
+ - "*/*"
898
+ Host:
899
+ - api.steemit.com
900
+ Content-Length:
901
+ - '86'
902
+ response:
903
+ status:
904
+ code: 200
905
+ message: OK
906
+ headers:
907
+ Date:
908
+ - Sat, 17 Oct 2020 05:02:58 GMT
909
+ Content-Type:
910
+ - application/json
911
+ Content-Length:
912
+ - '77'
913
+ Connection:
914
+ - keep-alive
915
+ Server:
916
+ - nginx
917
+ X-Jussi-Request-Id:
918
+ - '000947458914039162'
919
+ X-Amzn-Trace-Id:
920
+ - Root=1-5f8a7b02-626de38214c0c07515e30851
921
+ Access-Control-Allow-Origin:
922
+ - "*"
923
+ Access-Control-Allow-Methods:
924
+ - GET, POST, OPTIONS
925
+ Access-Control-Allow-Headers:
926
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
927
+ Strict-Transport-Security:
928
+ - max-age=31557600; includeSubDomains; preload
929
+ Content-Security-Policy:
930
+ - upgrade-insecure-requests
931
+ body:
932
+ encoding: UTF-8
933
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":17}'
934
+ recorded_at: Sat, 17 Oct 2020 05:02:58 GMT
935
+ - request:
936
+ method: post
937
+ uri: https://api.steemitdev.com/
938
+ body:
939
+ encoding: UTF-8
940
+ string: '{"jsonrpc":"2.0","id":18,"method":"account_by_key_api.get_key_references","params":{"keys":["STM71f6yWztimJuREVyyMXNqAVbx1FzPVW6LLXNoQ35dHwKuszmHX"]}}'
941
+ headers:
942
+ Content-Type:
943
+ - application/json; charset=utf-8
944
+ User-Agent:
945
+ - steem-ruby/0.9.4
946
+ Accept-Encoding:
947
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
948
+ Accept:
949
+ - "*/*"
950
+ Host:
951
+ - api.steemit.com
952
+ Content-Length:
953
+ - '118'
954
+ response:
955
+ status:
956
+ code: 200
957
+ message: OK
958
+ headers:
959
+ Date:
960
+ - Sat, 17 Oct 2020 05:02:59 GMT
961
+ Content-Type:
962
+ - application/json
963
+ Content-Length:
964
+ - '93'
965
+ Connection:
966
+ - keep-alive
967
+ Server:
968
+ - nginx
969
+ X-Jussi-Request-Id:
970
+ - '000326845389381564'
971
+ X-Amzn-Trace-Id:
972
+ - Root=1-5f8a7b03-716d73d23e751ea66f9e37c2
973
+ Access-Control-Allow-Origin:
974
+ - "*"
975
+ Access-Control-Allow-Methods:
976
+ - GET, POST, OPTIONS
977
+ Access-Control-Allow-Headers:
978
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
979
+ Strict-Transport-Security:
980
+ - max-age=31557600; includeSubDomains; preload
981
+ Content-Security-Policy:
982
+ - upgrade-insecure-requests
983
+ body:
984
+ encoding: UTF-8
985
+ string: '{"jsonrpc":"2.0","result":{"accounts":[["steemit1","steemit60","therealslimshady"]]},"id":18}'
986
+ recorded_at: Sat, 17 Oct 2020 05:02:59 GMT
987
+ recorded_with: VCR 6.0.0