steemgg / steemgg-website

The Official Web Site of steemgg
https://steemgg.com
MIT License
5 stars 2 forks source link

需要新增一个API和UI功能 - claim reward #217

Open bobdos opened 6 years ago

bobdos commented 6 years ago

由于帖子赚的钱,不会直接成为可以使用的 sbd, steem, sp。

需要用户自己claim reward之后,才能使用

因此需要:

bonjovis commented 6 years ago

后台已经在开发环境添加对应API,接口详情请看wikiapi 文档 @nosus

nosus commented 6 years ago

好 @bonjovis

nosus commented 6 years ago

@bonjovis 我看有个API是去claim award,但当前用户的“sbd, steem, sp” 这些信息客户端从哪里拿?

bobdos commented 6 years ago

@nosus

用户当前所拥有的 sbd, steem sp通过steemjs api:

steem.api.getAccounts(names, function(err, result) { console.log(err, result); });

比如: steem.api.getAccounts(["steemgg"], function(err, result) { console.log(err, result); });

在线参考实例:

https://api.steemjs.com/get_accounts?names=["steemgg"]

image

得到如下信息,其中也包括了用户的头像等各种信息:

"balance": "5.224 STEEM", //拥有的steem数量 "savings_balance": "0.000 STEEM",// savings的steem数量 "savings_sbd_balance": "0.000 SBD",//savings的sbd数量 "sbd_balance": "0.006 SBD", // sbd的数量 "vesting_shares": "7349.824737 VESTS", //steem power (sp)的数量,以vest显示(转换公式见下面) "reward_sbd_balance": "10.009 SBD",//还未claim的sbd数量 "reward_steem_balance": "256.465 STEEM",//还未claim的steem数量 "reward_vesting_balance": "547822.080949 VESTS",//还未claim的sp数量,以vest显示(转换公式见下面) "reward_vesting_steem": "270.429 STEEM",//还未claim的sp数量,以steem显示(所以可以忽略上面的“还未claim的sp数量,以vest显示”,因为547822.080949 VESTS转换过来就是270.429 STEEM) "profile_image\":\"https://i.imgur.com/0UF8m1J.png\"


Vest To Steem转换公式 var steemPower = steem.formatter.vestToSteem(vestingShares, totalVestingShares, totalVestingFundSteem); console.log(steemPower);

在线转换工具: http://www.steemdollar.com/vests.php

查询totalVestingShares和totalVestingFundSteem 在 https://steemd.com

参考response ··· [ { "id": 815090, "name": "steemgg", "owner": { "weight_threshold": 1, "account_auths": [], "key_auths": [ [ "STM8bAwU6RUK55B4Vce18sePq6qxhvTDACkpEpEqMBHn185Zz5cm7", 1 ] ] }, "active": { "weight_threshold": 1, "account_auths": [], "key_auths": [ [ "STM8b7ona6dLHE6vXCNTDFC2E8EjeQdfFh9ZAy2ztV3Y9m3nutJ8h", 1 ] ] }, "posting": { "weight_threshold": 1, "account_auths": [], "key_auths": [ [ "STM4uRnyhTFNqJQxCK87BfDiXudjmLbwvebRgHb7Va9izAj8A5VSv", 1 ] ] }, "memo_key": "STM6dBtK9YnbUmBD7KMSJ9GuAKBYe9hSL8Kk7ti6PVsfsZkxrSEa3", "json_metadata": "{\"profile\":{\"profile_image\":\"https://i.imgur.com/lR2QwsC.png\"}}", "proxy": "", "last_owner_update": "1970-01-01T00:00:00", "last_account_update": "2018-08-03T09:38:18", "created": "2018-03-06T11:29:30", "mined": false, "recovery_account": "bobdos", "last_account_recovery": "1970-01-01T00:00:00", "reset_account": "null", "comment_count": 0, "lifetime_vote_count": 0, "post_count": 31, "can_vote": true, "voting_power": 9411, "last_vote_time": "2018-08-14T11:43:39", "balance": "5.224 STEEM", "savings_balance": "0.000 STEEM", "sbd_balance": "0.006 SBD", "sbd_seconds": "1595985", "sbd_seconds_last_update": "2018-08-09T09:36:15", "sbd_last_interest_payment": "2018-08-04T11:03:51", "savings_sbd_balance": "0.000 SBD", "savings_sbd_seconds": "0", "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_withdraw_requests": 0, "reward_sbd_balance": "10.009 SBD", "reward_steem_balance": "256.465 STEEM", "reward_vesting_balance": "547822.080949 VESTS", "reward_vesting_steem": "270.429 STEEM", "vesting_shares": "7349.824737 VESTS", "delegated_vesting_shares": "0.000000 VESTS", "received_vesting_shares": "16213605.055213 VESTS", "vesting_withdraw_rate": "0.000000 VESTS", "next_vesting_withdrawal": "1969-12-31T23:59:59", "withdrawn": 0, "to_withdraw": 0, "withdraw_routes": 0, "curation_rewards": 1986, "posting_rewards": 530492, "proxied_vsf_votes": [ 0, 0, 0, 0 ], "witnesses_voted_for": 0, "last_post": "2018-08-10T03:40:39", "last_root_post": "2018-08-09T08:33:03", "average_bandwidth": "12858184927", "lifetime_bandwidth": "59081000000", "last_bandwidth_update": "2018-08-14T11:43:39", "average_market_bandwidth": 0, "lifetime_market_bandwidth": 0, "last_market_bandwidth_update": "1970-01-01T00:00:00", "vesting_balance": "0.000 STEEM", "reputation": "7521416877665", "transfer_history": [], "market_history": [], "post_history": [], "vote_history": [], "other_history": [], "witness_votes": [], "tags_usage": [], "guest_bloggers": [] } ]