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,1211 @@
|
|
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":74,"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
|
+
- '86'
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Date:
|
28
|
+
- Sat, 17 Oct 2020 04:07:38 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
|
+
- '000173815005091382'
|
41
|
+
X-Amzn-Trace-Id:
|
42
|
+
- Root=1-5f8a6e0a-28784eb12a9086553897ea26
|
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":74,"jsonrpc":"2.0","result":{"head_block_number":47791884,"head_block_id":"02d93f0c5b87faeeb341dd157aa7b71a538363fb","time":"2020-10-17T04:07:36","current_witness":"steem.history","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320281.625
|
56
|
+
STEEM","current_supply":"368937121.833 STEEM","confidential_supply":"0.000
|
57
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784922.407 SBD","confidential_sbd_supply":"0.000
|
58
|
+
SBD","total_vesting_fund_steem":"110211242.321 STEEM","total_vesting_shares":"212008729512.729936
|
59
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718098709.583235
|
60
|
+
VESTS","pending_rewarded_vesting_steem":"362476.534 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024152,"recent_slots_filled":"340282366920938463463374044481814790143","participation_count":127,"last_irreversible_block_num":47791869,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16612322,"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":"24.480
|
61
|
+
SBD","downvote_pool_percent":2500}}'
|
62
|
+
recorded_at: Sat, 17 Oct 2020 04:07:38 GMT
|
63
|
+
- request:
|
64
|
+
method: post
|
65
|
+
uri: https://api.steemit.com/
|
66
|
+
body:
|
67
|
+
encoding: UTF-8
|
68
|
+
string: '{"jsonrpc":"2.0","id":75,"method":"condenser_api.get_block","params":[47791884]}'
|
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
|
+
- '92'
|
82
|
+
response:
|
83
|
+
status:
|
84
|
+
code: 200
|
85
|
+
message: OK
|
86
|
+
headers:
|
87
|
+
Date:
|
88
|
+
- Sat, 17 Oct 2020 04:07:38 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_block.params=[47791884]
|
99
|
+
X-Jussi-Request-Id:
|
100
|
+
- '000284283701018210'
|
101
|
+
X-Amzn-Trace-Id:
|
102
|
+
- Root=1-5f8a6e0a-70035bd617a0829e0820230c
|
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":75,"jsonrpc":"2.0","result":{"previous":"02d93f0b7925ade41e07617dbed138f0d27e194b","timestamp":"2020-10-17T04:07:36","witness":"steem.history","transaction_merkle_root":"25956bf4e54d26e73ca74c16caabfbda105c3d36","extensions":[],"witness_signature":"20937578167186ccf4bb14bff535a547443fd6c2a49e73b23bc21fa3714d7b01ca56d7830c2b14b1ed62e24efcc014e5946d81567adfa72c41be4008d10adcda0e","transactions":[{"ref_block_num":16122,"ref_block_prefix":3851926655,"expiration":"2020-10-17T04:17:30","operations":[["vote",{"voter":"roundblocknew","author":"donekim","permlink":"sandbox-nft-defi-2","weight":2500}]],"extensions":[],"signatures":["1f131aca81849f8a748d3018e1a67b270c79f2b3659f5650ceee474b9a8e4ed2a515ae279cbdf4a371a2f347a39e2418dd28257b415d55e90f00ecb4f79d2ba68d"],"transaction_id":"444dae6236b9938c0a3394e84ea2e8c65b428f8b","block_num":47791884,"transaction_num":0},{"ref_block_num":16109,"ref_block_prefix":1336080732,"expiration":"2020-10-17T04:17:09","operations":[["vote",{"voter":"rosatravels","author":"donekim","permlink":"sandbox-nft-defi-2","weight":1100}]],"extensions":[],"signatures":["1f6c9cc22354b6c3d4854bd3971609275172faa3c22aebf14e8f85aff2d09f509113b8ab1025231dc2d0efd454e6be1bd630df4a64bec897a63e3a501df8e3423c"],"transaction_id":"3e9d563c99b09b092dbc517721de56324892cd72","block_num":47791884,"transaction_num":1},{"ref_block_num":16109,"ref_block_prefix":1336080732,"expiration":"2020-10-17T04:17:09","operations":[["vote",{"voter":"wilhb82","author":"donekim","permlink":"sandbox-nft-defi-2","weight":1100}]],"extensions":[],"signatures":["2073156fbb895b6f8f71837b674dca14b2a38a9acdb8a6b8af3c1354e27da23cd50e65110fca982393324ba2e6decb68470796296b1effa4f4f6d0a2b54f700027"],"transaction_id":"45461a6cebbcfbf938f069a1e712c4729283e1b6","block_num":47791884,"transaction_num":2},{"ref_block_num":16122,"ref_block_prefix":3851926655,"expiration":"2020-10-17T04:17:30","operations":[["vote",{"voter":"pluepark","author":"donekim","permlink":"sandbox-nft-defi-2","weight":2500}]],"extensions":[],"signatures":["1f628e8da93e4012b06a9cf3538aacd05ced642294295bb917fd259f6d603e3c7e2d21b39f8facd9d43f072cbb97b88b74fee63368beab243336bb457b85291fe5"],"transaction_id":"3e5f9dff121da544741f42edb3107f60cab74530","block_num":47791884,"transaction_num":3},{"ref_block_num":16122,"ref_block_prefix":3851926655,"expiration":"2020-10-17T04:17:30","operations":[["vote",{"voter":"projectw","author":"donekim","permlink":"sandbox-nft-defi-2","weight":2500}]],"extensions":[],"signatures":["1f3658c2634811ed9787975deea5759e70635c535e2362388606ed7948a02ba9770f6a6d961c3eca9026902ddd1e58abda9bc0227782c168c0071c2eeab680932b"],"transaction_id":"f12b51fc6320d1389830dc5cc880d41919c785c8","block_num":47791884,"transaction_num":4},{"ref_block_num":16122,"ref_block_prefix":3851926655,"expiration":"2020-10-17T04:17:30","operations":[["vote",{"voter":"virus707","author":"donekim","permlink":"sandbox-nft-defi-2","weight":1700}]],"extensions":[],"signatures":["1f0cd1d984e96e9b4c924eab4bc3847994efe394d81ee1c1a3327bd52b352f4ef07c590f4abe4310540a4727055924728edf1ad109515a321cbf39eed694819089"],"transaction_id":"28090de01631adb46bb55defc1f5a17b8adae88d","block_num":47791884,"transaction_num":5},{"ref_block_num":16122,"ref_block_prefix":3851926655,"expiration":"2020-10-17T04:17:30","operations":[["custom_json",{"required_auths":[],"required_posting_auths":["hridoy99"],"id":"community","json":"[\"subscribe\",{\"community\":\"hive-142140\"}]"}]],"extensions":[],"signatures":["1f3b71eded2a278dd790aaef0b0dd6fcbff47ba78ae6e1a15e576e8bc0914ced2e1eb2b9110d0e09abf2824c5db72299ce63b179eb1394d71f04337e8ac69fbf0b"],"transaction_id":"827c6df033bcf6514e68512d5dfab7700db6956e","block_num":47791884,"transaction_num":6},{"ref_block_num":16122,"ref_block_prefix":3851926655,"expiration":"2020-10-17T04:17:30","operations":[["vote",{"voter":"juddsmith079","author":"donekim","permlink":"sandbox-nft-defi-2","weight":2500}]],"extensions":[],"signatures":["1f0901a7ca52fe9c00409be457b6eda3086ce54c5b63783ed8867c16c856a6d5d67078c9a8f56d22fe3f3da2b729351c22a4da8c6cdcb13ca3d9f3bac080f7b35e"],"transaction_id":"d12a8880f5b4acfcd3364403f15c7202e1799837","block_num":47791884,"transaction_num":7},{"ref_block_num":16122,"ref_block_prefix":3851926655,"expiration":"2020-10-17T04:17:30","operations":[["delegate_vesting_shares",{"delegator":"warren.buffett","delegatee":"alphacore","vesting_shares":"618086.446879
|
116
|
+
VESTS"}]],"extensions":[],"signatures":["2016d38545f849ff3b164d86a1792af5d59ae36a6e99dfeb1203a9bea2c668737b2846d2279a90c06f075826cb7c6c2a57d86ece5e4a99aafe573fc552347f95ca"],"transaction_id":"650fb7055646779e02b268522db02a9bafb0fe2c","block_num":47791884,"transaction_num":8},{"ref_block_num":16124,"ref_block_prefix":3005557824,"expiration":"2020-10-17T04:08:03","operations":[["vote",{"voter":"gerber","author":"steemzzang","permlink":"4dnhnz","weight":610}]],"extensions":[],"signatures":["20465512afbb928f3e8cfa03a4c6072d70e10c9402a5d3df297afba2996c2ab29257d6283c3187da53fb04607662015dc29d1f18c1f3066c4b282d53b8355eefc3"],"transaction_id":"1bdee55233b3daa8ae10cfe4f39d10ef9c714a13","block_num":47791884,"transaction_num":9},{"ref_block_num":16124,"ref_block_prefix":3005557824,"expiration":"2020-10-17T04:08:03","operations":[["vote",{"voter":"nealmcspadden","author":"steemzzang","permlink":"4dnhnz","weight":610}]],"extensions":[],"signatures":["1f2967c050417b10b7e1574ca9e4aead09e133eeadcd08a9270c53547a86acb27908c251cd0b347d6cd2f97a2d5ad7c3beefec322c3080cfc7e7d19c71780fba75"],"transaction_id":"fea1cefb1df35edc7b4f1dd1e705efd3775ee439","block_num":47791884,"transaction_num":10}],"block_id":"02d93f0c5b87faeeb341dd157aa7b71a538363fb","signing_key":"STM5vKFuWzknVmhRtTeYPPCphYg2fGcB9J3wTa7hRMoUwCshKx7zT","transaction_ids":["444dae6236b9938c0a3394e84ea2e8c65b428f8b","3e9d563c99b09b092dbc517721de56324892cd72","45461a6cebbcfbf938f069a1e712c4729283e1b6","3e5f9dff121da544741f42edb3107f60cab74530","f12b51fc6320d1389830dc5cc880d41919c785c8","28090de01631adb46bb55defc1f5a17b8adae88d","827c6df033bcf6514e68512d5dfab7700db6956e","d12a8880f5b4acfcd3364403f15c7202e1799837","650fb7055646779e02b268522db02a9bafb0fe2c","1bdee55233b3daa8ae10cfe4f39d10ef9c714a13","fea1cefb1df35edc7b4f1dd1e705efd3775ee439"]}}'
|
117
|
+
recorded_at: Sat, 17 Oct 2020 04:07:38 GMT
|
118
|
+
- request:
|
119
|
+
method: post
|
120
|
+
uri: https://api.steemit.com/
|
121
|
+
body:
|
122
|
+
encoding: UTF-8
|
123
|
+
string: '{"jsonrpc":"2.0","id":113,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
124
|
+
headers:
|
125
|
+
Content-Type:
|
126
|
+
- application/json; charset=utf-8
|
127
|
+
User-Agent:
|
128
|
+
- steem-ruby/0.9.4
|
129
|
+
Accept-Encoding:
|
130
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
131
|
+
Accept:
|
132
|
+
- "*/*"
|
133
|
+
Host:
|
134
|
+
- api.steemit.com
|
135
|
+
Content-Length:
|
136
|
+
- '93'
|
137
|
+
response:
|
138
|
+
status:
|
139
|
+
code: 200
|
140
|
+
message: OK
|
141
|
+
headers:
|
142
|
+
Date:
|
143
|
+
- Sat, 17 Oct 2020 04:13:49 GMT
|
144
|
+
Content-Type:
|
145
|
+
- application/json
|
146
|
+
Transfer-Encoding:
|
147
|
+
- chunked
|
148
|
+
Connection:
|
149
|
+
- keep-alive
|
150
|
+
Server:
|
151
|
+
- nginx
|
152
|
+
X-Jussi-Cache-Hit:
|
153
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
154
|
+
X-Jussi-Request-Id:
|
155
|
+
- '000275284247210949'
|
156
|
+
X-Amzn-Trace-Id:
|
157
|
+
- Root=1-5f8a6f7d-52a96931782d839d23dc38e5
|
158
|
+
Access-Control-Allow-Origin:
|
159
|
+
- "*"
|
160
|
+
Access-Control-Allow-Methods:
|
161
|
+
- GET, POST, OPTIONS
|
162
|
+
Access-Control-Allow-Headers:
|
163
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
164
|
+
Strict-Transport-Security:
|
165
|
+
- max-age=31557600; includeSubDomains; preload
|
166
|
+
Content-Security-Policy:
|
167
|
+
- upgrade-insecure-requests
|
168
|
+
body:
|
169
|
+
encoding: ASCII-8BIT
|
170
|
+
string: '{"id":113,"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
|
171
|
+
STEEM","current_supply":"368937433.812 STEEM","confidential_supply":"0.000
|
172
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784931.964 SBD","confidential_sbd_supply":"0.000
|
173
|
+
SBD","total_vesting_fund_steem":"110211613.254 STEEM","total_vesting_shares":"212009335462.897776
|
174
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"717783146.092672
|
175
|
+
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
|
176
|
+
SBD","downvote_pool_percent":2500}}'
|
177
|
+
recorded_at: Sat, 17 Oct 2020 04:13:49 GMT
|
178
|
+
- request:
|
179
|
+
method: post
|
180
|
+
uri: https://api.steemit.com/
|
181
|
+
body:
|
182
|
+
encoding: UTF-8
|
183
|
+
string: '{"jsonrpc":"2.0","id":114,"method":"condenser_api.get_block","params":[47792007]}'
|
184
|
+
headers:
|
185
|
+
Content-Type:
|
186
|
+
- application/json; charset=utf-8
|
187
|
+
User-Agent:
|
188
|
+
- steem-ruby/0.9.4
|
189
|
+
Accept-Encoding:
|
190
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
191
|
+
Accept:
|
192
|
+
- "*/*"
|
193
|
+
Host:
|
194
|
+
- api.steemit.com
|
195
|
+
Content-Length:
|
196
|
+
- '93'
|
197
|
+
response:
|
198
|
+
status:
|
199
|
+
code: 200
|
200
|
+
message: OK
|
201
|
+
headers:
|
202
|
+
Date:
|
203
|
+
- Sat, 17 Oct 2020 04:13:49 GMT
|
204
|
+
Content-Type:
|
205
|
+
- application/json
|
206
|
+
Transfer-Encoding:
|
207
|
+
- chunked
|
208
|
+
Connection:
|
209
|
+
- keep-alive
|
210
|
+
Server:
|
211
|
+
- nginx
|
212
|
+
X-Jussi-Cache-Hit:
|
213
|
+
- appbase.condenser_api.get_block.params=[47792007]
|
214
|
+
X-Jussi-Request-Id:
|
215
|
+
- '001059000602367272'
|
216
|
+
X-Amzn-Trace-Id:
|
217
|
+
- Root=1-5f8a6f7d-05df08280cff3fb8330005fb
|
218
|
+
Access-Control-Allow-Origin:
|
219
|
+
- "*"
|
220
|
+
Access-Control-Allow-Methods:
|
221
|
+
- GET, POST, OPTIONS
|
222
|
+
Access-Control-Allow-Headers:
|
223
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
224
|
+
Strict-Transport-Security:
|
225
|
+
- max-age=31557600; includeSubDomains; preload
|
226
|
+
Content-Security-Policy:
|
227
|
+
- upgrade-insecure-requests
|
228
|
+
body:
|
229
|
+
encoding: ASCII-8BIT
|
230
|
+
string: '{"id":114,"jsonrpc":"2.0","result":{"previous":"02d93f86dcfe00ccc3fbdd8b05cb0e6a6edfc6b7","timestamp":"2020-10-17T04:13:48","witness":"justyy","transaction_merkle_root":"754cb437f7b3020f32c4dba57a031eb58bd9380f","extensions":[],"witness_signature":"20a419e1b3eaff7c2378fc38c1e2668e016887f726f0c573f3f7b7f16c562e21b01e48fdfbddc88f4bdaf9ef3032b2ce33ad317f7fd71aad9a9bf6020705450f5b","transactions":[{"ref_block_num":16258,"ref_block_prefix":586702267,"expiration":"2020-10-17T04:14:42","operations":[["transfer",{"from":"epicdice","to":"epictoken","amount":"0.001
|
231
|
+
STEEM","memo":"[Epicdice] Server Seed Reveal {\"prevServerSeed\": \"1aae4a0e5d2e4a7bcf21b8285e25f17ba5921f539862f9775dc90636450d403d\",
|
232
|
+
\"prevServerHash\": \"02e6e76da6dd1e7e8f515529b201411033e56fa716c3db76ee00cc91d4822c21\",
|
233
|
+
\"newServerHash\": \"d73f0a3fd0b9b6fe5941abfbb4ff34bb06b2aa59ec159787ab142700cdefd7cf\"}"}]],"extensions":[],"signatures":["204dd20ef5e01c72e375fe926c9d34dbd107b308bd8b9df6a8a93393838c388b0707c1a60118072f5ea6feb09831502376fd9d9c476d46c1777e20b956c8986b77"],"transaction_id":"e41dbb677c14cf97f82f2edcf0a254d3654a6706","block_num":47792007,"transaction_num":0}],"block_id":"02d93f879b6329e7c57b191227dd6e4a1d38957f","signing_key":"STM6ZQ3EQR2aP5e7CLMDmnnCXschWbA8bPcADSL7xeumZDeGz5oLd","transaction_ids":["e41dbb677c14cf97f82f2edcf0a254d3654a6706"]}}'
|
234
|
+
recorded_at: Sat, 17 Oct 2020 04:13:49 GMT
|
235
|
+
- request:
|
236
|
+
method: post
|
237
|
+
uri: https://api.steemit.com/
|
238
|
+
body:
|
239
|
+
encoding: UTF-8
|
240
|
+
string: '{"jsonrpc":"2.0","id":135,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
241
|
+
headers:
|
242
|
+
Content-Type:
|
243
|
+
- application/json; charset=utf-8
|
244
|
+
User-Agent:
|
245
|
+
- steem-ruby/0.9.4
|
246
|
+
Accept-Encoding:
|
247
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
248
|
+
Accept:
|
249
|
+
- "*/*"
|
250
|
+
Host:
|
251
|
+
- api.steemit.com
|
252
|
+
Content-Length:
|
253
|
+
- '88'
|
254
|
+
response:
|
255
|
+
status:
|
256
|
+
code: 200
|
257
|
+
message: OK
|
258
|
+
headers:
|
259
|
+
Date:
|
260
|
+
- Sat, 17 Oct 2020 04:14:51 GMT
|
261
|
+
Content-Type:
|
262
|
+
- application/json
|
263
|
+
Transfer-Encoding:
|
264
|
+
- chunked
|
265
|
+
Connection:
|
266
|
+
- keep-alive
|
267
|
+
Server:
|
268
|
+
- nginx
|
269
|
+
X-Jussi-Cache-Hit:
|
270
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
271
|
+
X-Jussi-Request-Id:
|
272
|
+
- '000440394665360708'
|
273
|
+
X-Amzn-Trace-Id:
|
274
|
+
- Root=1-5f8a6fbb-718cd686304bdc1e6fc0cc9b
|
275
|
+
Access-Control-Allow-Origin:
|
276
|
+
- "*"
|
277
|
+
Access-Control-Allow-Methods:
|
278
|
+
- GET, POST, OPTIONS
|
279
|
+
Access-Control-Allow-Headers:
|
280
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
281
|
+
Strict-Transport-Security:
|
282
|
+
- max-age=31557600; includeSubDomains; preload
|
283
|
+
Content-Security-Policy:
|
284
|
+
- upgrade-insecure-requests
|
285
|
+
body:
|
286
|
+
encoding: ASCII-8BIT
|
287
|
+
string: '{"id":135,"jsonrpc":"2.0","result":{"head_block_number":47792028,"head_block_id":"02d93f9c76c819a324462cce0eff46ca1088d31b","time":"2020-10-17T04:14:51","current_witness":"future.witness","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320717.383
|
288
|
+
STEEM","current_supply":"368937454.012 STEEM","confidential_supply":"0.000
|
289
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784938.876 SBD","confidential_sbd_supply":"0.000
|
290
|
+
SBD","total_vesting_fund_steem":"110211629.319 STEEM","total_vesting_shares":"212009347985.932332
|
291
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"717985659.652208
|
292
|
+
VESTS","pending_rewarded_vesting_steem":"362417.780 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024297,"recent_slots_filled":"340282366920938463463374607431768211455","participation_count":128,"last_irreversible_block_num":47792013,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16655012,"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.392
|
293
|
+
SBD","downvote_pool_percent":2500}}'
|
294
|
+
recorded_at: Sat, 17 Oct 2020 04:14:51 GMT
|
295
|
+
- request:
|
296
|
+
method: post
|
297
|
+
uri: https://api.steemit.com/
|
298
|
+
body:
|
299
|
+
encoding: UTF-8
|
300
|
+
string: '{"jsonrpc":"2.0","id":136,"method":"condenser_api.get_block","params":[47792028]}'
|
301
|
+
headers:
|
302
|
+
Content-Type:
|
303
|
+
- application/json; charset=utf-8
|
304
|
+
User-Agent:
|
305
|
+
- steem-ruby/0.9.4
|
306
|
+
Accept-Encoding:
|
307
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
308
|
+
Accept:
|
309
|
+
- "*/*"
|
310
|
+
Host:
|
311
|
+
- api.steemit.com
|
312
|
+
Content-Length:
|
313
|
+
- '93'
|
314
|
+
response:
|
315
|
+
status:
|
316
|
+
code: 200
|
317
|
+
message: OK
|
318
|
+
headers:
|
319
|
+
Date:
|
320
|
+
- Sat, 17 Oct 2020 04:14:52 GMT
|
321
|
+
Content-Type:
|
322
|
+
- application/json
|
323
|
+
Transfer-Encoding:
|
324
|
+
- chunked
|
325
|
+
Connection:
|
326
|
+
- keep-alive
|
327
|
+
Server:
|
328
|
+
- nginx
|
329
|
+
X-Jussi-Cache-Hit:
|
330
|
+
- appbase.condenser_api.get_block.params=[47792028]
|
331
|
+
X-Jussi-Request-Id:
|
332
|
+
- '000599135263103097'
|
333
|
+
X-Amzn-Trace-Id:
|
334
|
+
- Root=1-5f8a6fbc-0f946e3737fa20c4010521d4
|
335
|
+
Access-Control-Allow-Origin:
|
336
|
+
- "*"
|
337
|
+
Access-Control-Allow-Methods:
|
338
|
+
- GET, POST, OPTIONS
|
339
|
+
Access-Control-Allow-Headers:
|
340
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
341
|
+
Strict-Transport-Security:
|
342
|
+
- max-age=31557600; includeSubDomains; preload
|
343
|
+
Content-Security-Policy:
|
344
|
+
- upgrade-insecure-requests
|
345
|
+
body:
|
346
|
+
encoding: ASCII-8BIT
|
347
|
+
string: '{"id":136,"jsonrpc":"2.0","result":{"previous":"02d93f9b5f72d52c927b66bccb80282d9d55ef22","timestamp":"2020-10-17T04:14:51","witness":"future.witness","transaction_merkle_root":"534065811f40b51d0f772aefb790ecda2bb6d3cd","extensions":[],"witness_signature":"205b4987bc65b72a478ea54585ff21305394aac71331b19f1db44c14ad0afb80be524bc113ae75da659151f1cfe0cdf6b512bc95bf29a9a01fdb6ca5a7a788334c","transactions":[{"ref_block_num":16266,"ref_block_prefix":2819716926,"expiration":"2020-10-17T04:24:45","operations":[["claim_reward_balance",{"account":"jkramer","reward_steem":"0.000
|
348
|
+
STEEM","reward_sbd":"0.000 SBD","reward_vests":"84.651200 VESTS"}]],"extensions":[],"signatures":["1f7b793d1ea29d577ae025f9f030f2d79dbde5021563cdb68e46046257539fc74349ca183c23be3cf6933cb7b9c4151c05b3d514f5b4f48e842d15db3d91236c5b"],"transaction_id":"aae53cbdd70a80132936c977e5e188f0c1a72182","block_num":47792028,"transaction_num":0},{"ref_block_num":16282,"ref_block_prefix":606183731,"expiration":"2020-10-17T04:15:45","operations":[["limit_order_cancel",{"owner":"bnk","orderid":1621217}]],"extensions":[],"signatures":["2023e095f423895bc5d79b5abf1175ffeb76c3faf0960d40970534b9a0019a513a2feb3c60d5842c20521a902f9fe7746ab992276c5d79739548f09cd8ff4adfd3"],"transaction_id":"d8f02c5f1a980140c11be6d6d4ef0ede4d1479d4","block_num":47792028,"transaction_num":1},{"ref_block_num":16266,"ref_block_prefix":2819716926,"expiration":"2020-10-17T04:24:45","operations":[["vote",{"voter":"wonsama.aaa","author":"steemzzang","permlink":"4dnhnz","weight":10000}]],"extensions":[],"signatures":["2016c0f4bf5bb37d226aa91751944306274a6dc60e631dbe13733fc6efc1919fed2920400be0e21fad82fc2ee451d9190c32f2c01d881d20b0a12656ca3caf7a53"],"transaction_id":"b12deea7dd8b2136cc683d6e135ed65bab8cd4e8","block_num":47792028,"transaction_num":2},{"ref_block_num":16266,"ref_block_prefix":2819716926,"expiration":"2020-10-17T04:24:45","operations":[["vote",{"voter":"nishan01","author":"andreanerazzurro","permlink":"appics-v1-appics-im-307475","weight":500}]],"extensions":[],"signatures":["2036e2187d711c31397eec57c1a5e70451be0a287cb6b578f1025fc92b0de6f4e670b97ff3d285a69e07516156514b72d7da5bd9b6999912f87286d3525f81e254"],"transaction_id":"0db8e25969f57e78978f5fc9c30a8fa29407b9b5","block_num":47792028,"transaction_num":3}],"block_id":"02d93f9c76c819a324462cce0eff46ca1088d31b","signing_key":"STM8VEQene12D5uLS1VZYkr22cA1hYEmm4NzL41LvqK5xKzHTgbRP","transaction_ids":["aae53cbdd70a80132936c977e5e188f0c1a72182","d8f02c5f1a980140c11be6d6d4ef0ede4d1479d4","b12deea7dd8b2136cc683d6e135ed65bab8cd4e8","0db8e25969f57e78978f5fc9c30a8fa29407b9b5"]}}'
|
349
|
+
recorded_at: Sat, 17 Oct 2020 04:14:52 GMT
|
350
|
+
- request:
|
351
|
+
method: post
|
352
|
+
uri: https://api.steemit.com/
|
353
|
+
body:
|
354
|
+
encoding: UTF-8
|
355
|
+
string: '{"jsonrpc":"2.0","id":20,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
356
|
+
headers:
|
357
|
+
Content-Type:
|
358
|
+
- application/json; charset=utf-8
|
359
|
+
User-Agent:
|
360
|
+
- steem-ruby/0.9.4
|
361
|
+
Accept-Encoding:
|
362
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
363
|
+
Accept:
|
364
|
+
- "*/*"
|
365
|
+
Host:
|
366
|
+
- api.steemit.com
|
367
|
+
Content-Length:
|
368
|
+
- '98'
|
369
|
+
response:
|
370
|
+
status:
|
371
|
+
code: 200
|
372
|
+
message: OK
|
373
|
+
headers:
|
374
|
+
Date:
|
375
|
+
- Sat, 17 Oct 2020 04:18:02 GMT
|
376
|
+
Content-Type:
|
377
|
+
- application/json
|
378
|
+
Transfer-Encoding:
|
379
|
+
- chunked
|
380
|
+
Connection:
|
381
|
+
- keep-alive
|
382
|
+
Server:
|
383
|
+
- nginx
|
384
|
+
X-Jussi-Cache-Hit:
|
385
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
386
|
+
X-Jussi-Request-Id:
|
387
|
+
- '000385871476823832'
|
388
|
+
X-Amzn-Trace-Id:
|
389
|
+
- Root=1-5f8a707a-77fa6c6559d930b847d3a05c
|
390
|
+
Access-Control-Allow-Origin:
|
391
|
+
- "*"
|
392
|
+
Access-Control-Allow-Methods:
|
393
|
+
- GET, POST, OPTIONS
|
394
|
+
Access-Control-Allow-Headers:
|
395
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
396
|
+
Strict-Transport-Security:
|
397
|
+
- max-age=31557600; includeSubDomains; preload
|
398
|
+
Content-Security-Policy:
|
399
|
+
- upgrade-insecure-requests
|
400
|
+
body:
|
401
|
+
encoding: ASCII-8BIT
|
402
|
+
string: '{"id":20,"jsonrpc":"2.0","result":{"head_block_number":47792090,"head_block_id":"02d93fdaad24a15b9ef01aed6dcc7e38d13f9061","time":"2020-10-17T04:18:00","current_witness":"steem.history","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405320904.406
|
403
|
+
STEEM","current_supply":"368937601.136 STEEM","confidential_supply":"0.000
|
404
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784945.220 SBD","confidential_sbd_supply":"0.000
|
405
|
+
SBD","total_vesting_fund_steem":"110211603.733 STEEM","total_vesting_shares":"212009244501.711827
|
406
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718082950.386522
|
407
|
+
VESTS","pending_rewarded_vesting_steem":"362468.351 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024360,"recent_slots_filled":"340282366920938463463374607429620727807","participation_count":127,"last_irreversible_block_num":47792075,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16679218,"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":"34.368
|
408
|
+
SBD","downvote_pool_percent":2500}}'
|
409
|
+
recorded_at: Sat, 17 Oct 2020 04:18:02 GMT
|
410
|
+
- request:
|
411
|
+
method: post
|
412
|
+
uri: https://api.steemit.com/
|
413
|
+
body:
|
414
|
+
encoding: UTF-8
|
415
|
+
string: '{"jsonrpc":"2.0","id":21,"method":"condenser_api.get_block","params":[47792090]}'
|
416
|
+
headers:
|
417
|
+
Content-Type:
|
418
|
+
- application/json; charset=utf-8
|
419
|
+
User-Agent:
|
420
|
+
- steem-ruby/0.9.4
|
421
|
+
Accept-Encoding:
|
422
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
423
|
+
Accept:
|
424
|
+
- "*/*"
|
425
|
+
Host:
|
426
|
+
- api.steemit.com
|
427
|
+
Content-Length:
|
428
|
+
- '92'
|
429
|
+
response:
|
430
|
+
status:
|
431
|
+
code: 200
|
432
|
+
message: OK
|
433
|
+
headers:
|
434
|
+
Date:
|
435
|
+
- Sat, 17 Oct 2020 04:18:03 GMT
|
436
|
+
Content-Type:
|
437
|
+
- application/json
|
438
|
+
Transfer-Encoding:
|
439
|
+
- chunked
|
440
|
+
Connection:
|
441
|
+
- keep-alive
|
442
|
+
Server:
|
443
|
+
- nginx
|
444
|
+
X-Jussi-Cache-Hit:
|
445
|
+
- appbase.condenser_api.get_block.params=[47792090]
|
446
|
+
X-Jussi-Request-Id:
|
447
|
+
- '001044935914165656'
|
448
|
+
X-Amzn-Trace-Id:
|
449
|
+
- Root=1-5f8a707b-74031119272a958110a5ad27
|
450
|
+
Access-Control-Allow-Origin:
|
451
|
+
- "*"
|
452
|
+
Access-Control-Allow-Methods:
|
453
|
+
- GET, POST, OPTIONS
|
454
|
+
Access-Control-Allow-Headers:
|
455
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
456
|
+
Strict-Transport-Security:
|
457
|
+
- max-age=31557600; includeSubDomains; preload
|
458
|
+
Content-Security-Policy:
|
459
|
+
- upgrade-insecure-requests
|
460
|
+
body:
|
461
|
+
encoding: ASCII-8BIT
|
462
|
+
string: '{"id":21,"jsonrpc":"2.0","result":{"previous":"02d93fd9737ed4926a7a3e854ec45068269e02b5","timestamp":"2020-10-17T04:18:00","witness":"steem.history","transaction_merkle_root":"3e5c07e4a303a9692bd53db1ae5b3f86b5ebcf88","extensions":[],"witness_signature":"20c8737e529c49cc8716796ef84d4f803af89deca9c64530abf5953f9f4719515b08e2faf94c985cf7abec3f86005a7ed4af669a18f19c07687ca26b24385f9cc1","transactions":[{"ref_block_num":16341,"ref_block_prefix":2063252051,"expiration":"2020-10-17T04:18:55","operations":[["vote",{"voter":"vuelovista","author":"vapenation","permlink":"serious-people-who-enter-other-peoples39-homes-as-a-part-of-your-job","weight":10000}]],"extensions":[],"signatures":["200610b04ee4ed3cf5a8a16e2ad02eb8025c7dcc88f88fafbb69d5665c7e28e9ed506a73314b8f0244ec04a0f321bed8ee7c55e7d3620ca53b89c10b358f28ee38"],"transaction_id":"7a054463369d9f06ed1dc8ac613a658a6e12cf5f","block_num":47792090,"transaction_num":0},{"ref_block_num":16323,"ref_block_prefix":3524461760,"expiration":"2020-10-17T04:27:54","operations":[["vote",{"voter":"goldbloger-2","author":"pedrobrito2004","permlink":"40-la-lenta-vida-en-prision-de-la-villana-noble-comenzo-con-su-compromiso-roto","weight":10000}]],"extensions":[],"signatures":["2043b4e2c135664661527e300a0e2ec2057f52d0803889e3cb187f410a241c66a7337601716cd13999c0a3e3baf267e8b25713148fa8cfd91bc8f00ff0a63134b6"],"transaction_id":"9ff5d640ee4704387120fc6590dbc9cb58ddfa62","block_num":47792090,"transaction_num":1},{"ref_block_num":16323,"ref_block_prefix":3524461760,"expiration":"2020-10-17T04:27:54","operations":[["comment",{"parent_author":"crissanch","parent_permlink":"wherein-1602756523029","author":"leotex","permlink":"qibvxs","title":"","body":"Hola
|
463
|
+
amigo gracias por visitar mi post,si estaba s\u00faper rica la torta.\nSaludos..","json_metadata":"{\"app\":\"steemit\/0.2\"}"}]],"extensions":[],"signatures":["204b499e04bc2d3a6bcf2f0e24a9da4468fd834687312512986d397f3d4a0f5e057cb30badec2e8f0b40a366115762b4696b06f243ae050cacce638cb5502c319a"],"transaction_id":"8a178c5cebc643f859782772ed1551853d33c628","block_num":47792090,"transaction_num":2},{"ref_block_num":16341,"ref_block_prefix":2063252051,"expiration":"2020-10-17T04:18:57","operations":[["vote",{"voter":"waggy6","author":"vapenation","permlink":"serious-people-who-enter-other-peoples39-homes-as-a-part-of-your-job","weight":10000}]],"extensions":[],"signatures":["20444d03deef2d4b9a4238146f626a0c1ff8fde39ffca9f92d41a0d2089a4c3b0c289b1941daa5142dd38721b1e415b4720ab9fd087e3f4d0ff4e5b23331c74e91"],"transaction_id":"3b0ac9110acea7ada114ceb60e69490f706c8a47","block_num":47792090,"transaction_num":3}],"block_id":"02d93fdaad24a15b9ef01aed6dcc7e38d13f9061","signing_key":"STM5vKFuWzknVmhRtTeYPPCphYg2fGcB9J3wTa7hRMoUwCshKx7zT","transaction_ids":["7a054463369d9f06ed1dc8ac613a658a6e12cf5f","9ff5d640ee4704387120fc6590dbc9cb58ddfa62","8a178c5cebc643f859782772ed1551853d33c628","3b0ac9110acea7ada114ceb60e69490f706c8a47"]}}'
|
464
|
+
recorded_at: Sat, 17 Oct 2020 04:18:03 GMT
|
465
|
+
- request:
|
466
|
+
method: post
|
467
|
+
uri: https://api.steemitdev.com/
|
468
|
+
body:
|
469
|
+
encoding: UTF-8
|
470
|
+
string: '{"jsonrpc":"2.0","id":93,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
471
|
+
headers:
|
472
|
+
Content-Type:
|
473
|
+
- application/json; charset=utf-8
|
474
|
+
User-Agent:
|
475
|
+
- steem-ruby/0.9.4
|
476
|
+
Accept-Encoding:
|
477
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
478
|
+
Accept:
|
479
|
+
- "*/*"
|
480
|
+
Host:
|
481
|
+
- api.steemitdev.com
|
482
|
+
Content-Length:
|
483
|
+
- '96'
|
484
|
+
response:
|
485
|
+
status:
|
486
|
+
code: 200
|
487
|
+
message: OK
|
488
|
+
headers:
|
489
|
+
Date:
|
490
|
+
- Sat, 17 Oct 2020 04:23:11 GMT
|
491
|
+
Content-Type:
|
492
|
+
- application/json
|
493
|
+
Transfer-Encoding:
|
494
|
+
- chunked
|
495
|
+
Connection:
|
496
|
+
- keep-alive
|
497
|
+
Server:
|
498
|
+
- nginx
|
499
|
+
X-Jussi-Request-Id:
|
500
|
+
- '000287066440584697'
|
501
|
+
X-Amzn-Trace-Id:
|
502
|
+
- Root=1-5f8a71af-21e66c6e0f8691786d229c64
|
503
|
+
Access-Control-Allow-Origin:
|
504
|
+
- "*"
|
505
|
+
Access-Control-Allow-Methods:
|
506
|
+
- GET, POST, OPTIONS
|
507
|
+
Access-Control-Allow-Headers:
|
508
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
509
|
+
Strict-Transport-Security:
|
510
|
+
- max-age=31557600; includeSubDomains; preload
|
511
|
+
Content-Security-Policy:
|
512
|
+
- upgrade-insecure-requests
|
513
|
+
body:
|
514
|
+
encoding: ASCII-8BIT
|
515
|
+
string: '{"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
|
516
|
+
STEEM","current_supply":"368937808.441 STEEM","confidential_supply":"0.000
|
517
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784961.296 SBD","confidential_sbd_supply":"0.000
|
518
|
+
SBD","total_vesting_fund_steem":"110211747.882 STEEM","total_vesting_shares":"212009432530.734910
|
519
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718349448.882437
|
520
|
+
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
|
521
|
+
SBD","downvote_pool_percent":2500},"id":93}'
|
522
|
+
recorded_at: Sat, 17 Oct 2020 04:23:11 GMT
|
523
|
+
- request:
|
524
|
+
method: post
|
525
|
+
uri: https://api.steemitdev.com/
|
526
|
+
body:
|
527
|
+
encoding: UTF-8
|
528
|
+
string: '{"jsonrpc":"2.0","id":94,"method":"condenser_api.get_block","params":[47792192]}'
|
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
|
+
- '92'
|
542
|
+
response:
|
543
|
+
status:
|
544
|
+
code: 200
|
545
|
+
message: OK
|
546
|
+
headers:
|
547
|
+
Date:
|
548
|
+
- Sat, 17 Oct 2020 04:23:11 GMT
|
549
|
+
Content-Type:
|
550
|
+
- application/json
|
551
|
+
Transfer-Encoding:
|
552
|
+
- chunked
|
553
|
+
Connection:
|
554
|
+
- keep-alive
|
555
|
+
Server:
|
556
|
+
- nginx
|
557
|
+
X-Jussi-Request-Id:
|
558
|
+
- '000821041381745838'
|
559
|
+
X-Amzn-Trace-Id:
|
560
|
+
- Root=1-5f8a71af-74a104d26f6c374030712dfb
|
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: ASCII-8BIT
|
573
|
+
string: '{"jsonrpc":"2.0","result":{"previous":"02d9403f80a776b441ef64ba9be58fb402302e94","timestamp":"2020-10-17T04:23:09","witness":"protoss20","transaction_merkle_root":"d4f454651afb6029f338c281476b0f659dd210ca","extensions":[],"witness_signature":"20f8ada728b48735bef06bd771b622a9adf534394311efa2e22b5e48aab6dff2b71d202a1969851de0ca4e4f85d8f1dd0dc6a0d57aeee925bd681ba22a6d27c320","transactions":[{"ref_block_num":16446,"ref_block_prefix":330789437,"expiration":"2020-10-17T04:23:36","operations":[["vote",{"voter":"elizacheng","author":"wilhb81","permlink":"20201017t040744410z","weight":548}]],"extensions":[],"signatures":["2061419d08773ed850a2eb40032fcaa80d47ab44898b5e802d6107d2f998cb17ce6d064398920d75881350d1e2ba47f3133592eb52f87c340f564ae144ef7dfa1f"],"transaction_id":"fbcf5fbf16702c4bb22682eb84ec89e634da21fb","block_num":47792192,"transaction_num":0},{"ref_block_num":16442,"ref_block_prefix":3392708601,"expiration":"2020-10-17T04:24:03","operations":[["custom_json",{"required_auths":["epicblackjack"],"required_posting_auths":[],"id":"","json":"{\"prevServerSeed\":
|
574
|
+
\"07cef3c9a293343f6d6b36cc10b34e747c5fb75ab7cea0a608d39d9f39b6494d\", \"prevServerHash\":
|
575
|
+
\"0ce01f78594b02447b657c15ae1bf401de0cd0156755236e0ea6e8ed865f915b\", \"newServerHash\":
|
576
|
+
\"9ed504d730cf9babf04bf13a7aed9e195a1ceb3c7b0bd1efc891188531632438\"}"}]],"extensions":[],"signatures":["201c685670012cfdc0c7eace3c6ae664f90a8ee2b6a129bd5803e1154ca31054a31feeab54c20f642c9d19d089ed0a714230c939501a1638d73d9389a77b752237"],"transaction_id":"4ecb7c86cd7816d9beb29b1dab155667d76c26a1","block_num":47792192,"transaction_num":1}],"block_id":"02d940408361fd392ef8772c850a8995c04b3102","signing_key":"STM7jx3S2EfdcoAjL8eC9HJunHhifMMSxf12HmEYrrVJZJXGzr8QG","transaction_ids":["fbcf5fbf16702c4bb22682eb84ec89e634da21fb","4ecb7c86cd7816d9beb29b1dab155667d76c26a1"]},"id":94}'
|
577
|
+
recorded_at: Sat, 17 Oct 2020 04:23:11 GMT
|
578
|
+
- request:
|
579
|
+
method: post
|
580
|
+
uri: https://api.steemitdev.com/
|
581
|
+
body:
|
582
|
+
encoding: UTF-8
|
583
|
+
string: '{"jsonrpc":"2.0","id":60,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
584
|
+
headers:
|
585
|
+
Content-Type:
|
586
|
+
- application/json; charset=utf-8
|
587
|
+
User-Agent:
|
588
|
+
- steem-ruby/0.9.4
|
589
|
+
Accept-Encoding:
|
590
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
591
|
+
Accept:
|
592
|
+
- "*/*"
|
593
|
+
Host:
|
594
|
+
- api.steemitdev.com
|
595
|
+
Content-Length:
|
596
|
+
- '86'
|
597
|
+
response:
|
598
|
+
status:
|
599
|
+
code: 200
|
600
|
+
message: OK
|
601
|
+
headers:
|
602
|
+
Date:
|
603
|
+
- Sat, 17 Oct 2020 04:27:15 GMT
|
604
|
+
Content-Type:
|
605
|
+
- application/json
|
606
|
+
Transfer-Encoding:
|
607
|
+
- chunked
|
608
|
+
Connection:
|
609
|
+
- keep-alive
|
610
|
+
Server:
|
611
|
+
- nginx
|
612
|
+
X-Jussi-Cache-Hit:
|
613
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
614
|
+
X-Jussi-Request-Id:
|
615
|
+
- '000161604820419730'
|
616
|
+
X-Amzn-Trace-Id:
|
617
|
+
- Root=1-5f8a72a3-13920b7b4150760203af0d75
|
618
|
+
Access-Control-Allow-Origin:
|
619
|
+
- "*"
|
620
|
+
Access-Control-Allow-Methods:
|
621
|
+
- GET, POST, OPTIONS
|
622
|
+
Access-Control-Allow-Headers:
|
623
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
624
|
+
Strict-Transport-Security:
|
625
|
+
- max-age=31557600; includeSubDomains; preload
|
626
|
+
Content-Security-Policy:
|
627
|
+
- upgrade-insecure-requests
|
628
|
+
body:
|
629
|
+
encoding: ASCII-8BIT
|
630
|
+
string: '{"id":60,"jsonrpc":"2.0","result":{"head_block_number":47792273,"head_block_id":"02d94091404579575ea04a39f781feb8a43c738e","time":"2020-10-17T04:27:12","current_witness":"matreshka","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405321457.570
|
631
|
+
STEEM","current_supply":"368938026.916 STEEM","confidential_supply":"0.000
|
632
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784965.474 SBD","confidential_sbd_supply":"0.000
|
633
|
+
SBD","total_vesting_fund_steem":"110211809.481 STEEM","total_vesting_shares":"212009480129.853023
|
634
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718445958.487986
|
635
|
+
VESTS","pending_rewarded_vesting_steem":"362657.040 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024544,"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":16709697,"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.152
|
636
|
+
SBD","downvote_pool_percent":2500}}'
|
637
|
+
recorded_at: Sat, 17 Oct 2020 04:27:15 GMT
|
638
|
+
- request:
|
639
|
+
method: post
|
640
|
+
uri: https://api.steemitdev.com/
|
641
|
+
body:
|
642
|
+
encoding: UTF-8
|
643
|
+
string: '{"jsonrpc":"2.0","id":61,"method":"condenser_api.get_block","params":[47792273]}'
|
644
|
+
headers:
|
645
|
+
Content-Type:
|
646
|
+
- application/json; charset=utf-8
|
647
|
+
User-Agent:
|
648
|
+
- steem-ruby/0.9.4
|
649
|
+
Accept-Encoding:
|
650
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
651
|
+
Accept:
|
652
|
+
- "*/*"
|
653
|
+
Host:
|
654
|
+
- api.steemitdev.com
|
655
|
+
Content-Length:
|
656
|
+
- '92'
|
657
|
+
response:
|
658
|
+
status:
|
659
|
+
code: 200
|
660
|
+
message: OK
|
661
|
+
headers:
|
662
|
+
Date:
|
663
|
+
- Sat, 17 Oct 2020 04:27:15 GMT
|
664
|
+
Content-Type:
|
665
|
+
- application/json
|
666
|
+
Transfer-Encoding:
|
667
|
+
- chunked
|
668
|
+
Connection:
|
669
|
+
- keep-alive
|
670
|
+
Server:
|
671
|
+
- nginx
|
672
|
+
X-Jussi-Cache-Hit:
|
673
|
+
- appbase.condenser_api.get_block.params=[47792273]
|
674
|
+
X-Jussi-Request-Id:
|
675
|
+
- '001071214560429294'
|
676
|
+
X-Amzn-Trace-Id:
|
677
|
+
- Root=1-5f8a72a3-03f64ddb636de6b70187b1cf
|
678
|
+
Access-Control-Allow-Origin:
|
679
|
+
- "*"
|
680
|
+
Access-Control-Allow-Methods:
|
681
|
+
- GET, POST, OPTIONS
|
682
|
+
Access-Control-Allow-Headers:
|
683
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
684
|
+
Strict-Transport-Security:
|
685
|
+
- max-age=31557600; includeSubDomains; preload
|
686
|
+
Content-Security-Policy:
|
687
|
+
- upgrade-insecure-requests
|
688
|
+
body:
|
689
|
+
encoding: ASCII-8BIT
|
690
|
+
string: '{"id":61,"jsonrpc":"2.0","result":{"previous":"02d94090c3bd8216aebe90172a2644a74ef23764","timestamp":"2020-10-17T04:27:12","witness":"matreshka","transaction_merkle_root":"d14bc46369312f12f57e3ccb0a4d8939427ecd29","extensions":[],"witness_signature":"203213f437ae5d7c9f6c37c83ca44f40731d61300ef571b473295d43c39c386bc71b4746dc3ecd70963479a1027513b0f617870bc0dd3e9f365c1fc1e4468f8fe4","transactions":[{"ref_block_num":16527,"ref_block_prefix":896098333,"expiration":"2020-10-17T04:28:08","operations":[["vote",{"voter":"ramco","author":"hafiz34","permlink":"actifit-hafiz34-20201012t190131446z","weight":10000}]],"extensions":[],"signatures":["2027751f470b3e6468fd6e365758e0a107d72127bcf105274c1711f0aad3b6ae5a23f8b3631a140a0aa788aab54ccf43c324c961e22856d48c5f35b0eb820c7649"],"transaction_id":"6dfd6653d720a8fab181c4178a0bb720417d1937","block_num":47792273,"transaction_num":0},{"ref_block_num":16504,"ref_block_prefix":4215976491,"expiration":"2020-10-17T04:37:09","operations":[["feed_publish",{"publisher":"leverfile","exchange_rate":{"base":"0.157
|
691
|
+
SBD","quote":"1.000 STEEM"}}]],"extensions":[],"signatures":["1f0759ce912143a0cc82c55476bbc2c09f1e816bd789659d6d1e1deb392c2c9ac95ec9ce5ce911ce4c20c58bf47d7002d65e7d957bfaf30c9e1bd12d90c2e3f670"],"transaction_id":"f4cd5c8b03773f9caeade0bc78ab6342efdff5c9","block_num":47792273,"transaction_num":1}],"block_id":"02d94091404579575ea04a39f781feb8a43c738e","signing_key":"STM7Sv8q1YasxzP57BsU6jtyN2FpDqJ6aNkX3UGsrXQQG2JV99khK","transaction_ids":["6dfd6653d720a8fab181c4178a0bb720417d1937","f4cd5c8b03773f9caeade0bc78ab6342efdff5c9"]}}'
|
692
|
+
recorded_at: Sat, 17 Oct 2020 04:27:15 GMT
|
693
|
+
- request:
|
694
|
+
method: post
|
695
|
+
uri: https://api.steemitdev.com/
|
696
|
+
body:
|
697
|
+
encoding: UTF-8
|
698
|
+
string: '{"jsonrpc":"2.0","id":36,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
699
|
+
headers:
|
700
|
+
Content-Type:
|
701
|
+
- application/json; charset=utf-8
|
702
|
+
User-Agent:
|
703
|
+
- steem-ruby/0.9.4
|
704
|
+
Accept-Encoding:
|
705
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
706
|
+
Accept:
|
707
|
+
- "*/*"
|
708
|
+
Host:
|
709
|
+
- api.steemitdev.com
|
710
|
+
Content-Length:
|
711
|
+
- '112'
|
712
|
+
response:
|
713
|
+
status:
|
714
|
+
code: 200
|
715
|
+
message: OK
|
716
|
+
headers:
|
717
|
+
Date:
|
718
|
+
- Sat, 17 Oct 2020 04:34:08 GMT
|
719
|
+
Content-Type:
|
720
|
+
- application/json
|
721
|
+
Transfer-Encoding:
|
722
|
+
- chunked
|
723
|
+
Connection:
|
724
|
+
- keep-alive
|
725
|
+
Server:
|
726
|
+
- nginx
|
727
|
+
X-Jussi-Cache-Hit:
|
728
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
729
|
+
X-Jussi-Request-Id:
|
730
|
+
- '000015090251009012'
|
731
|
+
X-Amzn-Trace-Id:
|
732
|
+
- Root=1-5f8a7440-234d1e2d0a83af5300beb4b4
|
733
|
+
Access-Control-Allow-Origin:
|
734
|
+
- "*"
|
735
|
+
Access-Control-Allow-Methods:
|
736
|
+
- GET, POST, OPTIONS
|
737
|
+
Access-Control-Allow-Headers:
|
738
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
739
|
+
Strict-Transport-Security:
|
740
|
+
- max-age=31557600; includeSubDomains; preload
|
741
|
+
Content-Security-Policy:
|
742
|
+
- upgrade-insecure-requests
|
743
|
+
body:
|
744
|
+
encoding: ASCII-8BIT
|
745
|
+
string: '{"id":36,"jsonrpc":"2.0","result":{"head_block_number":47792408,"head_block_id":"02d94118aba5aad6ff875750dca584fa9ef7c96a","time":"2020-10-17T04:34:06","current_witness":"inwi","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405321864.409
|
746
|
+
STEEM","current_supply":"368938355.567 STEEM","confidential_supply":"0.000
|
747
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5784977.906 SBD","confidential_sbd_supply":"0.000
|
748
|
+
SBD","total_vesting_fund_steem":"110211820.635 STEEM","total_vesting_shares":"212009383440.540190
|
749
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718528237.843411
|
750
|
+
VESTS","pending_rewarded_vesting_steem":"362699.810 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48024682,"recent_slots_filled":"340281068846104859736824784653056475135","participation_count":125,"last_irreversible_block_num":47792393,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16745952,"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.632
|
751
|
+
SBD","downvote_pool_percent":2500}}'
|
752
|
+
recorded_at: Sat, 17 Oct 2020 04:34:09 GMT
|
753
|
+
- request:
|
754
|
+
method: post
|
755
|
+
uri: https://api.steemitdev.com/
|
756
|
+
body:
|
757
|
+
encoding: UTF-8
|
758
|
+
string: '{"jsonrpc":"2.0","id":37,"method":"condenser_api.get_block","params":[47792408]}'
|
759
|
+
headers:
|
760
|
+
Content-Type:
|
761
|
+
- application/json; charset=utf-8
|
762
|
+
User-Agent:
|
763
|
+
- steem-ruby/0.9.4
|
764
|
+
Accept-Encoding:
|
765
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
766
|
+
Accept:
|
767
|
+
- "*/*"
|
768
|
+
Host:
|
769
|
+
- api.steemitdev.com
|
770
|
+
Content-Length:
|
771
|
+
- '92'
|
772
|
+
response:
|
773
|
+
status:
|
774
|
+
code: 200
|
775
|
+
message: OK
|
776
|
+
headers:
|
777
|
+
Date:
|
778
|
+
- Sat, 17 Oct 2020 04:34:09 GMT
|
779
|
+
Content-Type:
|
780
|
+
- application/json
|
781
|
+
Transfer-Encoding:
|
782
|
+
- chunked
|
783
|
+
Connection:
|
784
|
+
- keep-alive
|
785
|
+
Server:
|
786
|
+
- nginx
|
787
|
+
X-Jussi-Cache-Hit:
|
788
|
+
- appbase.condenser_api.get_block.params=[47792408]
|
789
|
+
X-Jussi-Request-Id:
|
790
|
+
- '000076785878974823'
|
791
|
+
X-Amzn-Trace-Id:
|
792
|
+
- Root=1-5f8a7441-0612eea75a4b75e03827a23e
|
793
|
+
Access-Control-Allow-Origin:
|
794
|
+
- "*"
|
795
|
+
Access-Control-Allow-Methods:
|
796
|
+
- GET, POST, OPTIONS
|
797
|
+
Access-Control-Allow-Headers:
|
798
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
799
|
+
Strict-Transport-Security:
|
800
|
+
- max-age=31557600; includeSubDomains; preload
|
801
|
+
Content-Security-Policy:
|
802
|
+
- upgrade-insecure-requests
|
803
|
+
body:
|
804
|
+
encoding: ASCII-8BIT
|
805
|
+
string: '{"id":37,"jsonrpc":"2.0","result":{"previous":"02d94117628f8672ab5eb3c034ca1b87e176db5f","timestamp":"2020-10-17T04:34:06","witness":"inwi","transaction_merkle_root":"b4a6e864e7746f8bad635b01ba274b24527f57f7","extensions":[],"witness_signature":"20e3514f7f85b3f5d3693cc6bac1ec4fddaa32cf7b2bd99d1a1eb40676bc96ea0873102eae9a70ee8ce6ffe005eec18ace4cabebc440357000fb97674d93a7e95d","transactions":[{"ref_block_num":16646,"ref_block_prefix":3223466471,"expiration":"2020-10-17T04:44:00","operations":[["vote",{"voter":"robin26","author":"samstonehill","permlink":"disord-deletes-iceagefarmer-server-for-spread-of-misinformation-proving-themselves-to-be-corrupt","weight":400}]],"extensions":[],"signatures":["1f47cd7062d1c0eb715f3e1b2cb52c30f9102956266cfe4d07c231c3d4d1cc13d1230507da014fe9ebe65ebb3eb5a77371a979832b7bc5d046458cf9d97062f035"],"transaction_id":"3c38211cfdc089eec937e4df529cb1459657389f","block_num":47792408,"transaction_num":0},{"ref_block_num":16646,"ref_block_prefix":3223466471,"expiration":"2020-10-17T04:44:00","operations":[["vote",{"voter":"gysmo","author":"samstonehill","permlink":"disord-deletes-iceagefarmer-server-for-spread-of-misinformation-proving-themselves-to-be-corrupt","weight":300}]],"extensions":[],"signatures":["1f2a1febe5b9e02c8e228acd16014deb9e1d68a895e75469c053ea2d977f7feaf478620af5a9d24bd015b7237d0db1a26caea5abf0e1b9815529249279010a3e67"],"transaction_id":"91d157edc30f81394deaaf03b623da925b2eaddc","block_num":47792408,"transaction_num":1},{"ref_block_num":16646,"ref_block_prefix":3223466471,"expiration":"2020-10-17T04:44:00","operations":[["claim_reward_balance",{"account":"carilinger","reward_steem":"0.000
|
806
|
+
STEEM","reward_sbd":"0.000 SBD","reward_vests":"427.093232 VESTS"}]],"extensions":[],"signatures":["1f1c5820758285d19c70a726a073ad55736a86d357ba8dbdce7d864d4c7a3cff450aec9a1f6933bcae8414c0ba7f6208e91891d66bcf38767721f216c43becb049"],"transaction_id":"eb8b133dc40c9552c55f808df99572bf0cf5a142","block_num":47792408,"transaction_num":2},{"ref_block_num":16646,"ref_block_prefix":3223466471,"expiration":"2020-10-17T04:44:00","operations":[["vote",{"voter":"phyokyaw","author":"aboulsoud","permlink":"5pwa2u","weight":10000}]],"extensions":[],"signatures":["2076c64a6cb36c7ac91cfb4a3dc5648b71bc04f96c8f93eb486a22529f2f63b62f3cf39539473d55ca8615f12c743532768855c06ab3f4d357d9a7b9d13a2572d5"],"transaction_id":"fccec2d68964a7b26746bb4a2419b412efe9fe44","block_num":47792408,"transaction_num":3},{"ref_block_num":16647,"ref_block_prefix":328603654,"expiration":"2020-10-17T04:44:03","operations":[["claim_reward_balance",{"account":"ctime","reward_steem":"0.000
|
807
|
+
STEEM","reward_sbd":"0.000 SBD","reward_vests":"2966.567572 VESTS"}]],"extensions":[],"signatures":["1f62222e6fce726f97c562a66dfb3008902dbc272f35eacd33370335191018592b29d7735d973e4adf0c98dcff845ae3015a9c2382cc07ccbf2b62c8a4ce0e733a"],"transaction_id":"d210fd56eb675ccbd075a7fdc88450f7e8698d6e","block_num":47792408,"transaction_num":4},{"ref_block_num":16660,"ref_block_prefix":25159922,"expiration":"2020-10-17T04:35:00","operations":[["transfer",{"from":"tipu","to":"suramax","amount":"0.513
|
808
|
+
STEEM","memo":"@tipU investor payout - check out https:\/\/tipu.online for
|
809
|
+
detailed info - thank you!"}]],"extensions":[],"signatures":["1f4cf17bd7895ffb29e67a19d3a1118fb8a2cb16266ae066b23bcfeaf662292bb45813388425f43a6bbbaa65e09b2b197c59918e52b788eb63d8891ac8f4820564"],"transaction_id":"ac74462c832bcd27141b016e0bcf0f809e41bac7","block_num":47792408,"transaction_num":5},{"ref_block_num":16647,"ref_block_prefix":328603654,"expiration":"2020-10-17T04:44:03","operations":[["claim_reward_balance",{"account":"mmmmkkkk311","reward_steem":"0.000
|
810
|
+
STEEM","reward_sbd":"0.000 SBD","reward_vests":"3037.749803 VESTS"}]],"extensions":[],"signatures":["204493d44947e026a4320d012d48685d067a3c157862428efee61267de977fde4d189ba29cfa6cba8dad292078f7b7406b96b57704afd6d6f52ab6b8fa020361a9"],"transaction_id":"45e7bcfd9633403f6df8d8ad69ca4f2a30ea8b9c","block_num":47792408,"transaction_num":6},{"ref_block_num":16647,"ref_block_prefix":328603654,"expiration":"2020-10-17T04:44:03","operations":[["claim_reward_balance",{"account":"fredkese","reward_steem":"0.000
|
811
|
+
STEEM","reward_sbd":"0.089 SBD","reward_vests":"1083.123410 VESTS"}]],"extensions":[],"signatures":["1f33cd1a88932d5e32a3920e3233c42bb750665fda0e203725b7758311e88d688c35b747dacb415e9d1b96729f15e870568c242bff0e92f73665e64024485584e0"],"transaction_id":"bf588e8b069c5d00769f53875e16fecd0ae2e97a","block_num":47792408,"transaction_num":7}],"block_id":"02d94118aba5aad6ff875750dca584fa9ef7c96a","signing_key":"STM5PT81nf85nZ3tDrbpfxvSFaxJjdDSZobhCmnWPBuHCP52fEYVC","transaction_ids":["3c38211cfdc089eec937e4df529cb1459657389f","91d157edc30f81394deaaf03b623da925b2eaddc","eb8b133dc40c9552c55f808df99572bf0cf5a142","fccec2d68964a7b26746bb4a2419b412efe9fe44","d210fd56eb675ccbd075a7fdc88450f7e8698d6e","ac74462c832bcd27141b016e0bcf0f809e41bac7","45e7bcfd9633403f6df8d8ad69ca4f2a30ea8b9c","bf588e8b069c5d00769f53875e16fecd0ae2e97a"]}}'
|
812
|
+
recorded_at: Sat, 17 Oct 2020 04:34:09 GMT
|
813
|
+
- request:
|
814
|
+
method: post
|
815
|
+
uri: https://api.steemitdev.com/
|
816
|
+
body:
|
817
|
+
encoding: UTF-8
|
818
|
+
string: '{"jsonrpc":"2.0","id":21,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
819
|
+
headers:
|
820
|
+
Content-Type:
|
821
|
+
- application/json; charset=utf-8
|
822
|
+
User-Agent:
|
823
|
+
- steem-ruby/0.9.4
|
824
|
+
Accept-Encoding:
|
825
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
826
|
+
Accept:
|
827
|
+
- "*/*"
|
828
|
+
Host:
|
829
|
+
- api.steemitdev.com
|
830
|
+
Content-Length:
|
831
|
+
- '79'
|
832
|
+
response:
|
833
|
+
status:
|
834
|
+
code: 200
|
835
|
+
message: OK
|
836
|
+
headers:
|
837
|
+
Date:
|
838
|
+
- Sat, 17 Oct 2020 04:56:01 GMT
|
839
|
+
Content-Type:
|
840
|
+
- application/json
|
841
|
+
Transfer-Encoding:
|
842
|
+
- chunked
|
843
|
+
Connection:
|
844
|
+
- keep-alive
|
845
|
+
Server:
|
846
|
+
- nginx
|
847
|
+
X-Jussi-Request-Id:
|
848
|
+
- '000080557716618968'
|
849
|
+
X-Amzn-Trace-Id:
|
850
|
+
- Root=1-5f8a795b-27309aea269effd204035a73
|
851
|
+
Access-Control-Allow-Origin:
|
852
|
+
- "*"
|
853
|
+
Access-Control-Allow-Methods:
|
854
|
+
- GET, POST, OPTIONS
|
855
|
+
Access-Control-Allow-Headers:
|
856
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
857
|
+
Strict-Transport-Security:
|
858
|
+
- max-age=31557600; includeSubDomains; preload
|
859
|
+
Content-Security-Policy:
|
860
|
+
- upgrade-insecure-requests
|
861
|
+
body:
|
862
|
+
encoding: ASCII-8BIT
|
863
|
+
string: '{"jsonrpc":"2.0","result":{"head_block_number":47792840,"head_block_id":"02d942c8823015db5e5db52983836a9c2dd84507","time":"2020-10-17T04:56:00","current_witness":"steem-supporter","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405323167.734
|
864
|
+
STEEM","current_supply":"368939461.986 STEEM","confidential_supply":"0.000
|
865
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5785009.214 SBD","confidential_sbd_supply":"0.000
|
866
|
+
SBD","total_vesting_fund_steem":"110212515.423 STEEM","total_vesting_shares":"212010341921.594353
|
867
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718372390.049989
|
868
|
+
VESTS","pending_rewarded_vesting_steem":"362618.808 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48025120,"recent_slots_filled":"340282366604025813406245199463554482175","participation_count":126,"last_irreversible_block_num":47792820,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16803968,"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.392
|
869
|
+
SBD","downvote_pool_percent":2500},"id":21}'
|
870
|
+
recorded_at: Sat, 17 Oct 2020 04:56:01 GMT
|
871
|
+
- request:
|
872
|
+
method: post
|
873
|
+
uri: https://api.steemitdev.com/
|
874
|
+
body:
|
875
|
+
encoding: UTF-8
|
876
|
+
string: '{"jsonrpc":"2.0","id":22,"method":"condenser_api.get_block","params":[47792840]}'
|
877
|
+
headers:
|
878
|
+
Content-Type:
|
879
|
+
- application/json; charset=utf-8
|
880
|
+
User-Agent:
|
881
|
+
- steem-ruby/0.9.4
|
882
|
+
Accept-Encoding:
|
883
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
884
|
+
Accept:
|
885
|
+
- "*/*"
|
886
|
+
Host:
|
887
|
+
- api.steemitdev.com
|
888
|
+
Content-Length:
|
889
|
+
- '92'
|
890
|
+
response:
|
891
|
+
status:
|
892
|
+
code: 200
|
893
|
+
message: OK
|
894
|
+
headers:
|
895
|
+
Date:
|
896
|
+
- Sat, 17 Oct 2020 04:56:07 GMT
|
897
|
+
Content-Type:
|
898
|
+
- application/json
|
899
|
+
Transfer-Encoding:
|
900
|
+
- chunked
|
901
|
+
Connection:
|
902
|
+
- keep-alive
|
903
|
+
Server:
|
904
|
+
- nginx
|
905
|
+
X-Jussi-Request-Id:
|
906
|
+
- '000262929832706059'
|
907
|
+
X-Amzn-Trace-Id:
|
908
|
+
- Root=1-5f8a7961-45b708cb78fa7b324ec0b37a
|
909
|
+
Access-Control-Allow-Origin:
|
910
|
+
- "*"
|
911
|
+
Access-Control-Allow-Methods:
|
912
|
+
- GET, POST, OPTIONS
|
913
|
+
Access-Control-Allow-Headers:
|
914
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
915
|
+
Strict-Transport-Security:
|
916
|
+
- max-age=31557600; includeSubDomains; preload
|
917
|
+
Content-Security-Policy:
|
918
|
+
- upgrade-insecure-requests
|
919
|
+
body:
|
920
|
+
encoding: ASCII-8BIT
|
921
|
+
string: '{"jsonrpc":"2.0","result":{"previous":"02d942c784a37ea5af6320997bd77ef5991a9880","timestamp":"2020-10-17T04:56:00","witness":"steem-supporter","transaction_merkle_root":"5bd8be8a91632a24f5f550234a322d4141637b29","extensions":[],"witness_signature":"20ee8eaf0c9e1cadff8241db419fe806a1107c1c619b4de7294bca75d69cee71146f975e71ae64168989208cbf0b60aee4e43fd92ef048449fa45f06fbb46e5eb0","transactions":[{"ref_block_num":17072,"ref_block_prefix":284521805,"expiration":"2020-10-17T05:05:54","operations":[["comment",{"parent_author":"","parent_permlink":"an","author":"anfeng","permlink":"6bw6u6-an-feng","title":"an
|
922
|
+
feng","body":"https:\/\/images.hive.blog\/DQmVCgCkpYeWETzF8SpdoZeJXxdfW8LiFWkiAgwsBdZynQd\/489c283171e5d06c24.jpg\n\u5f9e\u5f6d\u535a
|
923
|
+
\u66ff\u4e00\u4e9b\u56e0\u70ba \u6c92\u6709\u7e73\u4ea4\u7f70\u6b3e\u800c\u88ab\u53d6\u6d88\u9078\u8209\u8cc7\u683c
|
924
|
+
\u5605 \u7d10\u7d04\u9ed1\u4eba\u7e73\u4ea4\u7f70\u6b3e \u8b8a\u76f8\u5728\u67d0\u4e00\u500b\u7a0b\u5ea6
|
925
|
+
\u4e0a\u9593\u63a5\u8cc4\u9078 \u5462\u4e00\u4ef6\u4e8b\u7576\u4e2d \u5c31\u53ef\u4ee5\u7747\u5f97\u51fa
|
926
|
+
\u7f8e\u570b\u4e00\u4eba\u4e00\u7968\u9078\u8209\u5236\u5ea6\u5605\u53ef\u7b11\u4e4b\u8655
|
927
|
+
\u540c\u9999\u6e2f\u6c11\u5efa\u806f\u5605\u86c7\u9f4b\u9905\u7cc9\u8cc4\u9078
|
928
|
+
\u65b9\u6cd5 \u985e\u4f3c \u4e00\u4eba\u4e00\u7968 \u9078\u8209\u5236\u5ea6\u6700\u5927\u5605\u554f\u984c\u5c31\u4fc2\u7aae\u4eba\u4e0d\u52de\u800c\u7a6b
|
929
|
+
\u7121\u7aef\u7aef\u7372\u5f97\u4e86 \u8207\u4e4b\u80fd\u529b\u4e0d\u76f8\u7a31\u5605
|
930
|
+
\u9078\u8209\u6b0a\u529b \u7c21\u55ae\u4f86\u8aaa \u5c31\u662f\u7aae\u4eba\u9019\u4e00\u500b\u7fa4\u9ad4\u7121\u7aef\u7aef
|
931
|
+
\u4e0d\u52de\u800c\u7372\u5730 \u7372\u5f97\u4e86\u5927\u91cf\u9078\u7968
|
932
|
+
\u7531\u65bc\u7aae\u4eba\u7684\u6536\u5165\u8207\u5176 \u5728\u4e00\u4eba\u4e00\u7968\u9078\u8209\u5236\u5ea6\u4e4b\u4e0b\u6240\u7372\u5f97\u7684\u6b0a\u529b\u4e26\u4e0d\u76f8\u7a31
|
933
|
+
\u76f8\u5c0d\u65bc\u7372\u5f97\u6b0a\u529b \u7aae\u4eba\u66f4\u52a0\u5e0c\u671b\u7372\u5f97\u91d1\u9322
|
934
|
+
\u6240\u4ee5\u9019\u5c31\u4fc3\u4f7f\u4e86\u7aae\u4eba\u5728\u4e00\u4eba\u4e00\u7968\u9078\u8209\u5236\u5ea6\u4e4b\u4e0b\u7279\u5225\u5bb9\u6613\u5411\u6709\u9322\u4eba\u51fa\u552e\u624b\u4e2d\u7684\u6b0a\u529b\u4ee5\u7372\u5f97\u91d1\u9322
|
935
|
+
\u7576\u7136 \u76f8\u5c0d\u65bc\u6c11\u5efa\u806f\u76f4\u63a5\u8cc2\u9078\u7528\u86c7\u9f4b\u9905\u7cc9\u569f\u8cc4\u8cc2\u7aae\u4eba
|
936
|
+
\u81e8\u9078\u8209\u524d\u8eca\u7aae\u4eba\u53bb\u5404\u5927\u9152\u5bb6\u5404\u5927\u9152\u6a13\u5ea6\u98df\u9b91\u53c3\u7fc5\u809a
|
937
|
+
\u5f6d\u535a\u66ff\u7aae\u4eba\u9ed1\u4eba \u9078\u6c11\u7e73\u4ea4\u7f70\u6b3e\u5605\u5462\u4e00\u500b\u884c\u70ba\u76f8\u5c0d\u569f\u8b1b
|
938
|
+
\u4fc2\u5c6c\u65bc\u9593\u63a5\u8cc4\u9078 \u6240\u4ee5\u9019\u5c31\u8b49\u660e\u4e86\u70ba\u4ec0\u9ebc\u6211\u5011\u9700\u8981\u4e00\u5957\u66f4\u52a0\u597d\u7684\u9078\u8209\u5236\u5ea6\u9999\u6e2f\u516c\u8b58\u9078\u8209\u516c\u5f0fvoting
|
939
|
+
power=2^log e asset you own \u800c\u4e0d\u662f\u7e7c\u7e8c\u9078\u64c7\u53bb\u7528\u4e00\u5957\u721b\u900f\u4e86\u7684
|
940
|
+
\u9078\u8209\u5236\u5ea6 \u83ef\u76db\u9813\u5171\u8b58 \u7f8e\u570b\u4e00\u4eba\u4e00\u7968\u5f0f\u6c11\u4e3b
|
941
|
+
\u7136\u5f8c \u60f3\u76e1\u8fa6\u6cd5\u900f\u904e\u6cd5\u5f8b \u7528\u5343\u65b9\u767e\u8a08\u53bb\u5835\u585e\u4f4f\u5462\u4e00\u5957\u5236\u5ea6\u80cc\u5f8c\u5605\u6f0f\u6d1e
|
942
|
+
\u56e0\u70ba\u7528\u6cd5\u5f8b \u53bb\u5230\u5835\u585e \u4e00\u5957\u4e0d\u516c\u5e73\u5605\u9078\u8209\u5236\u5ea6\u5605\u6f0f\u6d1e
|
943
|
+
\u5c31\u597d\u4f3c\u7528\u4e00\u5957\u6709\u9650\u5605\u8cc7\u6e90 \u53bb\u5835\u585e\u7121\u9650\u6f0f\u6d1e\u5605\u65b9\u6cd5\u4e00\u6a23
|
944
|
+
\u4fc2\u6839\u672c\u6c92\u6709\u8fa6\u6cd5\u5835\u585e\u7684 \u56e0\u70ba\u7576\u4f60\u7528\u6cd5\u5f8b\u5835\u585e\u4f4f\u4e00\u500b\u6d1e\u7684\u6642\u5019
|
945
|
+
\u58d3\u529b\u5c31\u6703\u5f80\u5176\u4ed6\u6d1e\u8d70 \u5c0e\u81f4\u4f60\u6c38\u9060\u5187\u8fa6\u6cd5\u7528\u6cd5\u5f8b\u5835\u585e\u4f4f\u6240\u6709\u6d1e
|
946
|
+
\u53ea\u8981\u4e00\u4eba\u4e00\u7968\u7684\u6c11\u4e3b\u9078\u8209\u7e7c\u7e8c\u5b58\u5728
|
947
|
+
\u6709\u9322\u4eba \u8cc4\u8cc2\u7aae\u4eba\u4ee5\u7372\u5f97\u9078\u7968\u7684\u60c5\u6cc1\u5fc5\u7136\u7e7c\u7e8c\u5b58\u5728
|
948
|
+
\u8981\u89e3\u6c7a\u8cc4\u9078\u5c31\u50cf\u9632\u6d2a\u6cbb\u6c34\u4e00\u6a23
|
949
|
+
\u8981\u758f\u5c0e\u800c\u4e0d\u662f\u5835\u585e \u6211\u5011\u5728\u5efa\u7acb\u4e00\u5957\u9078\u8209\u5236\u5ea6
|
950
|
+
\u4e4b\u524d\u5fc5\u9808\u5047\u8a2d\u66ec\u6240\u6709\u53ef\u80fd \u767c\u751f\u7684\u60c5\u6cc1
|
951
|
+
\u7576\u4e2d\u5fc5\u7136\u5305\u62ec\u5728\u9019\u5957\u9078\u8209\u5236\u5ea6\u4e0b
|
952
|
+
\u767c\u751f\u56b4\u91cd\u8cc4\u9078 \u9019\u500b\u6700\u56b4\u91cd\u7684\u60c5\u6cc1
|
953
|
+
\u6211\u5011\u8981\u505a\u7684\u4e0d\u662f\u505a\u5230 \u96f6\u8cc4\u9078
|
954
|
+
\u76f8\u53cd \u6211\u5011\u61c9\u8a72 \u76e1\u53ef\u80fd \u5305\u5bb9\u8cc4\u9078
|
955
|
+
\u5bb9\u7d0d\u8cc4\u9078\u6b63\u6240\u8b02\u6d77\u7d0d\u767e\u5ddd\u6709\u5bb9\u4e43\u5927
|
956
|
+
\u5728\u5141\u8a31\u6709\u9322\u4eba\u900f\u904e\u91d1\u9322 \u8cfc\u8cb7\u7aae\u4eba\u9078\u7968\u7684\u60c5\u6cc1\u4e0b\u5427
|
957
|
+
\u9019\u500b\u5f71\u97ff\u6e1b\u5230\u6700\u4f4e \u6240\u4ee5\u9999\u6e2f\u5171\u8b58\u9078\u8209\u516c\u5f0fvoting
|
958
|
+
power=2^log e asset you own \u7684\u53b2\u5bb3\u4e4b\u8655\u5c31\u5728\u65bc
|
959
|
+
\u5b83\u80fd\u5920 \u5728\u6709\u9322\u4eba\u7528\u76e1\u5168\u526f\u8eab\u5bb6
|
960
|
+
\u50be\u5bb6\u8569\u7522 \u5730\u9032\u884c\u8cc4\u9078\u4e7e\u64fe\u7f8e\u570b\u5927\u9078\u5605\u6642\u5019
|
961
|
+
\u4f9d\u7136\u80fd\u5920\u4fdd\u6301\u9078\u8209\u5605\u516c\u5e73\u6027 \u78ba\u4fdd\u9078\u8209\u51fa\u569f\u5605\u7f8e\u570b\u7e3d\u7d71\u4e0d\u6703\u662f\u73a9
|
962
|
+
\u8822\u4eba\u653f\u6cbb\u7aae\u4eba\u653f\u6cbb \u7528\u9322\u53bb\u8cb7\u9078\u7968
|
963
|
+
\u4ea6\u90fd\u5514\u6703\u597d\u4f3c \u7f8e\u570b\u6c11\u4e3b\u9ee8\u5605\u7e3d\u7d71
|
964
|
+
\u4e00\u76f4\u6dea\u70ba\u6709\u9322\u4eba \u5927\u5b56\u6c99 \u83ef\u723e\u8857\u5605\u5080\u5121
|
965
|
+
\u597d\u4f3c\u4e2d\u570b\u570b\u5bb6\u4e3b\u5e2d\u7fd2\u8fd1\u5e73\u5481\u6a23
|
966
|
+
\u4e00\u76f4\u6dea\u70ba\u674e\u5609\u8aa0\u5605\u5080\u5121\u5481\u6a23 \u570b\u5bb6\u4e00\u76f4\u88ab\u6709\u9322\u4eba\u628a\u6301
|
967
|
+
\u570b\u5bb6\u88ab\u6709\u9322\u4eba\u7576\u5bb6\u4f5c\u4e3b \u53c8\u6216\u8005
|
968
|
+
\u570b\u5bb6\u88ab\u7aae\u4eba\u9a0e\u52ab\u4e0d\u505c\u6d3e\u798f\u5229 \u597d\u4f3c\u59d4\u5167\u745e\u62c9\u5605\u99ac\u9053\u7f85
|
969
|
+
\u5c0e\u81f4\u570b\u5bb6\u9023\u5e74\u8d64\u5b57 \u50b5\u81fa\u9ad8\u7bc9\u5481\u6a23
|
970
|
+
\u9999\u6e2f\u516c\u5f0f\u9078\u8209\u516c\u5f0fvoting power=2^log e asset
|
971
|
+
you own\u5605\u53b2\u5bb3\u4e4b\u8655\u5c31\u5728\u65bc \u5b83\u80fd\u5920\u5728
|
972
|
+
\u6548\u7387 \u540c\u57cb\u53bb\u4e2d\u5fc3\u6cd5\u4e4b\u9593\u53d6\u5f97\u4e86
|
973
|
+
\u6700\u7d42\u5e73\u8861 \u540c\u6642\u5728\u5bb9\u8a31\u8cc4\u9078 \u884c\u70ba\u767c\u751f\u7684\u60c5\u6cc1
|
974
|
+
\u4e4b\u4e0b \u4f9d\u7136\u59cb\u7d42\u80fd\u5920\u4fdd\u6301 \u9078\u8209\u5605
|
975
|
+
\u516c\u5e73\u6027 \u56e0\u70ba \u653f\u5e9c\u7684 \u552f\u4e00\u4f5c\u7528
|
976
|
+
\u5c31\u662f\u4f5c\u51fa\u8ca1\u5bcc\u7684\u7b2c\u4e8c\u6b21\u5206\u914d \u800c\u5728\u8cc4\u9078\u5605\u904e\u7a0b\u7576\u4e2d
|
977
|
+
\u5176\u5be6 \u6709\u9322\u4eba \u5df2\u7d93\u4ee3\u66ff\u5497\u653f\u5e9c\u5462\u4e00\u500b\u89d2\u8272
|
978
|
+
\u63d0\u524d\u5e6b \u653f\u5e9c\u9032\u884c\u4e86 \u8ca1\u5bcc\u5605\u7b2c\u4e8c\u6b21\u5206\u914d
|
979
|
+
\u6240\u4ee5\u5373\u4f7f\u5c07\u4f86\u9078\u51fa\u569f\u5605\u653f\u5e9c \u504f\u5e6b\u6709\u9322\u4eba\u504f\u5e6b\u8ca1\u5718
|
980
|
+
\u5176\u5be6\u90fd\u5df2\u7d93\u4e0d\u91cd\u8981 \u56e0\u70ba\u653f\u5e9c\u6700\u91cd\u8981\u5605\u76ee\u7684
|
981
|
+
\u4f5c\u51fa\u8ca1\u5bcc\u7b2c\u4e8c\u6b21\u5206\u914d \u5df2\u7d93\u4e00\u65e9\u5b8c\u6210
|
982
|
+
\u800c\u4e14 \u9999\u6e2f\u5171\u8b58\u9078\u8209\u516c\u5f0fvoting power=2^log
|
983
|
+
e asset you own\u80fd\u5920\u5728 \u570b\u5bb6\u767c\u751f\u5927\u91cf\u8cc4\u9078\u884c\u70ba
|
984
|
+
\u6709\u9322\u4eba \u7528\u5168\u526f\u8eab\u5bb6\u50be\u5bb6\u8569\u7522
|
985
|
+
\u6536\u8cb7 \u7aae\u4eba\u9078\u7968\u5605\u60c5\u6cc1 \u4e4b\u4e0b \u5c07\u8cc4\u9078\u5605\u58de\u8655\u6e1b\u5230\u6700\u4f4e","json_metadata":"{\"tags\":[\"feng\"],\"image\":[\"https:\/\/images.hive.blog\/DQmVCgCkpYeWETzF8SpdoZeJXxdfW8LiFWkiAgwsBdZynQd\/489c283171e5d06c24.jpg\"],\"app\":\"steemit\/0.2\",\"format\":\"markdown\"}"}]],"extensions":[],"signatures":["206031059a3a45399d25e60b39ea7d9415868eebdfdd8bde762ffbb1d19c19a4a37c98da7c3464ed6e16bb09a6eaef68e2fc9fc695584f7c87f261f1de105dfa6b"],"transaction_id":"40b38be31e7519bf30780009c15cc55a446deb38","block_num":47792840,"transaction_num":0},{"ref_block_num":17072,"ref_block_prefix":284521805,"expiration":"2020-10-17T05:05:54","operations":[["custom_json",{"required_auths":[],"required_posting_auths":["wakeupkitty"],"id":"follow","json":"[\"reblog\",{\"account\":\"wakeupkitty\",\"author\":\"wakeupkitty\",\"permlink\":\"contest-looking-back-look-forward-3-19\"}]"}]],"extensions":[],"signatures":["1f6bd71337337a16b528e1e32a5148b10316caf44c7c77e7e0704b0f045e0a5f3d316542d84daa030a5e6b6a4c40bc53b0ca90004ab07bd65ae782de5d04972955"],"transaction_id":"4ecd04320f8a55ff8a9737ebcedba0b09fe78d3f","block_num":47792840,"transaction_num":1},{"ref_block_num":17072,"ref_block_prefix":284521805,"expiration":"2020-10-17T05:05:54","operations":[["vote",{"voter":"pixelfan","author":"voclab","permlink":"want-to-seek-thy-face-oh-lord","weight":310}]],"extensions":[],"signatures":["2054b06c5a780f6f84e33fd838fabf84baf2248d98f1f36db2c53bcf2beed7ba2e6a2aa2dfa1b63b8d6599f3bf2703b29ad3b8612df6af46ccc05cce904b3ff4fb"],"transaction_id":"c3077b557822ad48483264907733efc824d70c15","block_num":47792840,"transaction_num":2}],"block_id":"02d942c8823015db5e5db52983836a9c2dd84507","signing_key":"STM5dPN4gqVbFyTwerBZKm36Vc2TtMJriKNcsbyvh7qVonwzA1CVR","transaction_ids":["40b38be31e7519bf30780009c15cc55a446deb38","4ecd04320f8a55ff8a9737ebcedba0b09fe78d3f","c3077b557822ad48483264907733efc824d70c15"]},"id":22}'
|
986
|
+
recorded_at: Sat, 17 Oct 2020 04:56:07 GMT
|
987
|
+
- request:
|
988
|
+
method: post
|
989
|
+
uri: https://api.steemitdev.com/
|
990
|
+
body:
|
991
|
+
encoding: UTF-8
|
992
|
+
string: '{"jsonrpc":"2.0","id":85,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
993
|
+
headers:
|
994
|
+
Content-Type:
|
995
|
+
- application/json; charset=utf-8
|
996
|
+
User-Agent:
|
997
|
+
- steem-ruby/0.9.4
|
998
|
+
Accept-Encoding:
|
999
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1000
|
+
Accept:
|
1001
|
+
- "*/*"
|
1002
|
+
Host:
|
1003
|
+
- api.steemit.com
|
1004
|
+
Content-Length:
|
1005
|
+
- '87'
|
1006
|
+
response:
|
1007
|
+
status:
|
1008
|
+
code: 200
|
1009
|
+
message: OK
|
1010
|
+
headers:
|
1011
|
+
Date:
|
1012
|
+
- Sat, 17 Oct 2020 05:03:37 GMT
|
1013
|
+
Content-Type:
|
1014
|
+
- application/json
|
1015
|
+
Transfer-Encoding:
|
1016
|
+
- chunked
|
1017
|
+
Connection:
|
1018
|
+
- keep-alive
|
1019
|
+
Server:
|
1020
|
+
- nginx
|
1021
|
+
X-Jussi-Cache-Hit:
|
1022
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
1023
|
+
X-Jussi-Request-Id:
|
1024
|
+
- '000540777933601764'
|
1025
|
+
X-Amzn-Trace-Id:
|
1026
|
+
- Root=1-5f8a7b29-732524f806e11839718bc13d
|
1027
|
+
Access-Control-Allow-Origin:
|
1028
|
+
- "*"
|
1029
|
+
Access-Control-Allow-Methods:
|
1030
|
+
- GET, POST, OPTIONS
|
1031
|
+
Access-Control-Allow-Headers:
|
1032
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1033
|
+
Strict-Transport-Security:
|
1034
|
+
- max-age=31557600; includeSubDomains; preload
|
1035
|
+
Content-Security-Policy:
|
1036
|
+
- upgrade-insecure-requests
|
1037
|
+
body:
|
1038
|
+
encoding: ASCII-8BIT
|
1039
|
+
string: '{"id":85,"jsonrpc":"2.0","result":{"head_block_number":47792990,"head_block_id":"02d9435e1e13ec293ff29710234cfe72c90e6adf","time":"2020-10-17T05:03:36","current_witness":"hinomaru-jp","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"405323620.375
|
1040
|
+
STEEM","current_supply":"368939780.004 STEEM","confidential_supply":"0.000
|
1041
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5785030.619 SBD","confidential_sbd_supply":"0.000
|
1042
|
+
SBD","total_vesting_fund_steem":"110212558.781 STEEM","total_vesting_shares":"212010294056.385346
|
1043
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"718662781.603882
|
1044
|
+
VESTS","pending_rewarded_vesting_steem":"362769.752 STEEM","sbd_interest_rate":0,"sbd_print_rate":10000,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48025272,"recent_slots_filled":"297746989926182740923771085713792040959","participation_count":126,"last_irreversible_block_num":47792972,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":16820849,"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.592
|
1045
|
+
SBD","downvote_pool_percent":2500}}'
|
1046
|
+
recorded_at: Sat, 17 Oct 2020 05:03:37 GMT
|
1047
|
+
- request:
|
1048
|
+
method: post
|
1049
|
+
uri: https://api.steemitdev.com/
|
1050
|
+
body:
|
1051
|
+
encoding: UTF-8
|
1052
|
+
string: '{"jsonrpc":"2.0","id":86,"method":"condenser_api.get_block","params":[47792990]}'
|
1053
|
+
headers:
|
1054
|
+
Content-Type:
|
1055
|
+
- application/json; charset=utf-8
|
1056
|
+
User-Agent:
|
1057
|
+
- steem-ruby/0.9.4
|
1058
|
+
Accept-Encoding:
|
1059
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1060
|
+
Accept:
|
1061
|
+
- "*/*"
|
1062
|
+
Host:
|
1063
|
+
- api.steemit.com
|
1064
|
+
Content-Length:
|
1065
|
+
- '92'
|
1066
|
+
response:
|
1067
|
+
status:
|
1068
|
+
code: 200
|
1069
|
+
message: OK
|
1070
|
+
headers:
|
1071
|
+
Date:
|
1072
|
+
- Sat, 17 Oct 2020 05:03:37 GMT
|
1073
|
+
Content-Type:
|
1074
|
+
- application/json
|
1075
|
+
Transfer-Encoding:
|
1076
|
+
- chunked
|
1077
|
+
Connection:
|
1078
|
+
- keep-alive
|
1079
|
+
Server:
|
1080
|
+
- nginx
|
1081
|
+
X-Jussi-Request-Id:
|
1082
|
+
- '001061648023598913'
|
1083
|
+
X-Amzn-Trace-Id:
|
1084
|
+
- Root=1-5f8a7b29-489dd2200bc5487d76462810
|
1085
|
+
Access-Control-Allow-Origin:
|
1086
|
+
- "*"
|
1087
|
+
Access-Control-Allow-Methods:
|
1088
|
+
- GET, POST, OPTIONS
|
1089
|
+
Access-Control-Allow-Headers:
|
1090
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1091
|
+
Strict-Transport-Security:
|
1092
|
+
- max-age=31557600; includeSubDomains; preload
|
1093
|
+
Content-Security-Policy:
|
1094
|
+
- upgrade-insecure-requests
|
1095
|
+
body:
|
1096
|
+
encoding: ASCII-8BIT
|
1097
|
+
string: '{"jsonrpc":"2.0","result":{"previous":"02d9435d7e8cf752eec1d446e2c78ff2d19600f5","timestamp":"2020-10-17T05:03:36","witness":"hinomaru-jp","transaction_merkle_root":"370b47162d0daba13898415489facdcd536e40d9","extensions":[],"witness_signature":"1fd18e1cede4b5e3e3228862351bc47f0d7c20096162fdb8df00051e249a74351d591e935e5bd70fae842232effaef4d4f69bcbe5ba55a3a95a897f934e5f294cd","transactions":[{"ref_block_num":17244,"ref_block_prefix":3557041077,"expiration":"2020-10-17T05:04:32","operations":[["vote",{"voter":"amirhayat","author":"steemisthebest","permlink":"if-2020-was-a-toilet","weight":10000}]],"extensions":[],"signatures":["1f2b510ca5d770b1add801dee9fe719ceede14ec5f23d1fd00f9eb89ca216c61270f75bdb617b5b081490749d09a7fa58ce6877228ce7bf34cbd16d2ac84dd5327"],"transaction_id":"4551675d3e123ac915c7c1c958f4f1f0328dd515","block_num":47792990,"transaction_num":0},{"ref_block_num":17221,"ref_block_prefix":3459037766,"expiration":"2020-10-17T05:13:30","operations":[["vote",{"voter":"happy33","author":"cryptocoinkb","permlink":"coins-with-growing-price-and-volume---10-17-2020","weight":10000}]],"extensions":[],"signatures":["1f111d50d9416157ed3cc636fc8c1964790eb45d9e5b4ea0e8ee40907dc4b9505d6fdde042ee92ca866162eeb11425685a8696d4831b31fc42e8ce8327b8a1aa8d"],"transaction_id":"533c2af3362f1b47cc0df7ffbf6fb1b2badb674a","block_num":47792990,"transaction_num":1},{"ref_block_num":17221,"ref_block_prefix":3459037766,"expiration":"2020-10-17T05:13:30","operations":[["vote",{"voter":"dsc-r2cornell","author":"dianag28","permlink":"16-10-2020-the-diary-game-season-3-or-dia-agotador","weight":3500}]],"extensions":[],"signatures":["20757dafb479de7c5fc654ade5eca8a54a7468574b48de39db755b8d49fa0fbb5e1acb0abb21b22c7f1659384e7f7087a762b922abc2efb66f43d1572850646b6b"],"transaction_id":"2cc593410a5650504a042e7e460e0c360ebde535","block_num":47792990,"transaction_num":2},{"ref_block_num":17242,"ref_block_prefix":2548524753,"expiration":"2020-10-17T05:04:33","operations":[["vote",{"voter":"korsah","author":"creativepingu","permlink":"cityscape-photography-and-art-contest-week-048","weight":8000}]],"extensions":[],"signatures":["20214294428295ca94c671d7c60cc4ae0d19e5760e5e741e0916d4af348f7b89f00273fdeda849d821de170fc0b8ef2da1dc56fd0471cd9dc21608201925ec2a4e"],"transaction_id":"bf8dd52d544d19ac7cd77577b0800f1656c12807","block_num":47792990,"transaction_num":3}],"block_id":"02d9435e1e13ec293ff29710234cfe72c90e6adf","signing_key":"STM5sd6ZM2moJC3ecLZNmKZQQFvEqWS6PE3RvFbeymueTW83TnCuE","transaction_ids":["4551675d3e123ac915c7c1c958f4f1f0328dd515","533c2af3362f1b47cc0df7ffbf6fb1b2badb674a","2cc593410a5650504a042e7e460e0c360ebde535","bf8dd52d544d19ac7cd77577b0800f1656c12807"]},"id":86}'
|
1098
|
+
recorded_at: Sat, 17 Oct 2020 05:03:37 GMT
|
1099
|
+
- request:
|
1100
|
+
method: post
|
1101
|
+
uri: https://api.steemitdev.com/
|
1102
|
+
body:
|
1103
|
+
encoding: UTF-8
|
1104
|
+
string: '{"jsonrpc":"2.0","id":23,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
|
1105
|
+
headers:
|
1106
|
+
Content-Type:
|
1107
|
+
- application/json; charset=utf-8
|
1108
|
+
User-Agent:
|
1109
|
+
- steem-ruby/0.9.5
|
1110
|
+
Accept-Encoding:
|
1111
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1112
|
+
Accept:
|
1113
|
+
- "*/*"
|
1114
|
+
Host:
|
1115
|
+
- api.steemitdev.com
|
1116
|
+
Content-Length:
|
1117
|
+
- '98'
|
1118
|
+
response:
|
1119
|
+
status:
|
1120
|
+
code: 200
|
1121
|
+
message: OK
|
1122
|
+
headers:
|
1123
|
+
Date:
|
1124
|
+
- Fri, 06 Nov 2020 21:13:05 GMT
|
1125
|
+
Content-Type:
|
1126
|
+
- application/json
|
1127
|
+
Transfer-Encoding:
|
1128
|
+
- chunked
|
1129
|
+
Connection:
|
1130
|
+
- keep-alive
|
1131
|
+
Server:
|
1132
|
+
- nginx
|
1133
|
+
X-Jussi-Cache-Hit:
|
1134
|
+
- appbase.condenser_api.get_dynamic_global_properties.params=[]
|
1135
|
+
X-Jussi-Request-Id:
|
1136
|
+
- '000655463793068430'
|
1137
|
+
X-Amzn-Trace-Id:
|
1138
|
+
- Root=1-5fa5bc61-7ccffa5f391718f00111166d
|
1139
|
+
Access-Control-Allow-Origin:
|
1140
|
+
- "*"
|
1141
|
+
Access-Control-Allow-Methods:
|
1142
|
+
- GET, POST, OPTIONS
|
1143
|
+
Access-Control-Allow-Headers:
|
1144
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1145
|
+
Strict-Transport-Security:
|
1146
|
+
- max-age=31557600; includeSubDomains; preload
|
1147
|
+
Content-Security-Policy:
|
1148
|
+
- upgrade-insecure-requests
|
1149
|
+
body:
|
1150
|
+
encoding: ASCII-8BIT
|
1151
|
+
string: '{"id":23,"jsonrpc":"2.0","result":{"head_block_number":48377416,"head_block_id":"02e22e48469ffdef5142ec47acff37f68c3a8c20","time":"2020-11-06T21:13:03","current_witness":"protoss20","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"411949096.633
|
1152
|
+
STEEM","current_supply":"370754191.493 STEEM","confidential_supply":"0.000
|
1153
|
+
STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"5780246.346 SBD","confidential_sbd_supply":"0.000
|
1154
|
+
SBD","total_vesting_fund_steem":"110663791.953 STEEM","total_vesting_shares":"212364483156.332163
|
1155
|
+
VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"688644583.195992
|
1156
|
+
VESTS","pending_rewarded_vesting_steem":"347368.813 STEEM","sbd_interest_rate":0,"sbd_print_rate":0,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48620661,"recent_slots_filled":"340282366920938463463365600228216406015","participation_count":125,"last_irreversible_block_num":48377395,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":19796657,"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.983
|
1157
|
+
SBD","downvote_pool_percent":2500}}'
|
1158
|
+
recorded_at: Fri, 06 Nov 2020 21:13:05 GMT
|
1159
|
+
- request:
|
1160
|
+
method: post
|
1161
|
+
uri: https://api.steemitdev.com/
|
1162
|
+
body:
|
1163
|
+
encoding: UTF-8
|
1164
|
+
string: '{"jsonrpc":"2.0","id":24,"method":"condenser_api.get_block","params":[48377416]}'
|
1165
|
+
headers:
|
1166
|
+
Content-Type:
|
1167
|
+
- application/json; charset=utf-8
|
1168
|
+
User-Agent:
|
1169
|
+
- steem-ruby/0.9.5
|
1170
|
+
Accept-Encoding:
|
1171
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1172
|
+
Accept:
|
1173
|
+
- "*/*"
|
1174
|
+
Host:
|
1175
|
+
- api.steemitdev.com
|
1176
|
+
Content-Length:
|
1177
|
+
- '92'
|
1178
|
+
response:
|
1179
|
+
status:
|
1180
|
+
code: 200
|
1181
|
+
message: OK
|
1182
|
+
headers:
|
1183
|
+
Date:
|
1184
|
+
- Fri, 06 Nov 2020 21:13:05 GMT
|
1185
|
+
Content-Type:
|
1186
|
+
- application/json
|
1187
|
+
Transfer-Encoding:
|
1188
|
+
- chunked
|
1189
|
+
Connection:
|
1190
|
+
- keep-alive
|
1191
|
+
Server:
|
1192
|
+
- nginx
|
1193
|
+
X-Jussi-Request-Id:
|
1194
|
+
- '000022924933705009'
|
1195
|
+
X-Amzn-Trace-Id:
|
1196
|
+
- Root=1-5fa5bc61-2f0d42ec327ae5de7019ffb5
|
1197
|
+
Access-Control-Allow-Origin:
|
1198
|
+
- "*"
|
1199
|
+
Access-Control-Allow-Methods:
|
1200
|
+
- GET, POST, OPTIONS
|
1201
|
+
Access-Control-Allow-Headers:
|
1202
|
+
- DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
|
1203
|
+
Strict-Transport-Security:
|
1204
|
+
- max-age=31557600; includeSubDomains; preload
|
1205
|
+
Content-Security-Policy:
|
1206
|
+
- upgrade-insecure-requests
|
1207
|
+
body:
|
1208
|
+
encoding: ASCII-8BIT
|
1209
|
+
string: '{"jsonrpc":"2.0","result":{"previous":"02e22e474c93dba5df0dcf22cf7e1fe0f732e95b","timestamp":"2020-11-06T21:13:03","witness":"protoss20","transaction_merkle_root":"6377f57054e770b8586c0147bf5fa22ff54f1b97","extensions":[],"witness_signature":"1fa17ff5a446de86b8399b4edef73f1febe5d1e411b6cd27203c97bb92edd06b8646b72c176150b39d811c670032e78af0b9b19248e5b6eca0347d047f6b2e2446","transactions":[{"ref_block_num":11843,"ref_block_prefix":2049947685,"expiration":"2020-11-06T21:13:58","operations":[["vote",{"voter":"hashcash","author":"starwarz","permlink":"us-stocks-wall-st-pauses-as-biden-edges-closer-to-victory---reuters","weight":10000}]],"extensions":[],"signatures":["1f79391e2dd1355fd7924caf53ecc3e030db41fade8de74594d32b2b506b13b7d80a2b57b69b46305fac3ea2e66858237beb07aa7684f61bbb05a16a9663ce722c"],"transaction_id":"46e7dee3d0b303ada453fcf83cae6f6e15890242","block_num":48377416,"transaction_num":0},{"ref_block_num":11826,"ref_block_prefix":2145644949,"expiration":"2020-11-06T21:23:00","operations":[["vote",{"voter":"drlobes","author":"minimalpris","permlink":"20201106t203525963z-post","weight":10000}]],"extensions":[],"signatures":["1f27276b84149bf837082c3a0c52fc081a7e1199211dd1c39aefe8047e1805cc724e9806097fa53273f0b424b97253bcdc4671b3a66ebc8c88222ac38bb372c4a1"],"transaction_id":"0f87cf429d82abab78de252a6674b587958d3377","block_num":48377416,"transaction_num":1}],"block_id":"02e22e48469ffdef5142ec47acff37f68c3a8c20","signing_key":"STM7jx3S2EfdcoAjL8eC9HJunHhifMMSxf12HmEYrrVJZJXGzr8QG","transaction_ids":["46e7dee3d0b303ada453fcf83cae6f6e15890242","0f87cf429d82abab78de252a6674b587958d3377"]},"id":24}'
|
1210
|
+
recorded_at: Fri, 06 Nov 2020 21:13:05 GMT
|
1211
|
+
recorded_with: VCR 6.0.0
|