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,721 @@
|
|
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":61,"method":"condenser_api.get_dynamic_global_properties","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
|
+
- '75'
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Date:
|
28
|
+
- Sat, 17 Oct 2020 04:07:04 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Transfer-Encoding:
|
32
|
+
- chunked
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
Server:
|
36
|
+
- nginx
|
37
|
+
X-Jussi-Cache-Hit:
|
38
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
39
|
+
X-Jussi-Request-Id:
|
40
|
+
- '000385755989705776'
|
41
|
+
X-Amzn-Trace-Id:
|
42
|
+
- Root=1-5f8a6de8-0c1ffbd307c497b142a80a92
|
43
|
+
Access-Control-Allow-Origin:
|
44
|
+
- "*"
|
45
|
+
Access-Control-Allow-Methods:
|
46
|
+
- GET, POST, OPTIONS
|
47
|
+
Access-Control-Allow-Headers:
|
48
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
49
|
+
Strict-Transport-Security:
|
50
|
+
- max-age=31557600; includeSubDomains; preload
|
51
|
+
Content-Security-Policy:
|
52
|
+
- upgrade-insecure-requests
|
53
|
+
body:
|
54
|
+
encoding: ASCII-8BIT
|
55
|
+
string: '{"id":61,"jsonrpc":"2.0","result":{"head_block_number":47791873,"head_block_id":"02d93f0161b1d7273330736934bf637925879587","time":"2020-10-17T04:07:03","current_witness":"steem-agora","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320247.796
|
56
|
+
STEEM","current_supply":"368937091.727 STEEM","confidential_supply":"0.000
|
57
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784921.815 SBD","confidential_sbd_supply":"0.000
|
58
|
+
SBD","total_vesting_fund_steem":"110211234.741 STEEM","total_vesting_shares":"212008724559.493505
|
59
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718095718.002372
|
60
|
+
VESTS","pending_rewarded_vesting_steem":"362474.979 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024141,"recent_slots_filled":"340282366920938463463374607156890304511","participation_count":127,"last_irreversible_block_num":47791852,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16604468,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"23.952
|
61
|
+
SBD","downvote_pool_percent":2500}}'
|
62
|
+
recorded_at: Sat, 17 Oct 2020 04:07:04 GMT
|
63
|
+
- request:
|
64
|
+
method: post
|
65
|
+
uri: https://api.steemit.com/
|
66
|
+
body:
|
67
|
+
encoding: UTF-8
|
68
|
+
string: '{"jsonrpc":"2.0","id":51,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
69
|
+
headers:
|
70
|
+
Content-Type:
|
71
|
+
- application/json; charset=utf-8
|
72
|
+
User-Agent:
|
73
|
+
- steem-ruby/0.9.4
|
74
|
+
Accept-Encoding:
|
75
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
76
|
+
Accept:
|
77
|
+
- "*/*"
|
78
|
+
Host:
|
79
|
+
- api.steemit.com
|
80
|
+
Content-Length:
|
81
|
+
- '75'
|
82
|
+
response:
|
83
|
+
status:
|
84
|
+
code: 200
|
85
|
+
message: OK
|
86
|
+
headers:
|
87
|
+
Date:
|
88
|
+
- Sat, 17 Oct 2020 04:09:08 GMT
|
89
|
+
Content-Type:
|
90
|
+
- application/json
|
91
|
+
Transfer-Encoding:
|
92
|
+
- chunked
|
93
|
+
Connection:
|
94
|
+
- keep-alive
|
95
|
+
Server:
|
96
|
+
- nginx
|
97
|
+
X-Jussi-Cache-Hit:
|
98
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
99
|
+
X-Jussi-Request-Id:
|
100
|
+
- '000976159629957472'
|
101
|
+
X-Amzn-Trace-Id:
|
102
|
+
- Root=1-5f8a6e64-49f5a481432bb8ea553a65c4
|
103
|
+
Access-Control-Allow-Origin:
|
104
|
+
- "*"
|
105
|
+
Access-Control-Allow-Methods:
|
106
|
+
- GET, POST, OPTIONS
|
107
|
+
Access-Control-Allow-Headers:
|
108
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
109
|
+
Strict-Transport-Security:
|
110
|
+
- max-age=31557600; includeSubDomains; preload
|
111
|
+
Content-Security-Policy:
|
112
|
+
- upgrade-insecure-requests
|
113
|
+
body:
|
114
|
+
encoding: ASCII-8BIT
|
115
|
+
string: '{"id":51,"jsonrpc":"2.0","result":{"head_block_number":47791913,"head_block_id":"02d93f29c6f02cddcdad8f1c205cd16d86257196","time":"2020-10-17T04:09:06","current_witness":"steem-agora","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320369.168
|
116
|
+
STEEM","current_supply":"368937191.112 STEEM","confidential_supply":"0.000
|
117
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784925.311 SBD","confidential_sbd_supply":"0.000
|
118
|
+
SBD","total_vesting_fund_steem":"110211315.057 STEEM","total_vesting_shares":"212008844049.822620
|
119
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718144512.475601
|
120
|
+
VESTS","pending_rewarded_vesting_steem":"362500.342 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024182,"recent_slots_filled":"340282366920937859000464800117164081151","participation_count":126,"last_irreversible_block_num":47791893,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16623017,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"25.872
|
121
|
+
SBD","downvote_pool_percent":2500}}'
|
122
|
+
recorded_at: Sat, 17 Oct 2020 04:09:08 GMT
|
123
|
+
- request:
|
124
|
+
method: post
|
125
|
+
uri: https://api.steemit.com/
|
126
|
+
body:
|
127
|
+
encoding: UTF-8
|
128
|
+
string: '{"jsonrpc":"2.0","id":111,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
129
|
+
headers:
|
130
|
+
Content-Type:
|
131
|
+
- application/json; charset=utf-8
|
132
|
+
User-Agent:
|
133
|
+
- steem-ruby/0.9.4
|
134
|
+
Accept-Encoding:
|
135
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
136
|
+
Accept:
|
137
|
+
- "*/*"
|
138
|
+
Host:
|
139
|
+
- api.steemit.com
|
140
|
+
Content-Length:
|
141
|
+
- '113'
|
142
|
+
response:
|
143
|
+
status:
|
144
|
+
code: 200
|
145
|
+
message: OK
|
146
|
+
headers:
|
147
|
+
Date:
|
148
|
+
- Sat, 17 Oct 2020 04:13:49 GMT
|
149
|
+
Content-Type:
|
150
|
+
- application/json
|
151
|
+
Transfer-Encoding:
|
152
|
+
- chunked
|
153
|
+
Connection:
|
154
|
+
- keep-alive
|
155
|
+
Server:
|
156
|
+
- nginx
|
157
|
+
X-Jussi-Cache-Hit:
|
158
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
159
|
+
X-Jussi-Request-Id:
|
160
|
+
- '000993628440912547'
|
161
|
+
X-Amzn-Trace-Id:
|
162
|
+
- Root=1-5f8a6f7d-3d9b187856781451583f5585
|
163
|
+
Access-Control-Allow-Origin:
|
164
|
+
- "*"
|
165
|
+
Access-Control-Allow-Methods:
|
166
|
+
- GET, POST, OPTIONS
|
167
|
+
Access-Control-Allow-Headers:
|
168
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
169
|
+
Strict-Transport-Security:
|
170
|
+
- max-age=31557600; includeSubDomains; preload
|
171
|
+
Content-Security-Policy:
|
172
|
+
- upgrade-insecure-requests
|
173
|
+
body:
|
174
|
+
encoding: ASCII-8BIT
|
175
|
+
string: '{"id":111,"jsonrpc":"2.0","result":{"head_block_number":47792007,"head_block_id":"02d93f879b6329e7c57b191227dd6e4a1d38957f","time":"2020-10-17T04:13:48","current_witness":"justyy","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320653.711
|
176
|
+
STEEM","current_supply":"368937433.812 STEEM","confidential_supply":"0.000
|
177
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784931.964 SBD","confidential_sbd_supply":"0.000
|
178
|
+
SBD","total_vesting_fund_steem":"110211613.254 STEEM","total_vesting_shares":"212009335462.897776
|
179
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"717783146.092672
|
180
|
+
VESTS","pending_rewarded_vesting_steem":"362312.515 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024276,"recent_slots_filled":"339950059921992234495148655666698125311","participation_count":127,"last_irreversible_block_num":47791992,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16640039,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"30.384
|
181
|
+
SBD","downvote_pool_percent":2500}}'
|
182
|
+
recorded_at: Sat, 17 Oct 2020 04:13:49 GMT
|
183
|
+
- request:
|
184
|
+
method: post
|
185
|
+
uri: https://api.steemit.com/
|
186
|
+
body:
|
187
|
+
encoding: UTF-8
|
188
|
+
string: '{"jsonrpc":"2.0","id":121,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
189
|
+
headers:
|
190
|
+
Content-Type:
|
191
|
+
- application/json; charset=utf-8
|
192
|
+
User-Agent:
|
193
|
+
- steem-ruby/0.9.4
|
194
|
+
Accept-Encoding:
|
195
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
196
|
+
Accept:
|
197
|
+
- "*/*"
|
198
|
+
Host:
|
199
|
+
- api.steemit.com
|
200
|
+
Content-Length:
|
201
|
+
- '80'
|
202
|
+
response:
|
203
|
+
status:
|
204
|
+
code: 200
|
205
|
+
message: OK
|
206
|
+
headers:
|
207
|
+
Date:
|
208
|
+
- Sat, 17 Oct 2020 04:14:48 GMT
|
209
|
+
Content-Type:
|
210
|
+
- application/json
|
211
|
+
Transfer-Encoding:
|
212
|
+
- chunked
|
213
|
+
Connection:
|
214
|
+
- keep-alive
|
215
|
+
Server:
|
216
|
+
- nginx
|
217
|
+
X-Jussi-Cache-Hit:
|
218
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
219
|
+
X-Jussi-Request-Id:
|
220
|
+
- '000498447873372238'
|
221
|
+
X-Amzn-Trace-Id:
|
222
|
+
- Root=1-5f8a6fb8-5cd3147a45e332ea67c16e9d
|
223
|
+
Access-Control-Allow-Origin:
|
224
|
+
- "*"
|
225
|
+
Access-Control-Allow-Methods:
|
226
|
+
- GET, POST, OPTIONS
|
227
|
+
Access-Control-Allow-Headers:
|
228
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
229
|
+
Strict-Transport-Security:
|
230
|
+
- max-age=31557600; includeSubDomains; preload
|
231
|
+
Content-Security-Policy:
|
232
|
+
- upgrade-insecure-requests
|
233
|
+
body:
|
234
|
+
encoding: ASCII-8BIT
|
235
|
+
string: '{"id":121,"jsonrpc":"2.0","result":{"head_block_number":47792026,"head_block_id":"02d93f9a33a121248e23f0d0a3710b088313238a","time":"2020-10-17T04:14:45","current_witness":"steemchiller","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320711.415
|
236
|
+
STEEM","current_supply":"368937448.648 STEEM","confidential_supply":"0.000
|
237
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784938.780 SBD","confidential_sbd_supply":"0.000
|
238
|
+
SBD","total_vesting_fund_steem":"110211627.855 STEEM","total_vesting_shares":"212009346920.216174
|
239
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"717985744.303408
|
240
|
+
VESTS","pending_rewarded_vesting_steem":"362417.824 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024295,"recent_slots_filled":"340282366920938463463374607431768211455","participation_count":128,"last_irreversible_block_num":47792011,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16653586,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"31.296
|
241
|
+
SBD","downvote_pool_percent":2500}}'
|
242
|
+
recorded_at: Sat, 17 Oct 2020 04:14:48 GMT
|
243
|
+
- request:
|
244
|
+
method: post
|
245
|
+
uri: https://api.steemit.com/
|
246
|
+
body:
|
247
|
+
encoding: UTF-8
|
248
|
+
string: '{"jsonrpc":"2.0","id":39,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
249
|
+
headers:
|
250
|
+
Content-Type:
|
251
|
+
- application/json; charset=utf-8
|
252
|
+
User-Agent:
|
253
|
+
- steem-ruby/0.9.4
|
254
|
+
Accept-Encoding:
|
255
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
256
|
+
Accept:
|
257
|
+
- "*/*"
|
258
|
+
Host:
|
259
|
+
- api.steemit.com
|
260
|
+
Content-Length:
|
261
|
+
- '86'
|
262
|
+
response:
|
263
|
+
status:
|
264
|
+
code: 200
|
265
|
+
message: OK
|
266
|
+
headers:
|
267
|
+
Date:
|
268
|
+
- Sat, 17 Oct 2020 04:18:49 GMT
|
269
|
+
Content-Type:
|
270
|
+
- application/json
|
271
|
+
Transfer-Encoding:
|
272
|
+
- chunked
|
273
|
+
Connection:
|
274
|
+
- keep-alive
|
275
|
+
Server:
|
276
|
+
- nginx
|
277
|
+
X-Jussi-Cache-Hit:
|
278
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
279
|
+
X-Jussi-Request-Id:
|
280
|
+
- '000617763784641895'
|
281
|
+
X-Amzn-Trace-Id:
|
282
|
+
- Root=1-5f8a70a9-3275c88b5ecabc562f1f7789
|
283
|
+
Access-Control-Allow-Origin:
|
284
|
+
- "*"
|
285
|
+
Access-Control-Allow-Methods:
|
286
|
+
- GET, POST, OPTIONS
|
287
|
+
Access-Control-Allow-Headers:
|
288
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
289
|
+
Strict-Transport-Security:
|
290
|
+
- max-age=31557600; includeSubDomains; preload
|
291
|
+
Content-Security-Policy:
|
292
|
+
- upgrade-insecure-requests
|
293
|
+
body:
|
294
|
+
encoding: ASCII-8BIT
|
295
|
+
string: '{"id":39,"jsonrpc":"2.0","result":{"head_block_number":47792106,"head_block_id":"02d93fea850c0342f0c91b2ad093fba1e01b1269","time":"2020-10-17T04:18:48","current_witness":"cryptoking777","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320953.161
|
296
|
+
STEEM","current_supply":"368937644.847 STEEM","confidential_supply":"0.000
|
297
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784946.022 SBD","confidential_sbd_supply":"0.000
|
298
|
+
SBD","total_vesting_fund_steem":"110211627.936 STEEM","total_vesting_shares":"212009277057.975696
|
299
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718061434.105775
|
300
|
+
VESTS","pending_rewarded_vesting_steem":"362457.167 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024376,"recent_slots_filled":"340282366920938463463374466694279856127","participation_count":127,"last_irreversible_block_num":47792088,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16680626,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"35.136
|
301
|
+
SBD","downvote_pool_percent":2500}}'
|
302
|
+
recorded_at: Sat, 17 Oct 2020 04:18:49 GMT
|
303
|
+
- request:
|
304
|
+
method: post
|
305
|
+
uri: https://api.steemitdev.com/
|
306
|
+
body:
|
307
|
+
encoding: UTF-8
|
308
|
+
string: '{"jsonrpc":"2.0","id":95,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
309
|
+
headers:
|
310
|
+
Content-Type:
|
311
|
+
- application/json; charset=utf-8
|
312
|
+
User-Agent:
|
313
|
+
- steem-ruby/0.9.4
|
314
|
+
Accept-Encoding:
|
315
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
316
|
+
Accept:
|
317
|
+
- "*/*"
|
318
|
+
Host:
|
319
|
+
- api.steemitdev.com
|
320
|
+
Content-Length:
|
321
|
+
- '80'
|
322
|
+
response:
|
323
|
+
status:
|
324
|
+
code: 200
|
325
|
+
message: OK
|
326
|
+
headers:
|
327
|
+
Date:
|
328
|
+
- Sat, 17 Oct 2020 04:23:12 GMT
|
329
|
+
Content-Type:
|
330
|
+
- application/json
|
331
|
+
Transfer-Encoding:
|
332
|
+
- chunked
|
333
|
+
Connection:
|
334
|
+
- keep-alive
|
335
|
+
Server:
|
336
|
+
- nginx
|
337
|
+
X-Jussi-Cache-Hit:
|
338
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
339
|
+
X-Jussi-Request-Id:
|
340
|
+
- '000241716805572726'
|
341
|
+
X-Amzn-Trace-Id:
|
342
|
+
- Root=1-5f8a71b0-55e487d57fc8cda53e87e97d
|
343
|
+
Access-Control-Allow-Origin:
|
344
|
+
- "*"
|
345
|
+
Access-Control-Allow-Methods:
|
346
|
+
- GET, POST, OPTIONS
|
347
|
+
Access-Control-Allow-Headers:
|
348
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
349
|
+
Strict-Transport-Security:
|
350
|
+
- max-age=31557600; includeSubDomains; preload
|
351
|
+
Content-Security-Policy:
|
352
|
+
- upgrade-insecure-requests
|
353
|
+
body:
|
354
|
+
encoding: ASCII-8BIT
|
355
|
+
string: '{"id":95,"jsonrpc":"2.0","result":{"head_block_number":47792192,"head_block_id":"02d940408361fd392ef8772c850a8995c04b3102","time":"2020-10-17T04:23:09","current_witness":"protoss20","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405321212.818
|
356
|
+
STEEM","current_supply":"368937808.441 STEEM","confidential_supply":"0.000
|
357
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784961.296 SBD","confidential_sbd_supply":"0.000
|
358
|
+
SBD","total_vesting_fund_steem":"110211747.882 STEEM","total_vesting_shares":"212009432530.734910
|
359
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718349448.882437
|
360
|
+
VESTS","pending_rewarded_vesting_steem":"362606.875 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024463,"recent_slots_filled":"340282366920938462873078797073062559743","participation_count":127,"last_irreversible_block_num":47792172,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16671944,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"39.264
|
361
|
+
SBD","downvote_pool_percent":2500}}'
|
362
|
+
recorded_at: Sat, 17 Oct 2020 04:23:12 GMT
|
363
|
+
- request:
|
364
|
+
method: post
|
365
|
+
uri: https://api.steemitdev.com/
|
366
|
+
body:
|
367
|
+
encoding: UTF-8
|
368
|
+
string: '{"jsonrpc":"2.0","id":63,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
369
|
+
headers:
|
370
|
+
Content-Type:
|
371
|
+
- application/json; charset=utf-8
|
372
|
+
User-Agent:
|
373
|
+
- steem-ruby/0.9.4
|
374
|
+
Accept-Encoding:
|
375
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
376
|
+
Accept:
|
377
|
+
- "*/*"
|
378
|
+
Host:
|
379
|
+
- api.steemitdev.com
|
380
|
+
Content-Length:
|
381
|
+
- '80'
|
382
|
+
response:
|
383
|
+
status:
|
384
|
+
code: 200
|
385
|
+
message: OK
|
386
|
+
headers:
|
387
|
+
Date:
|
388
|
+
- Sat, 17 Oct 2020 04:27:16 GMT
|
389
|
+
Content-Type:
|
390
|
+
- application/json
|
391
|
+
Transfer-Encoding:
|
392
|
+
- chunked
|
393
|
+
Connection:
|
394
|
+
- keep-alive
|
395
|
+
Server:
|
396
|
+
- nginx
|
397
|
+
X-Jussi-Cache-Hit:
|
398
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
399
|
+
X-Jussi-Request-Id:
|
400
|
+
- '000741747199311201'
|
401
|
+
X-Amzn-Trace-Id:
|
402
|
+
- Root=1-5f8a72a4-3d620add3686f9393278fab0
|
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: ASCII-8BIT
|
415
|
+
string: '{"id":63,"jsonrpc":"2.0","result":{"head_block_number":47792274,"head_block_id":"02d9409217edf234092ab5f782a7654edc8f9a7b","time":"2020-10-17T04:27:15","current_witness":"steem-dragon","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405321460.548
|
416
|
+
STEEM","current_supply":"368938019.001 STEEM","confidential_supply":"0.000
|
417
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784967.206 SBD","confidential_sbd_supply":"0.000
|
418
|
+
SBD","total_vesting_fund_steem":"110211810.191 STEEM","total_vesting_shares":"212009480620.385003
|
419
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718507065.516582
|
420
|
+
VESTS","pending_rewarded_vesting_steem":"362688.803 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024545,"recent_slots_filled":"340282366920938463463374607431768211455","participation_count":128,"last_irreversible_block_num":47792249,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16710410,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"43.200
|
421
|
+
SBD","downvote_pool_percent":2500}}'
|
422
|
+
recorded_at: Sat, 17 Oct 2020 04:27:16 GMT
|
423
|
+
- request:
|
424
|
+
method: post
|
425
|
+
uri: https://api.steemitdev.com/
|
426
|
+
body:
|
427
|
+
encoding: UTF-8
|
428
|
+
string: '{"jsonrpc":"2.0","id":43,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
429
|
+
headers:
|
430
|
+
Content-Type:
|
431
|
+
- application/json; charset=utf-8
|
432
|
+
User-Agent:
|
433
|
+
- steem-ruby/0.9.4
|
434
|
+
Accept-Encoding:
|
435
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
436
|
+
Accept:
|
437
|
+
- "*/*"
|
438
|
+
Host:
|
439
|
+
- api.steemitdev.com
|
440
|
+
Content-Length:
|
441
|
+
- '98'
|
442
|
+
response:
|
443
|
+
status:
|
444
|
+
code: 200
|
445
|
+
message: OK
|
446
|
+
headers:
|
447
|
+
Date:
|
448
|
+
- Sat, 17 Oct 2020 04:34:16 GMT
|
449
|
+
Content-Type:
|
450
|
+
- application/json
|
451
|
+
Transfer-Encoding:
|
452
|
+
- chunked
|
453
|
+
Connection:
|
454
|
+
- keep-alive
|
455
|
+
Server:
|
456
|
+
- nginx
|
457
|
+
X-Jussi-Cache-Hit:
|
458
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
459
|
+
X-Jussi-Request-Id:
|
460
|
+
- '000450590150397695'
|
461
|
+
X-Amzn-Trace-Id:
|
462
|
+
- Root=1-5f8a7448-6284fe6548adacb13a0d9224
|
463
|
+
Access-Control-Allow-Origin:
|
464
|
+
- "*"
|
465
|
+
Access-Control-Allow-Methods:
|
466
|
+
- GET, POST, OPTIONS
|
467
|
+
Access-Control-Allow-Headers:
|
468
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
469
|
+
Strict-Transport-Security:
|
470
|
+
- max-age=31557600; includeSubDomains; preload
|
471
|
+
Content-Security-Policy:
|
472
|
+
- upgrade-insecure-requests
|
473
|
+
body:
|
474
|
+
encoding: ASCII-8BIT
|
475
|
+
string: '{"id":43,"jsonrpc":"2.0","result":{"head_block_number":47792411,"head_block_id":"02d9411bbc68d5c52ba1cb3ca1336d372ad9fc3b","time":"2020-10-17T04:34:15","current_witness":"scissor.sisters","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405321873.361
|
476
|
+
STEEM","current_supply":"368938363.613 STEEM","confidential_supply":"0.000
|
477
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784978.050 SBD","confidential_sbd_supply":"0.000
|
478
|
+
SBD","total_vesting_fund_steem":"110211822.785 STEEM","total_vesting_shares":"212009384950.612164
|
479
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718528199.366552
|
480
|
+
VESTS","pending_rewarded_vesting_steem":"362699.790 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024685,"recent_slots_filled":"340271982322269633650976025202074320895","participation_count":125,"last_irreversible_block_num":47792395,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16748091,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"49.776
|
481
|
+
SBD","downvote_pool_percent":2500}}'
|
482
|
+
recorded_at: Sat, 17 Oct 2020 04:34:17 GMT
|
483
|
+
- request:
|
484
|
+
method: post
|
485
|
+
uri: https://api.steemitdev.com/
|
486
|
+
body:
|
487
|
+
encoding: UTF-8
|
488
|
+
string: '{"jsonrpc":"2.0","id":66,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
489
|
+
headers:
|
490
|
+
Content-Type:
|
491
|
+
- application/json; charset=utf-8
|
492
|
+
User-Agent:
|
493
|
+
- steem-ruby/0.9.4
|
494
|
+
Accept-Encoding:
|
495
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
496
|
+
Accept:
|
497
|
+
- "*/*"
|
498
|
+
Host:
|
499
|
+
- api.steemitdev.com
|
500
|
+
Content-Length:
|
501
|
+
- '75'
|
502
|
+
response:
|
503
|
+
status:
|
504
|
+
code: 200
|
505
|
+
message: OK
|
506
|
+
headers:
|
507
|
+
Date:
|
508
|
+
- Sat, 17 Oct 2020 04:39:55 GMT
|
509
|
+
Content-Type:
|
510
|
+
- application/json
|
511
|
+
Transfer-Encoding:
|
512
|
+
- chunked
|
513
|
+
Connection:
|
514
|
+
- keep-alive
|
515
|
+
Server:
|
516
|
+
- nginx
|
517
|
+
X-Jussi-Cache-Hit:
|
518
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
519
|
+
X-Jussi-Request-Id:
|
520
|
+
- '000229577343326308'
|
521
|
+
X-Amzn-Trace-Id:
|
522
|
+
- Root=1-5f8a759b-3a8c643a354637de0b1ffdb0
|
523
|
+
Access-Control-Allow-Origin:
|
524
|
+
- "*"
|
525
|
+
Access-Control-Allow-Methods:
|
526
|
+
- GET, POST, OPTIONS
|
527
|
+
Access-Control-Allow-Headers:
|
528
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
529
|
+
Strict-Transport-Security:
|
530
|
+
- max-age=31557600; includeSubDomains; preload
|
531
|
+
Content-Security-Policy:
|
532
|
+
- upgrade-insecure-requests
|
533
|
+
body:
|
534
|
+
encoding: ASCII-8BIT
|
535
|
+
string: '{"id":66,"jsonrpc":"2.0","result":{"head_block_number":47792523,"head_block_id":"02d9418bb2ca5171b7d6efc76f04df38d005f3d7","time":"2020-10-17T04:39:54","current_witness":"symbionts","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405322211.635
|
536
|
+
STEEM","current_supply":"368938667.145 STEEM","confidential_supply":"0.000
|
537
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784983.574 SBD","confidential_sbd_supply":"0.000
|
538
|
+
SBD","total_vesting_fund_steem":"110211923.522 STEEM","total_vesting_shares":"212009480707.732393
|
539
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718500526.624092
|
540
|
+
VESTS","pending_rewarded_vesting_steem":"362685.406 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024798,"recent_slots_filled":"340282366920628978453553262363043430399","participation_count":127,"last_irreversible_block_num":47792503,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16757947,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T04:41:48","last_budget_time":"2020-10-17T03:41:48","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"55.152
|
541
|
+
SBD","downvote_pool_percent":2500}}'
|
542
|
+
recorded_at: Sat, 17 Oct 2020 04:39:55 GMT
|
543
|
+
- request:
|
544
|
+
method: post
|
545
|
+
uri: https://api.steemitdev.com/
|
546
|
+
body:
|
547
|
+
encoding: UTF-8
|
548
|
+
string: '{"jsonrpc":"2.0","id":10,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
549
|
+
headers:
|
550
|
+
Content-Type:
|
551
|
+
- application/json; charset=utf-8
|
552
|
+
User-Agent:
|
553
|
+
- steem-ruby/0.9.4
|
554
|
+
Accept-Encoding:
|
555
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
556
|
+
Accept:
|
557
|
+
- "*/*"
|
558
|
+
Host:
|
559
|
+
- api.steemitdev.com
|
560
|
+
Content-Length:
|
561
|
+
- '90'
|
562
|
+
response:
|
563
|
+
status:
|
564
|
+
code: 200
|
565
|
+
message: OK
|
566
|
+
headers:
|
567
|
+
Date:
|
568
|
+
- Sat, 17 Oct 2020 04:55:40 GMT
|
569
|
+
Content-Type:
|
570
|
+
- application/json
|
571
|
+
Transfer-Encoding:
|
572
|
+
- chunked
|
573
|
+
Connection:
|
574
|
+
- keep-alive
|
575
|
+
Server:
|
576
|
+
- nginx
|
577
|
+
X-Jussi-Request-Id:
|
578
|
+
- '000370626322905487'
|
579
|
+
X-Amzn-Trace-Id:
|
580
|
+
- Root=1-5f8a794c-58da5589496e38b6585a3cee
|
581
|
+
Access-Control-Allow-Origin:
|
582
|
+
- "*"
|
583
|
+
Access-Control-Allow-Methods:
|
584
|
+
- GET, POST, OPTIONS
|
585
|
+
Access-Control-Allow-Headers:
|
586
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
587
|
+
Strict-Transport-Security:
|
588
|
+
- max-age=31557600; includeSubDomains; preload
|
589
|
+
Content-Security-Policy:
|
590
|
+
- upgrade-insecure-requests
|
591
|
+
body:
|
592
|
+
encoding: ASCII-8BIT
|
593
|
+
string: '{"jsonrpc":"2.0","result":{"head_block_number":47792833,"head_block_id":"02d942c1c0c2200e6885f17fa919facca6df54a1","time":"2020-10-17T04:55:39","current_witness":"hoasen","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405323146.848
|
594
|
+
STEEM","current_supply":"368939443.308 STEEM","confidential_supply":"0.000
|
595
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5785008.863 SBD","confidential_sbd_supply":"0.000
|
596
|
+
SBD","total_vesting_fund_steem":"110212510.438 STEEM","total_vesting_shares":"212010338459.019359
|
597
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718371878.310634
|
598
|
+
VESTS","pending_rewarded_vesting_steem":"362618.542 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48025113,"recent_slots_filled":"340282366918462583384803283932016541695","participation_count":126,"last_irreversible_block_num":47792814,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16798977,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T05:41:51","last_budget_time":"2020-10-17T04:41:51","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"13.056
|
599
|
+
SBD","downvote_pool_percent":2500},"id":10}'
|
600
|
+
recorded_at: Sat, 17 Oct 2020 04:55:40 GMT
|
601
|
+
- request:
|
602
|
+
method: post
|
603
|
+
uri: https://api.steemitdev.com/
|
604
|
+
body:
|
605
|
+
encoding: UTF-8
|
606
|
+
string: '{"jsonrpc":"2.0","id":81,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
607
|
+
headers:
|
608
|
+
Content-Type:
|
609
|
+
- application/json; charset=utf-8
|
610
|
+
User-Agent:
|
611
|
+
- steem-ruby/0.9.4
|
612
|
+
Accept-Encoding:
|
613
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
614
|
+
Accept:
|
615
|
+
- "*/*"
|
616
|
+
Host:
|
617
|
+
- api.steemit.com
|
618
|
+
Content-Length:
|
619
|
+
- '75'
|
620
|
+
response:
|
621
|
+
status:
|
622
|
+
code: 200
|
623
|
+
message: OK
|
624
|
+
headers:
|
625
|
+
Date:
|
626
|
+
- Sat, 17 Oct 2020 05:03:34 GMT
|
627
|
+
Content-Type:
|
628
|
+
- application/json
|
629
|
+
Transfer-Encoding:
|
630
|
+
- chunked
|
631
|
+
Connection:
|
632
|
+
- keep-alive
|
633
|
+
Server:
|
634
|
+
- nginx
|
635
|
+
X-Jussi-Cache-Hit:
|
636
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
637
|
+
X-Jussi-Request-Id:
|
638
|
+
- '000694491985784863'
|
639
|
+
X-Amzn-Trace-Id:
|
640
|
+
- Root=1-5f8a7b26-4fc23c7e7af8ec775c591359
|
641
|
+
Access-Control-Allow-Origin:
|
642
|
+
- "*"
|
643
|
+
Access-Control-Allow-Methods:
|
644
|
+
- GET, POST, OPTIONS
|
645
|
+
Access-Control-Allow-Headers:
|
646
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
647
|
+
Strict-Transport-Security:
|
648
|
+
- max-age=31557600; includeSubDomains; preload
|
649
|
+
Content-Security-Policy:
|
650
|
+
- upgrade-insecure-requests
|
651
|
+
body:
|
652
|
+
encoding: ASCII-8BIT
|
653
|
+
string: '{"id":81,"jsonrpc":"2.0","result":{"head_block_number":47792989,"head_block_id":"02d9435d7e8cf752eec1d446e2c78ff2d19600f5","time":"2020-10-17T05:03:33","current_witness":"justyy","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405323617.397
|
654
|
+
STEEM","current_supply":"368939777.423 STEEM","confidential_supply":"0.000
|
655
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5785030.556 SBD","confidential_sbd_supply":"0.000
|
656
|
+
SBD","total_vesting_fund_steem":"110212558.071 STEEM","total_vesting_shares":"212010293565.854815
|
657
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718662273.710805
|
658
|
+
VESTS","pending_rewarded_vesting_steem":"362769.488 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48025271,"recent_slots_filled":"319014678423560602193572846572780126207","participation_count":126,"last_irreversible_block_num":47792967,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16820137,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-10-17T05:41:51","last_budget_time":"2020-10-17T04:41:51","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"20.544
|
659
|
+
SBD","downvote_pool_percent":2500}}'
|
660
|
+
recorded_at: Sat, 17 Oct 2020 05:03:35 GMT
|
661
|
+
- request:
|
662
|
+
method: post
|
663
|
+
uri: https://api.steemitdev.com/
|
664
|
+
body:
|
665
|
+
encoding: UTF-8
|
666
|
+
string: '{"jsonrpc":"2.0","id":17,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
667
|
+
headers:
|
668
|
+
Content-Type:
|
669
|
+
- application/json; charset=utf-8
|
670
|
+
User-Agent:
|
671
|
+
- steem-ruby/0.9.5
|
672
|
+
Accept-Encoding:
|
673
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
674
|
+
Accept:
|
675
|
+
- "*/*"
|
676
|
+
Host:
|
677
|
+
- api.steemitdev.com
|
678
|
+
Content-Length:
|
679
|
+
- '79'
|
680
|
+
response:
|
681
|
+
status:
|
682
|
+
code: 200
|
683
|
+
message: OK
|
684
|
+
headers:
|
685
|
+
Date:
|
686
|
+
- Fri, 06 Nov 2020 21:12:58 GMT
|
687
|
+
Content-Type:
|
688
|
+
- application/json
|
689
|
+
Transfer-Encoding:
|
690
|
+
- chunked
|
691
|
+
Connection:
|
692
|
+
- keep-alive
|
693
|
+
Server:
|
694
|
+
- nginx
|
695
|
+
X-Jussi-Cache-Hit:
|
696
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
697
|
+
X-Jussi-Request-Id:
|
698
|
+
- '000240488223772063'
|
699
|
+
X-Amzn-Trace-Id:
|
700
|
+
- Root=1-5fa5bc5a-78d45f7f5ad6cf011a44d9e4
|
701
|
+
Access-Control-Allow-Origin:
|
702
|
+
- "*"
|
703
|
+
Access-Control-Allow-Methods:
|
704
|
+
- GET, POST, OPTIONS
|
705
|
+
Access-Control-Allow-Headers:
|
706
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
707
|
+
Strict-Transport-Security:
|
708
|
+
- max-age=31557600; includeSubDomains; preload
|
709
|
+
Content-Security-Policy:
|
710
|
+
- upgrade-insecure-requests
|
711
|
+
body:
|
712
|
+
encoding: ASCII-8BIT
|
713
|
+
string: '{"id":17,"jsonrpc":"2.0","result":{"head_block_number":48377414,"head_block_id":"02e22e462d820800a57c646380343f5c1d0970e7","time":"2020-11-06T21:12:57","current_witness":"dlike","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"411949090.582
|
714
|
+
STEEM","current_supply":"370754186.055 STEEM","confidential_supply":"0.000
|
715
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5780246.260 SBD","confidential_sbd_supply":"0.000
|
716
|
+
SBD","total_vesting_fund_steem":"110663790.513 STEEM","total_vesting_shares":"212364482162.287043
|
717
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"688643090.054835
|
718
|
+
VESTS","pending_rewarded_vesting_steem":"347368.035 STEEM","sbd_interest_rate":0,"sbd_print_rate":0,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48620659,"recent_slots_filled":"340282366920938463463372355630880260095","participation_count":125,"last_irreversible_block_num":48377394,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":19795263,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-11-06T21:43:27","last_budget_time":"2020-11-06T20:43:27","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"24.897
|
719
|
+
SBD","downvote_pool_percent":2500}}'
|
720
|
+
recorded_at: Fri, 06 Nov 2020 21:12:58 GMT
|
721
|
+
recorded_with: VCR 6.0.0
|