radiator 0.4.5 → 0.4.8.pre.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -0
- data/README.md +11 -11
- data/Rakefile +50 -20
- data/lib/radiator.rb +3 -1
- data/lib/radiator/api.rb +105 -14
- data/lib/radiator/bridge.rb +34 -0
- data/lib/radiator/chain_config.rb +9 -2
- data/lib/radiator/database_api.rb +1 -1
- data/lib/radiator/follow_api.rb +1 -1
- data/lib/radiator/market_history_api.rb +1 -1
- data/lib/radiator/operation.rb +3 -2
- data/lib/radiator/operation_types.rb +43 -27
- data/lib/radiator/ssc/base_steem_smart_contract_rpc.rb +52 -10
- data/lib/radiator/ssc/blockchain.rb +10 -0
- data/lib/radiator/ssc/contracts.rb +17 -0
- data/lib/radiator/stream.rb +15 -6
- data/lib/radiator/transaction.rb +41 -1
- data/lib/radiator/type/amount.rb +26 -50
- data/lib/radiator/type/beneficiaries.rb +8 -1
- data/lib/radiator/type/price.rb +2 -2
- data/lib/radiator/version.rb +1 -1
- data/radiator.gemspec +15 -13
- data/test/fixtures/empty.json +1 -0
- data/test/fixtures/error.json +29 -0
- data/test/fixtures/follow_api_get_followers.json +1 -0
- data/test/fixtures/get_account.json +165 -0
- data/test/fixtures/get_account_count.json +1 -0
- data/test/fixtures/get_account_references.json +1 -0
- data/test/fixtures/get_block.json +193 -0
- data/test/fixtures/get_dynamic_global_properties.json +32 -0
- data/test/fixtures/get_feed_history.json +684 -0
- data/test/fixtures/get_hardfork_version.json +1 -0
- data/test/fixtures/get_key_references.json +14 -0
- data/test/fixtures/get_stats_for_time.json +57 -0
- data/test/fixtures/get_vesting_delegation.json +936 -0
- data/test/fixtures/golos_get_dynamic_global_properties.json +32 -0
- data/test/fixtures/market_history_api_get_market_history_buckets.json +1 -0
- data/test/fixtures/market_history_api_get_order_book.json +109 -0
- data/test/fixtures/market_history_api_get_recent_trades.json +55 -0
- data/test/fixtures/market_history_api_get_ticker.json +11 -0
- data/test/fixtures/market_history_api_get_volume.json +1 -0
- data/test/fixtures/null.json +1 -0
- data/test/fixtures/vcr_cassettes/account_by_key_api_all_methods.yml +631 -0
- data/test/fixtures/vcr_cassettes/account_by_key_api_jsonrpc.yml +52 -0
- data/test/fixtures/vcr_cassettes/all_methods.yml +18155 -0
- data/test/fixtures/vcr_cassettes/api_all_methods.yml +13419 -0
- data/test/fixtures/vcr_cassettes/base_per_debt.yml +5408 -0
- data/test/fixtures/vcr_cassettes/base_per_mvest.yml +4351 -0
- data/test/fixtures/vcr_cassettes/block_time.yml +3687 -0
- data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +1186 -0
- data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +13462 -0
- data/test/fixtures/vcr_cassettes/condenser_api_jsonrpc.yml +51 -0
- data/test/fixtures/vcr_cassettes/expiration_initialize.yml +3997 -0
- data/test/fixtures/vcr_cassettes/find_account.yml +4004 -0
- data/test/fixtures/vcr_cassettes/find_block.yml +3946 -0
- data/test/fixtures/vcr_cassettes/find_comment.yml +12457 -0
- data/test/fixtures/vcr_cassettes/follow_api_jsonrpc.yml +52 -0
- data/test/fixtures/vcr_cassettes/get_account_count.yml +627 -0
- data/test/fixtures/vcr_cassettes/get_account_references.yml +663 -0
- data/test/fixtures/vcr_cassettes/get_accounts.yml +735 -0
- data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +663 -0
- data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +721 -0
- data/test/fixtures/vcr_cassettes/get_feed_history.yml +1201 -0
- data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +629 -0
- data/test/fixtures/vcr_cassettes/get_key_references.yml +1091 -0
- data/test/fixtures/vcr_cassettes/get_market_history.yml +1147 -0
- data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +1147 -0
- data/test/fixtures/vcr_cassettes/get_order_book.yml +1195 -0
- data/test/fixtures/vcr_cassettes/get_recent_trades.yml +1147 -0
- data/test/fixtures/vcr_cassettes/get_ticker.yml +1151 -0
- data/test/fixtures/vcr_cassettes/get_trade_history.yml +1153 -0
- data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +575 -0
- data/test/fixtures/vcr_cassettes/get_volume.yml +1155 -0
- data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +627 -0
- data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +575 -0
- data/test/fixtures/vcr_cassettes/market_history_api_all_methods.yml +4373 -0
- data/test/fixtures/vcr_cassettes/network_broadcast_api_all_methods.yml +1288 -0
- data/test/fixtures/vcr_cassettes/properties.yml +3992 -0
- data/test/fixtures/vcr_cassettes/recover_transaction.yml +1211 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info.yml +92 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info_invalid.yml +90 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_latest_block_info.yml +91 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_transaction_info.yml +92 -0
- data/test/fixtures/vcr_cassettes/ssc_contracts_contract.yml +366 -0
- data/test/fixtures/vcr_cassettes/ssc_contracts_find.yml +91 -0
- data/test/fixtures/vcr_cassettes/ssc_contracts_find_one.yml +89 -0
- data/test/fixtures/vcr_cassettes/stream_jsonrpc.yml +9175 -0
- data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +3743 -0
- data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +151 -0
- data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +3869 -0
- data/test/fixtures/vcr_cassettes/valid_chains.yml +3427 -0
- data/test/radiator/account_by_key_api_test.rb +46 -0
- data/test/radiator/api_test.rb +135 -0
- data/test/radiator/chain_stats_api_test.rb +49 -0
- data/test/radiator/chain_test.rb +153 -0
- data/test/radiator/condenser_api_test.rb +48 -0
- data/test/radiator/follow_api_test.rb +48 -0
- data/test/radiator/market_history_api_test.rb +100 -0
- data/test/radiator/network_broadcast_api_test.rb +48 -0
- data/test/radiator/operation_test.rb +117 -0
- data/test/radiator/ssc/blockchain_test.rb +58 -0
- data/test/radiator/ssc/contracts_test.rb +65 -0
- data/test/radiator/stream_test.rb +48 -0
- data/test/radiator/tag_api_test.rb +40 -0
- data/test/radiator/transaction_test.rb +755 -0
- data/test/test_helper.rb +66 -0
- metadata +190 -80
- data/.codeclimate.yml +0 -19
- data/.gitignore +0 -52
- data/.travis.yml +0 -23
- data/gource.sh +0 -8
- data/images/Anthony Martin.png +0 -0
- data/images/Marvin Hofmann.jpg +0 -0
- data/images/Marvin Hofmann.png +0 -0
- data/lib/steem.rb +0 -17
@@ -0,0 +1,52 @@
|
|
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":1,"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:26:39 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
|
+
- '000187652526395807'
|
35
|
+
X-Amzn-Trace-Id:
|
36
|
+
- Root=1-5f8a727e-3ea4a13b32ae084c55d9bd21
|
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":1}'
|
50
|
+
http_version:
|
51
|
+
recorded_at: Sat, 17 Oct 2020 04:26:39 GMT
|
52
|
+
recorded_with: VCR 5.0.0
|
@@ -0,0 +1,627 @@
|
|
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":55,"method":"condenser_api.get_account_count","params":[]}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json; charset=utf-8
|
12
|
+
User-Agent:
|
13
|
+
- steem-ruby/0.9.4
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
Host:
|
19
|
+
- api.steemit.com
|
20
|
+
Content-Length:
|
21
|
+
- '83'
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Date:
|
28
|
+
- Sat, 17 Oct 2020 04:07:02 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Content-Length:
|
32
|
+
- '42'
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
Server:
|
36
|
+
- nginx
|
37
|
+
X-Jussi-Request-Id:
|
38
|
+
- '000963180135046986'
|
39
|
+
X-Amzn-Trace-Id:
|
40
|
+
- Root=1-5f8a6de6-7d9434b11a21efcc66a67ac7
|
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":1435222,"id":55}'
|
54
|
+
recorded_at: Sat, 17 Oct 2020 04:07:02 GMT
|
55
|
+
- request:
|
56
|
+
method: post
|
57
|
+
uri: https://api.steemit.com/
|
58
|
+
body:
|
59
|
+
encoding: UTF-8
|
60
|
+
string: '{"jsonrpc":"2.0","id":53,"method":"condenser_api.get_account_count","params":[]}'
|
61
|
+
headers:
|
62
|
+
Content-Type:
|
63
|
+
- application/json; charset=utf-8
|
64
|
+
User-Agent:
|
65
|
+
- steem-ruby/0.9.4
|
66
|
+
Accept-Encoding:
|
67
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
68
|
+
Accept:
|
69
|
+
- "*/*"
|
70
|
+
Host:
|
71
|
+
- api.steemit.com
|
72
|
+
Content-Length:
|
73
|
+
- '92'
|
74
|
+
response:
|
75
|
+
status:
|
76
|
+
code: 200
|
77
|
+
message: OK
|
78
|
+
headers:
|
79
|
+
Date:
|
80
|
+
- Sat, 17 Oct 2020 04:09:08 GMT
|
81
|
+
Content-Type:
|
82
|
+
- application/json
|
83
|
+
Content-Length:
|
84
|
+
- '42'
|
85
|
+
Connection:
|
86
|
+
- keep-alive
|
87
|
+
Server:
|
88
|
+
- nginx
|
89
|
+
X-Jussi-Request-Id:
|
90
|
+
- '000586025449957840'
|
91
|
+
X-Amzn-Trace-Id:
|
92
|
+
- Root=1-5f8a6e64-17bdea050a48758d139e27f5
|
93
|
+
Access-Control-Allow-Origin:
|
94
|
+
- "*"
|
95
|
+
Access-Control-Allow-Methods:
|
96
|
+
- GET, POST, OPTIONS
|
97
|
+
Access-Control-Allow-Headers:
|
98
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
99
|
+
Strict-Transport-Security:
|
100
|
+
- max-age=31557600; includeSubDomains; preload
|
101
|
+
Content-Security-Policy:
|
102
|
+
- upgrade-insecure-requests
|
103
|
+
body:
|
104
|
+
encoding: UTF-8
|
105
|
+
string: '{"jsonrpc":"2.0","result":1435223,"id":53}'
|
106
|
+
recorded_at: Sat, 17 Oct 2020 04:09:08 GMT
|
107
|
+
- request:
|
108
|
+
method: post
|
109
|
+
uri: https://api.steemit.com/
|
110
|
+
body:
|
111
|
+
encoding: UTF-8
|
112
|
+
string: '{"jsonrpc":"2.0","id":121,"method":"condenser_api.get_account_count","params":[]}'
|
113
|
+
headers:
|
114
|
+
Content-Type:
|
115
|
+
- application/json; charset=utf-8
|
116
|
+
User-Agent:
|
117
|
+
- steem-ruby/0.9.4
|
118
|
+
Accept-Encoding:
|
119
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
120
|
+
Accept:
|
121
|
+
- "*/*"
|
122
|
+
Host:
|
123
|
+
- api.steemit.com
|
124
|
+
Content-Length:
|
125
|
+
- '99'
|
126
|
+
response:
|
127
|
+
status:
|
128
|
+
code: 200
|
129
|
+
message: OK
|
130
|
+
headers:
|
131
|
+
Date:
|
132
|
+
- Sat, 17 Oct 2020 04:13:51 GMT
|
133
|
+
Content-Type:
|
134
|
+
- application/json
|
135
|
+
Content-Length:
|
136
|
+
- '43'
|
137
|
+
Connection:
|
138
|
+
- keep-alive
|
139
|
+
Server:
|
140
|
+
- nginx
|
141
|
+
X-Jussi-Request-Id:
|
142
|
+
- '000442610775909509'
|
143
|
+
X-Amzn-Trace-Id:
|
144
|
+
- Root=1-5f8a6f7f-1e3069f1471a22f765df978e
|
145
|
+
Access-Control-Allow-Origin:
|
146
|
+
- "*"
|
147
|
+
Access-Control-Allow-Methods:
|
148
|
+
- GET, POST, OPTIONS
|
149
|
+
Access-Control-Allow-Headers:
|
150
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
151
|
+
Strict-Transport-Security:
|
152
|
+
- max-age=31557600; includeSubDomains; preload
|
153
|
+
Content-Security-Policy:
|
154
|
+
- upgrade-insecure-requests
|
155
|
+
body:
|
156
|
+
encoding: UTF-8
|
157
|
+
string: '{"jsonrpc":"2.0","result":1435223,"id":121}'
|
158
|
+
recorded_at: Sat, 17 Oct 2020 04:13:51 GMT
|
159
|
+
- request:
|
160
|
+
method: post
|
161
|
+
uri: https://api.steemit.com/
|
162
|
+
body:
|
163
|
+
encoding: UTF-8
|
164
|
+
string: '{"jsonrpc":"2.0","id":117,"method":"condenser_api.get_account_count","params":[]}'
|
165
|
+
headers:
|
166
|
+
Content-Type:
|
167
|
+
- application/json; charset=utf-8
|
168
|
+
User-Agent:
|
169
|
+
- steem-ruby/0.9.4
|
170
|
+
Accept-Encoding:
|
171
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
172
|
+
Accept:
|
173
|
+
- "*/*"
|
174
|
+
Host:
|
175
|
+
- api.steemit.com
|
176
|
+
Content-Length:
|
177
|
+
- '79'
|
178
|
+
response:
|
179
|
+
status:
|
180
|
+
code: 200
|
181
|
+
message: OK
|
182
|
+
headers:
|
183
|
+
Date:
|
184
|
+
- Sat, 17 Oct 2020 04:14:47 GMT
|
185
|
+
Content-Type:
|
186
|
+
- application/json
|
187
|
+
Content-Length:
|
188
|
+
- '43'
|
189
|
+
Connection:
|
190
|
+
- keep-alive
|
191
|
+
Server:
|
192
|
+
- nginx
|
193
|
+
X-Jussi-Request-Id:
|
194
|
+
- '000328139180160294'
|
195
|
+
X-Amzn-Trace-Id:
|
196
|
+
- Root=1-5f8a6fb7-203e26c81e516a373a8b218f
|
197
|
+
Access-Control-Allow-Origin:
|
198
|
+
- "*"
|
199
|
+
Access-Control-Allow-Methods:
|
200
|
+
- GET, POST, OPTIONS
|
201
|
+
Access-Control-Allow-Headers:
|
202
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
203
|
+
Strict-Transport-Security:
|
204
|
+
- max-age=31557600; includeSubDomains; preload
|
205
|
+
Content-Security-Policy:
|
206
|
+
- upgrade-insecure-requests
|
207
|
+
body:
|
208
|
+
encoding: UTF-8
|
209
|
+
string: '{"jsonrpc":"2.0","result":1435223,"id":117}'
|
210
|
+
recorded_at: Sat, 17 Oct 2020 04:14:47 GMT
|
211
|
+
- request:
|
212
|
+
method: post
|
213
|
+
uri: https://api.steemit.com/
|
214
|
+
body:
|
215
|
+
encoding: UTF-8
|
216
|
+
string: '{"jsonrpc":"2.0","id":43,"method":"condenser_api.get_account_count","params":[]}'
|
217
|
+
headers:
|
218
|
+
Content-Type:
|
219
|
+
- application/json; charset=utf-8
|
220
|
+
User-Agent:
|
221
|
+
- steem-ruby/0.9.4
|
222
|
+
Accept-Encoding:
|
223
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
224
|
+
Accept:
|
225
|
+
- "*/*"
|
226
|
+
Host:
|
227
|
+
- api.steemit.com
|
228
|
+
Content-Length:
|
229
|
+
- '83'
|
230
|
+
response:
|
231
|
+
status:
|
232
|
+
code: 200
|
233
|
+
message: OK
|
234
|
+
headers:
|
235
|
+
Date:
|
236
|
+
- Sat, 17 Oct 2020 04:18:50 GMT
|
237
|
+
Content-Type:
|
238
|
+
- application/json
|
239
|
+
Content-Length:
|
240
|
+
- '42'
|
241
|
+
Connection:
|
242
|
+
- keep-alive
|
243
|
+
Server:
|
244
|
+
- nginx
|
245
|
+
X-Jussi-Request-Id:
|
246
|
+
- '001075092201029220'
|
247
|
+
X-Amzn-Trace-Id:
|
248
|
+
- Root=1-5f8a70aa-47465c153af2b69f4a07f93e
|
249
|
+
Access-Control-Allow-Origin:
|
250
|
+
- "*"
|
251
|
+
Access-Control-Allow-Methods:
|
252
|
+
- GET, POST, OPTIONS
|
253
|
+
Access-Control-Allow-Headers:
|
254
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
255
|
+
Strict-Transport-Security:
|
256
|
+
- max-age=31557600; includeSubDomains; preload
|
257
|
+
Content-Security-Policy:
|
258
|
+
- upgrade-insecure-requests
|
259
|
+
body:
|
260
|
+
encoding: UTF-8
|
261
|
+
string: '{"jsonrpc":"2.0","result":1435224,"id":43}'
|
262
|
+
recorded_at: Sat, 17 Oct 2020 04:18:50 GMT
|
263
|
+
- request:
|
264
|
+
method: post
|
265
|
+
uri: https://api.steemitdev.com/
|
266
|
+
body:
|
267
|
+
encoding: UTF-8
|
268
|
+
string: '{"jsonrpc":"2.0","id":99,"method":"condenser_api.get_account_count","params":[]}'
|
269
|
+
headers:
|
270
|
+
Content-Type:
|
271
|
+
- application/json; charset=utf-8
|
272
|
+
User-Agent:
|
273
|
+
- steem-ruby/0.9.4
|
274
|
+
Accept-Encoding:
|
275
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
276
|
+
Accept:
|
277
|
+
- "*/*"
|
278
|
+
Host:
|
279
|
+
- api.steemitdev.com
|
280
|
+
Content-Length:
|
281
|
+
- '75'
|
282
|
+
response:
|
283
|
+
status:
|
284
|
+
code: 200
|
285
|
+
message: OK
|
286
|
+
headers:
|
287
|
+
Date:
|
288
|
+
- Sat, 17 Oct 2020 04:23:13 GMT
|
289
|
+
Content-Type:
|
290
|
+
- application/json
|
291
|
+
Content-Length:
|
292
|
+
- '42'
|
293
|
+
Connection:
|
294
|
+
- keep-alive
|
295
|
+
Server:
|
296
|
+
- nginx
|
297
|
+
X-Jussi-Request-Id:
|
298
|
+
- '000823136771479444'
|
299
|
+
X-Amzn-Trace-Id:
|
300
|
+
- Root=1-5f8a71b1-360fd04a53b0325862c34013
|
301
|
+
Access-Control-Allow-Origin:
|
302
|
+
- "*"
|
303
|
+
Access-Control-Allow-Methods:
|
304
|
+
- GET, POST, OPTIONS
|
305
|
+
Access-Control-Allow-Headers:
|
306
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
307
|
+
Strict-Transport-Security:
|
308
|
+
- max-age=31557600; includeSubDomains; preload
|
309
|
+
Content-Security-Policy:
|
310
|
+
- upgrade-insecure-requests
|
311
|
+
body:
|
312
|
+
encoding: UTF-8
|
313
|
+
string: '{"jsonrpc":"2.0","result":1435225,"id":99}'
|
314
|
+
recorded_at: Sat, 17 Oct 2020 04:23:13 GMT
|
315
|
+
- request:
|
316
|
+
method: post
|
317
|
+
uri: https://api.steemitdev.com/
|
318
|
+
body:
|
319
|
+
encoding: UTF-8
|
320
|
+
string: '{"jsonrpc":"2.0","id":62,"method":"condenser_api.get_account_count","params":[]}'
|
321
|
+
headers:
|
322
|
+
Content-Type:
|
323
|
+
- application/json; charset=utf-8
|
324
|
+
User-Agent:
|
325
|
+
- steem-ruby/0.9.4
|
326
|
+
Accept-Encoding:
|
327
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
328
|
+
Accept:
|
329
|
+
- "*/*"
|
330
|
+
Host:
|
331
|
+
- api.steemitdev.com
|
332
|
+
Content-Length:
|
333
|
+
- '80'
|
334
|
+
response:
|
335
|
+
status:
|
336
|
+
code: 200
|
337
|
+
message: OK
|
338
|
+
headers:
|
339
|
+
Date:
|
340
|
+
- Sat, 17 Oct 2020 04:27:16 GMT
|
341
|
+
Content-Type:
|
342
|
+
- application/json
|
343
|
+
Content-Length:
|
344
|
+
- '42'
|
345
|
+
Connection:
|
346
|
+
- keep-alive
|
347
|
+
Server:
|
348
|
+
- nginx
|
349
|
+
X-Jussi-Request-Id:
|
350
|
+
- '000270282435300536'
|
351
|
+
X-Amzn-Trace-Id:
|
352
|
+
- Root=1-5f8a72a4-1e50536f7c1294b60ca5eac3
|
353
|
+
Access-Control-Allow-Origin:
|
354
|
+
- "*"
|
355
|
+
Access-Control-Allow-Methods:
|
356
|
+
- GET, POST, OPTIONS
|
357
|
+
Access-Control-Allow-Headers:
|
358
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
359
|
+
Strict-Transport-Security:
|
360
|
+
- max-age=31557600; includeSubDomains; preload
|
361
|
+
Content-Security-Policy:
|
362
|
+
- upgrade-insecure-requests
|
363
|
+
body:
|
364
|
+
encoding: UTF-8
|
365
|
+
string: '{"jsonrpc":"2.0","result":1435226,"id":62}'
|
366
|
+
recorded_at: Sat, 17 Oct 2020 04:27:16 GMT
|
367
|
+
- request:
|
368
|
+
method: post
|
369
|
+
uri: https://api.steemitdev.com/
|
370
|
+
body:
|
371
|
+
encoding: UTF-8
|
372
|
+
string: '{"jsonrpc":"2.0","id":45,"method":"condenser_api.get_account_count","params":[]}'
|
373
|
+
headers:
|
374
|
+
Content-Type:
|
375
|
+
- application/json; charset=utf-8
|
376
|
+
User-Agent:
|
377
|
+
- steem-ruby/0.9.4
|
378
|
+
Accept-Encoding:
|
379
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
380
|
+
Accept:
|
381
|
+
- "*/*"
|
382
|
+
Host:
|
383
|
+
- api.steemitdev.com
|
384
|
+
Content-Length:
|
385
|
+
- '83'
|
386
|
+
response:
|
387
|
+
status:
|
388
|
+
code: 200
|
389
|
+
message: OK
|
390
|
+
headers:
|
391
|
+
Date:
|
392
|
+
- Sat, 17 Oct 2020 04:34:17 GMT
|
393
|
+
Content-Type:
|
394
|
+
- application/json
|
395
|
+
Content-Length:
|
396
|
+
- '42'
|
397
|
+
Connection:
|
398
|
+
- keep-alive
|
399
|
+
Server:
|
400
|
+
- nginx
|
401
|
+
X-Jussi-Request-Id:
|
402
|
+
- '000188779899377352'
|
403
|
+
X-Amzn-Trace-Id:
|
404
|
+
- Root=1-5f8a7449-0d69c6950fc817af472fc720
|
405
|
+
Access-Control-Allow-Origin:
|
406
|
+
- "*"
|
407
|
+
Access-Control-Allow-Methods:
|
408
|
+
- GET, POST, OPTIONS
|
409
|
+
Access-Control-Allow-Headers:
|
410
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
411
|
+
Strict-Transport-Security:
|
412
|
+
- max-age=31557600; includeSubDomains; preload
|
413
|
+
Content-Security-Policy:
|
414
|
+
- upgrade-insecure-requests
|
415
|
+
body:
|
416
|
+
encoding: UTF-8
|
417
|
+
string: '{"jsonrpc":"2.0","result":1435227,"id":45}'
|
418
|
+
recorded_at: Sat, 17 Oct 2020 04:34:18 GMT
|
419
|
+
- request:
|
420
|
+
method: post
|
421
|
+
uri: https://api.steemitdev.com/
|
422
|
+
body:
|
423
|
+
encoding: UTF-8
|
424
|
+
string: '{"jsonrpc":"2.0","id":67,"method":"condenser_api.get_account_count","params":[]}'
|
425
|
+
headers:
|
426
|
+
Content-Type:
|
427
|
+
- application/json; charset=utf-8
|
428
|
+
User-Agent:
|
429
|
+
- steem-ruby/0.9.4
|
430
|
+
Accept-Encoding:
|
431
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
432
|
+
Accept:
|
433
|
+
- "*/*"
|
434
|
+
Host:
|
435
|
+
- api.steemitdev.com
|
436
|
+
Content-Length:
|
437
|
+
- '92'
|
438
|
+
response:
|
439
|
+
status:
|
440
|
+
code: 200
|
441
|
+
message: OK
|
442
|
+
headers:
|
443
|
+
Date:
|
444
|
+
- Sat, 17 Oct 2020 04:39:55 GMT
|
445
|
+
Content-Type:
|
446
|
+
- application/json
|
447
|
+
Content-Length:
|
448
|
+
- '42'
|
449
|
+
Connection:
|
450
|
+
- keep-alive
|
451
|
+
Server:
|
452
|
+
- nginx
|
453
|
+
X-Jussi-Request-Id:
|
454
|
+
- '000329183144490774'
|
455
|
+
X-Amzn-Trace-Id:
|
456
|
+
- Root=1-5f8a759b-1d722a8b45c882fc03097711
|
457
|
+
Access-Control-Allow-Origin:
|
458
|
+
- "*"
|
459
|
+
Access-Control-Allow-Methods:
|
460
|
+
- GET, POST, OPTIONS
|
461
|
+
Access-Control-Allow-Headers:
|
462
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
463
|
+
Strict-Transport-Security:
|
464
|
+
- max-age=31557600; includeSubDomains; preload
|
465
|
+
Content-Security-Policy:
|
466
|
+
- upgrade-insecure-requests
|
467
|
+
body:
|
468
|
+
encoding: UTF-8
|
469
|
+
string: '{"jsonrpc":"2.0","result":1435227,"id":67}'
|
470
|
+
recorded_at: Sat, 17 Oct 2020 04:39:55 GMT
|
471
|
+
- request:
|
472
|
+
method: post
|
473
|
+
uri: https://api.steemitdev.com/
|
474
|
+
body:
|
475
|
+
encoding: UTF-8
|
476
|
+
string: '{"jsonrpc":"2.0","id":13,"method":"condenser_api.get_account_count","params":[]}'
|
477
|
+
headers:
|
478
|
+
Content-Type:
|
479
|
+
- application/json; charset=utf-8
|
480
|
+
User-Agent:
|
481
|
+
- steem-ruby/0.9.4
|
482
|
+
Accept-Encoding:
|
483
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
484
|
+
Accept:
|
485
|
+
- "*/*"
|
486
|
+
Host:
|
487
|
+
- api.steemitdev.com
|
488
|
+
Content-Length:
|
489
|
+
- '87'
|
490
|
+
response:
|
491
|
+
status:
|
492
|
+
code: 200
|
493
|
+
message: OK
|
494
|
+
headers:
|
495
|
+
Date:
|
496
|
+
- Sat, 17 Oct 2020 04:55:47 GMT
|
497
|
+
Content-Type:
|
498
|
+
- application/json
|
499
|
+
Content-Length:
|
500
|
+
- '42'
|
501
|
+
Connection:
|
502
|
+
- keep-alive
|
503
|
+
Server:
|
504
|
+
- nginx
|
505
|
+
X-Jussi-Request-Id:
|
506
|
+
- '000754107978996082'
|
507
|
+
X-Amzn-Trace-Id:
|
508
|
+
- Root=1-5f8a7951-65d4f0071ea6e1165cffce0a
|
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: '{"jsonrpc":"2.0","result":1435232,"id":13}'
|
522
|
+
recorded_at: Sat, 17 Oct 2020 04:55:47 GMT
|
523
|
+
- request:
|
524
|
+
method: post
|
525
|
+
uri: https://api.steemitdev.com/
|
526
|
+
body:
|
527
|
+
encoding: UTF-8
|
528
|
+
string: '{"jsonrpc":"2.0","id":82,"method":"condenser_api.get_account_count","params":[]}'
|
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.steemit.com
|
540
|
+
Content-Length:
|
541
|
+
- '92'
|
542
|
+
response:
|
543
|
+
status:
|
544
|
+
code: 200
|
545
|
+
message: OK
|
546
|
+
headers:
|
547
|
+
Date:
|
548
|
+
- Sat, 17 Oct 2020 05:03:35 GMT
|
549
|
+
Content-Type:
|
550
|
+
- application/json
|
551
|
+
Content-Length:
|
552
|
+
- '42'
|
553
|
+
Connection:
|
554
|
+
- keep-alive
|
555
|
+
Server:
|
556
|
+
- nginx
|
557
|
+
X-Jussi-Request-Id:
|
558
|
+
- '000171031579732482'
|
559
|
+
X-Amzn-Trace-Id:
|
560
|
+
- Root=1-5f8a7b27-7d01be2f5c9df0b7617d6a58
|
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":1435235,"id":82}'
|
574
|
+
recorded_at: Sat, 17 Oct 2020 05:03:35 GMT
|
575
|
+
- request:
|
576
|
+
method: post
|
577
|
+
uri: https://api.steemitdev.com/
|
578
|
+
body:
|
579
|
+
encoding: UTF-8
|
580
|
+
string: '{"jsonrpc":"2.0","id":11,"method":"condenser_api.get_account_count","params":[]}'
|
581
|
+
headers:
|
582
|
+
Content-Type:
|
583
|
+
- application/json; charset=utf-8
|
584
|
+
User-Agent:
|
585
|
+
- steem-ruby/0.9.5
|
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
|
+
- '95'
|
594
|
+
response:
|
595
|
+
status:
|
596
|
+
code: 200
|
597
|
+
message: OK
|
598
|
+
headers:
|
599
|
+
Date:
|
600
|
+
- Fri, 06 Nov 2020 21:12:52 GMT
|
601
|
+
Content-Type:
|
602
|
+
- application/json
|
603
|
+
Content-Length:
|
604
|
+
- '42'
|
605
|
+
Connection:
|
606
|
+
- keep-alive
|
607
|
+
Server:
|
608
|
+
- nginx
|
609
|
+
X-Jussi-Request-Id:
|
610
|
+
- '000545636860707064'
|
611
|
+
X-Amzn-Trace-Id:
|
612
|
+
- Root=1-5fa5bc53-1051ddf3508234f20b9f88d1
|
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":1444874,"id":11}'
|
626
|
+
recorded_at: Fri, 06 Nov 2020 21:12:52 GMT
|
627
|
+
recorded_with: VCR 6.0.0
|