[Link to pull request](https://github.com/steemit/condenser/pull/2460/commits). This is in some sense a continuation of [my previous post about a small contribution to Steemit](https://steemit.com/utopian-io/@eonwarped/my-first-open-source-contribution-ever), which was rejected as a development contribution, but in my view is a combination of bug hunting and suggestion. But no matter, in this post I am at it again, this time covering the implementation of my suggestion, which I had done over the last weekend. ### Payout Breakdown Knowing how the payout works from the Steem blockchain, I wanted to provide a little more information in the UI to display the breakdown in terms of estimated SBD and STEEM POWER to be received on payout. What I have is not perfect, but a slight improvement over what exists now. 1. For pending payouts and past payouts, it now shows (X SBD, Y SP) below the $Z amount of payout. 2. It takes into account whether or not 50/50 option or 100% SP option was selected. 3. It uses current price feed, so past payouts will not necessarily show the correct amount of SP, but SBD will be correct. 4. Curation and Beneficiaries are not accounted for in pending payouts. That requires a lot more changes to handle properly. Here are two screenshots that show this in action.  This one shows the pending payout change.  This one shows how it looks after payout. ### Change Details A diff can be viewed [here](https://github.com/steemit/condenser/commit/d0181d4bcc554f0417ed9a44c43799f3f5368872). There are two parts to this change. The first is to make the feed price available to the voting component which shows information when you click the payout number. That's in line 525, and actually is ripped out of the [UserWallet.jsx](https://github.com/steemit/condenser/blob/d0181d4bcc554f0417ed9a44c43799f3f5368872/src/app/components/modules/UserWallet.jsx). I will pull this into a common utility soon to promote its reuse next chance I get. The second part is the computation itself. I've walked through this before [here](https://steemit.com/steem/@eonwarped/sbd-printing-code-walkthrough), as well as [here](https://steemit.com/steemit/@eonwarped/a-note-about-payout-numbers), so it was a matter of cranking out the formula, which you'll see on line 279. Another point of note is the percent_steem_dollars parameter, which is 10000 for the 50/50 option and 0 for the 100 SP option. (Percentage multiplied by 100). This can be found out [here](https://github.com/steemit/steem/blob/8cd5f688d75092298bcffaa48a543ed9b01447a6/libraries/chain/include/steemit/chain/comment_object.hpp#L96) and [here](https://github.com/steemit/steem/blob/56c4d8991622541381df4658bae4b90157690bf4/libraries/protocol/include/steemit/protocol/config.hpp#L117). Finally, adding the hint to the card itself is done in line 320 for the pending payout and line 359 for post payout. The way it is done here makes it so it does not need anything placed in all the individual localization files, and is done in a manner consistent with how the display works in the user wallet. ### Testing These changes were tested locally, on my posts as well as a post that was set to 100% power up, and on one that was past payout. ### Appealing the One Commit Rule for Utopian Development Contributions To the utopian moderator: this may be considered as both a suggestion as well as implementation. Keeping in mind rewards that have been given to utopian posts suggesting improvements to the UI about the payouts, as a developer I've also implemented such a thing. Please take that into consideration. Thanks! ### Further Thoughts I'm excited to be able to make this change that I've been thinking about for awhile, and hope it will be available in the next future. It turned out to be much easier than I was thinking it would be. Yes, plenty of other tools show your post breakdowns, but it will be nice to see it quickly by clicking your post amount. I'll see about further improvements that can be made to this as well. I'm also soon to work on a small tutorial to get your own UI deployed to a cloud service like vultr.com, as suggested by @twodollars. Until next time, cheers! ### Updates I did not realize just how fast it got rolled out, and I see posts about it in various places now, and that feels great! Happy to do what I can. <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@eonwarped/adding-post-payout-breakdowns-in-steemit">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | eonwarped | ||||||
---|---|---|---|---|---|---|---|
permlink | adding-post-payout-breakdowns-in-steemit | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":59213335,"name":"condenser","full_name":"steemit/condenser","html_url":"https://github.com/steemit/condenser","fork":false,"owner":{"login":"steemit"}},"pullRequests":[{"url":"https://api.github.com/repos/steemit/condenser/pulls/2460","id":167026847,"html_url":"https://github.com/steemit/condenser/pull/2460","diff_url":"https://github.com/steemit/condenser/pull/2460.diff","patch_url":"https://github.com/steemit/condenser/pull/2460.patch","issue_url":"https://api.github.com/repos/steemit/condenser/issues/2460","number":2460,"state":"closed","locked":false,"title":"Add price feed info and sbd/steem breakdown","user":{"login":"eonwarped","id":34953718,"avatar_url":"https://avatars2.githubusercontent.com/u/34953718?v=4","gravatar_id":"","url":"https://api.github.com/users/eonwarped","html_url":"https://github.com/eonwarped","followers_url":"https://api.github.com/users/eonwarped/followers","following_url":"https://api.github.com/users/eonwarped/following{/other_user}","gists_url":"https://api.github.com/users/eonwarped/gists{/gist_id}","starred_url":"https://api.github.com/users/eonwarped/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eonwarped/subscriptions","organizations_url":"https://api.github.com/users/eonwarped/orgs","repos_url":"https://api.github.com/users/eonwarped/repos","events_url":"https://api.github.com/users/eonwarped/events{/privacy}","received_events_url":"https://api.github.com/users/eonwarped/received_events","type":"User","site_admin":false},"body":"This is to address issue #2429 .\r\n\r\nPreliminary quick hack for adding SBD and STEEM POWER break down, affecting the expanded view for payouts, the \"Pending Payout\" and \"Author Payout\", using the steem price feed. Also takes into account the % SBD setting. But does not take into account beneficiaries or curation.\r\n\r\n- Pending Payout shows SBD and SP breakdown.\r\n- For Author Payout, it is not accurate, as it is should be based on a historical price feed (SBD's portion is accurate, but not SP).\r\n\r\nI'm not even sure this is desirable, so I leave it to people to chat about it.\r\n\r\n(If we do want this: Any suggested locations for adding testing, if necessary?)\r\n\r\nHere are the screenshots\r\n\r\nFor pending payout:\r\n\r\n\r\nFor 100% Power up:\r\n\r\n\r\nAfter payout:\r\n\r\n","created_at":"2018-02-04T19:59:58Z","updated_at":"2018-02-06T18:41:09Z","closed_at":"2018-02-06T18:41:09Z","merged_at":"2018-02-06T18:41:09Z","merge_commit_sha":"1b8a7f9fcb3d27c6f46b1ec8a04c67fcb5562e22","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"milestone":null,"commits_url":"https://api.github.com/repos/steemit/condenser/pulls/2460/commits","review_comments_url":"https://api.github.com/repos/steemit/condenser/pulls/2460/comments","review_comment_url":"https://api.github.com/repos/steemit/condenser/pulls/comments{/number}","comments_url":"https://api.github.com/repos/steemit/condenser/issues/2460/comments","statuses_url":"https://api.github.com/repos/steemit/condenser/statuses/d51f64bec535fc3f865e91e98436e96570be6af6","head":{"label":"eonwarped:patch-1","ref":"patch-1","sha":"d51f64bec535fc3f865e91e98436e96570be6af6","user":{"login":"eonwarped","id":34953718,"avatar_url":"https://avatars2.githubusercontent.com/u/34953718?v=4","gravatar_id":"","url":"https://api.github.com/users/eonwarped","html_url":"https://github.com/eonwarped","followers_url":"https://api.github.com/users/eonwarped/followers","following_url":"https://api.github.com/users/eonwarped/following{/other_user}","gists_url":"https://api.github.com/users/eonwarped/gists{/gist_id}","starred_url":"https://api.github.com/users/eonwarped/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eonwarped/subscriptions","organizations_url":"https://api.github.com/users/eonwarped/orgs","repos_url":"https://api.github.com/users/eonwarped/repos","events_url":"https://api.github.com/users/eonwarped/events{/privacy}","received_events_url":"https://api.github.com/users/eonwarped/received_events","type":"User","site_admin":false},"repo":{"id":117375753,"name":"condenser","full_name":"eonwarped/condenser","owner":{"login":"eonwarped","id":34953718,"avatar_url":"https://avatars2.githubusercontent.com/u/34953718?v=4","gravatar_id":"","url":"https://api.github.com/users/eonwarped","html_url":"https://github.com/eonwarped","followers_url":"https://api.github.com/users/eonwarped/followers","following_url":"https://api.github.com/users/eonwarped/following{/other_user}","gists_url":"https://api.github.com/users/eonwarped/gists{/gist_id}","starred_url":"https://api.github.com/users/eonwarped/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eonwarped/subscriptions","organizations_url":"https://api.github.com/users/eonwarped/orgs","repos_url":"https://api.github.com/users/eonwarped/repos","events_url":"https://api.github.com/users/eonwarped/events{/privacy}","received_events_url":"https://api.github.com/users/eonwarped/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/eonwarped/condenser","description":"The social application web front-end to the Steem Blockchain.","fork":true,"url":"https://api.github.com/repos/eonwarped/condenser","forks_url":"https://api.github.com/repos/eonwarped/condenser/forks","keys_url":"https://api.github.com/repos/eonwarped/condenser/keys{/key_id}","collaborators_url":"https://api.github.com/repos/eonwarped/condenser/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/eonwarped/condenser/teams","hooks_url":"https://api.github.com/repos/eonwarped/condenser/hooks","issue_events_url":"https://api.github.com/repos/eonwarped/condenser/issues/events{/number}","events_url":"https://api.github.com/repos/eonwarped/condenser/events","assignees_url":"https://api.github.com/repos/eonwarped/condenser/assignees{/user}","branches_url":"https://api.github.com/repos/eonwarped/condenser/branches{/branch}","tags_url":"https://api.github.com/repos/eonwarped/condenser/tags","blobs_url":"https://api.github.com/repos/eonwarped/condenser/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/eonwarped/condenser/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/eonwarped/condenser/git/refs{/sha}","trees_url":"https://api.github.com/repos/eonwarped/condenser/git/trees{/sha}","statuses_url":"https://api.github.com/repos/eonwarped/condenser/statuses/{sha}","languages_url":"https://api.github.com/repos/eonwarped/condenser/languages","stargazers_url":"https://api.github.com/repos/eonwarped/condenser/stargazers","contributors_url":"https://api.github.com/repos/eonwarped/condenser/contributors","subscribers_url":"https://api.github.com/repos/eonwarped/condenser/subscribers","subscription_url":"https://api.github.com/repos/eonwarped/condenser/subscription","commits_url":"https://api.github.com/repos/eonwarped/condenser/commits{/sha}","git_commits_url":"https://api.github.com/repos/eonwarped/condenser/git/commits{/sha}","comments_url":"https://api.github.com/repos/eonwarped/condenser/comments{/number}","issue_comment_url":"https://api.github.com/repos/eonwarped/condenser/issues/comments{/number}","contents_url":"https://api.github.com/repos/eonwarped/condenser/contents/{+path}","compare_url":"https://api.github.com/repos/eonwarped/condenser/compare/{base}...{head}","merges_url":"https://api.github.com/repos/eonwarped/condenser/merges","archive_url":"https://api.github.com/repos/eonwarped/condenser/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/eonwarped/condenser/downloads","issues_url":"https://api.github.com/repos/eonwarped/condenser/issues{/number}","pulls_url":"https://api.github.com/repos/eonwarped/condenser/pulls{/number}","milestones_url":"https://api.github.com/repos/eonwarped/condenser/milestones{/number}","notifications_url":"https://api.github.com/repos/eonwarped/condenser/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/eonwarped/condenser/labels{/name}","releases_url":"https://api.github.com/repos/eonwarped/condenser/releases{/id}","deployments_url":"https://api.github.com/repos/eonwarped/condenser/deployments","created_at":"2018-01-13T20:27:03Z","updated_at":"2018-01-13T20:27:06Z","pushed_at":"2018-02-06T18:23:00Z","git_url":"git://github.com/eonwarped/condenser.git","ssh_url":"git@github.com:eonwarped/condenser.git","clone_url":"https://github.com/eonwarped/condenser.git","svn_url":"https://github.com/eonwarped/condenser","homepage":"https://steemit.com","size":9197,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"steemit:master","ref":"master","sha":"1bc763ae82f2b839fa6ffb140ca81da6ce1177de","user":{"login":"steemit","id":17434692,"avatar_url":"https://avatars3.githubusercontent.com/u/17434692?v=4","gravatar_id":"","url":"https://api.github.com/users/steemit","html_url":"https://github.com/steemit","followers_url":"https://api.github.com/users/steemit/followers","following_url":"https://api.github.com/users/steemit/following{/other_user}","gists_url":"https://api.github.com/users/steemit/gists{/gist_id}","starred_url":"https://api.github.com/users/steemit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steemit/subscriptions","organizations_url":"https://api.github.com/users/steemit/orgs","repos_url":"https://api.github.com/users/steemit/repos","events_url":"https://api.github.com/users/steemit/events{/privacy}","received_events_url":"https://api.github.com/users/steemit/received_events","type":"Organization","site_admin":false},"repo":{"id":59213335,"name":"condenser","full_name":"steemit/condenser","owner":{"login":"steemit","id":17434692,"avatar_url":"https://avatars3.githubusercontent.com/u/17434692?v=4","gravatar_id":"","url":"https://api.github.com/users/steemit","html_url":"https://github.com/steemit","followers_url":"https://api.github.com/users/steemit/followers","following_url":"https://api.github.com/users/steemit/following{/other_user}","gists_url":"https://api.github.com/users/steemit/gists{/gist_id}","starred_url":"https://api.github.com/users/steemit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steemit/subscriptions","organizations_url":"https://api.github.com/users/steemit/orgs","repos_url":"https://api.github.com/users/steemit/repos","events_url":"https://api.github.com/users/steemit/events{/privacy}","received_events_url":"https://api.github.com/users/steemit/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/steemit/condenser","description":"The social application web front-end to the Steem Blockchain.","fork":false,"url":"https://api.github.com/repos/steemit/condenser","forks_url":"https://api.github.com/repos/steemit/condenser/forks","keys_url":"https://api.github.com/repos/steemit/condenser/keys{/key_id}","collaborators_url":"https://api.github.com/repos/steemit/condenser/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/steemit/condenser/teams","hooks_url":"https://api.github.com/repos/steemit/condenser/hooks","issue_events_url":"https://api.github.com/repos/steemit/condenser/issues/events{/number}","events_url":"https://api.github.com/repos/steemit/condenser/events","assignees_url":"https://api.github.com/repos/steemit/condenser/assignees{/user}","branches_url":"https://api.github.com/repos/steemit/condenser/branches{/branch}","tags_url":"https://api.github.com/repos/steemit/condenser/tags","blobs_url":"https://api.github.com/repos/steemit/condenser/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/steemit/condenser/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/steemit/condenser/git/refs{/sha}","trees_url":"https://api.github.com/repos/steemit/condenser/git/trees{/sha}","statuses_url":"https://api.github.com/repos/steemit/condenser/statuses/{sha}","languages_url":"https://api.github.com/repos/steemit/condenser/languages","stargazers_url":"https://api.github.com/repos/steemit/condenser/stargazers","contributors_url":"https://api.github.com/repos/steemit/condenser/contributors","subscribers_url":"https://api.github.com/repos/steemit/condenser/subscribers","subscription_url":"https://api.github.com/repos/steemit/condenser/subscription","commits_url":"https://api.github.com/repos/steemit/condenser/commits{/sha}","git_commits_url":"https://api.github.com/repos/steemit/condenser/git/commits{/sha}","comments_url":"https://api.github.com/repos/steemit/condenser/comments{/number}","issue_comment_url":"https://api.github.com/repos/steemit/condenser/issues/comments{/number}","contents_url":"https://api.github.com/repos/steemit/condenser/contents/{+path}","compare_url":"https://api.github.com/repos/steemit/condenser/compare/{base}...{head}","merges_url":"https://api.github.com/repos/steemit/condenser/merges","archive_url":"https://api.github.com/repos/steemit/condenser/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/steemit/condenser/downloads","issues_url":"https://api.github.com/repos/steemit/condenser/issues{/number}","pulls_url":"https://api.github.com/repos/steemit/condenser/pulls{/number}","milestones_url":"https://api.github.com/repos/steemit/condenser/milestones{/number}","notifications_url":"https://api.github.com/repos/steemit/condenser/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/steemit/condenser/labels{/name}","releases_url":"https://api.github.com/repos/steemit/condenser/releases{/id}","deployments_url":"https://api.github.com/repos/steemit/condenser/deployments","created_at":"2016-05-19T14:21:06Z","updated_at":"2018-02-07T07:15:41Z","pushed_at":"2018-02-07T14:19:38Z","git_url":"git://github.com/steemit/condenser.git","ssh_url":"git@github.com:steemit/condenser.git","clone_url":"https://github.com/steemit/condenser.git","svn_url":"https://github.com/steemit/condenser","homepage":"https://steemit.com","size":9702,"stargazers_count":310,"watchers_count":310,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":272,"mirror_url":null,"archived":false,"open_issues_count":318,"license":null,"forks":272,"open_issues":318,"watchers":310,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/steemit/condenser/pulls/2460"},"html":{"href":"https://github.com/steemit/condenser/pull/2460"},"issue":{"href":"https://api.github.com/repos/steemit/condenser/issues/2460"},"comments":{"href":"https://api.github.com/repos/steemit/condenser/issues/2460/comments"},"review_comments":{"href":"https://api.github.com/repos/steemit/condenser/pulls/2460/comments"},"review_comment":{"href":"https://api.github.com/repos/steemit/condenser/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/steemit/condenser/pulls/2460/commits"},"statuses":{"href":"https://api.github.com/repos/steemit/condenser/statuses/d51f64bec535fc3f865e91e98436e96570be6af6"}},"author_association":"CONTRIBUTOR"}],"platform":"github","type":"development","tags":["utopian-io","steemit","steem","condenser"],"users":["eonwarped","twodollars."],"links":["https://github.com/steemit/condenser/pull/2460/commits","https://steemit.com/utopian-io/@eonwarped/my-first-open-source-contribution-ever","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517977864/xllyo1k08uob6irqiaeb.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517978000/qabzqayb0quru5cak1sm.png","https://github.com/steemit/condenser/commit/d0181d4bcc554f0417ed9a44c43799f3f5368872","https://github.com/steemit/condenser/blob/d0181d4bcc554f0417ed9a44c43799f3f5368872/src/app/components/modules/UserWallet.jsx","https://steemit.com/steem/@eonwarped/sbd-printing-code-walkthrough","https://steemit.com/steemit/@eonwarped/a-note-about-payout-numbers","https://github.com/steemit/steem/blob/8cd5f688d75092298bcffaa48a543ed9b01447a6/libraries/chain/include/steemit/chain/comment_object.hpp#L96","https://github.com/steemit/steem/blob/56c4d8991622541381df4658bae4b90157690bf4/libraries/protocol/include/steemit/protocol/config.hpp#L117"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1517977864/xllyo1k08uob6irqiaeb.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517978000/qabzqayb0quru5cak1sm.png"],"moderator":{"account":"ms10398","time":"2018-02-07T14:32:54.474Z","reviewed":true,"pending":false,"flagged":false}}" | ||||||
created | 2018-02-07 14:20:33 | ||||||
last_update | 2018-02-07 22:01:27 | ||||||
depth | 0 | ||||||
children | 37 | ||||||
last_payout | 2018-02-14 14:20:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 118.322 HBD | ||||||
curator_payout_value | 50.119 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4,804 | ||||||
author_reputation | 88,102,208,706,615 | ||||||
root_title | "Adding Post Payout Breakdowns in Steemit" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 35,674,003 | ||||||
net_rshares | 30,545,696,621,601 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bailey0799 | 0 | 770,603,587 | 100% | ||
leoplaw | 0 | 11,215,506,016 | 100% | ||
brobear1995 | 0 | 256,648,132 | 100% | ||
ethandsmith | 0 | 37,017,812,356 | 10% | ||
dickturpin | 0 | 20,527,108,592 | 100% | ||
underground | 0 | 4,148,596,204 | 15% | ||
scrooger | 0 | 114,448,992 | 0.72% | ||
rt395 | 0 | 26,142,878,153 | 20% | ||
mys | 0 | 55,262,027,242 | 100% | ||
devilcat | 0 | 150,633,782 | 100% | ||
codingdefined | 0 | 15,178,701,077 | 50% | ||
ankarlie | 0 | 28,141,168,534 | 100% | ||
blazing | 0 | 331,100,505 | 100% | ||
amymya | 0 | 15,973,325,246 | 59% | ||
themarkymark | 0 | 13,723,985,931 | 50% | ||
krazypoet | 0 | 110,045,118 | 0.02% | ||
cobmaximus | 0 | 8,193,154,877 | 100% | ||
theleapingkoala | 0 | 79,254,691 | 0.55% | ||
enchantedspirit | 0 | 47,377,485,487 | 100% | ||
shawkr13 | 0 | 142,716,922 | 1.1% | ||
scorer | 0 | 308,272,931,723 | 100% | ||
moneyinfant | 0 | 4,993,839,662 | 100% | ||
biasnarrative | 0 | 127,368,789,860 | 33% | ||
darylsid11 | 0 | 184,129,060 | 100% | ||
qurator | 0 | 85,611,868,751 | 2.2% | ||
cryptogecko | 0 | 0 | 100% | ||
fknmayhem | 0 | 6,518,529,418 | 50% | ||
utopian-io | 0 | 29,466,166,206,311 | 23.01% | ||
ihtiht | 0 | 5,942,481,178 | 100% | ||
eonwarped | 0 | 31,736,258,616 | 100% | ||
maverickinvictus | 0 | 5,564,011,388 | 15% | ||
dawnsheree | 0 | 1,780,871,574 | 100% | ||
camendes70 | 0 | 6,130,214,525 | 100% | ||
curtis3388 | 0 | 613,687,816 | 100% | ||
evilest-fiend | 0 | 1,821,972,695 | 100% | ||
skycae | 0 | 332,778,540 | 0.11% | ||
aaronlab | 0 | 1,009,246,807 | 100% | ||
donfelix | 0 | 827,350,795 | 100% | ||
snowydunes | 0 | 614,860,000 | 100% | ||
ikramellahi | 0 | 603,853,873 | 100% | ||
shinyforest | 0 | 8,509,873,924 | 100% | ||
emptyname | 0 | 4,997,993,230 | 100% | ||
phgnomo | 0 | 2,025,702,721 | 100% | ||
spiritualmax | 0 | 83,474,897,393 | 100% | ||
devilonwheels | 0 | 66,242,291 | 0.11% | ||
shakeelptc1234 | 0 | 991,803,374 | 100% | ||
tanishqyeverma | 0 | 3,746,874,331 | 100% | ||
anjkara | 0 | 29,352,664,396 | 70% | ||
thesteemengine | 0 | 6,280,229,797 | 5% | ||
lunaticpandora | 0 | 740,614,596 | 100% | ||
entrepreneur916 | 0 | 90,515,882 | 0.55% | ||
cadawg | 0 | 55,295,508 | 2.75% | ||
cryptosharon | 0 | 1,087,003,267 | 60% | ||
benleemusic | 0 | 1,620,695,440 | 5% | ||
bozz | 0 | 741,780,609 | 100% | ||
steemnova | 0 | 2,947,000,465 | 50% | ||
mrix | 0 | 476,335,192 | 100% | ||
minnowbootcamp | 0 | 57,048,451,970 | 100% | ||
sanzo0622 | 0 | 168,975,142 | 100% | ||
grayhaunds | 0 | 58,373,308 | 100% | ||
jhonsel | 0 | 159,757,867 | 100% | ||
asterkusener | 0 | 104,456,862 | 100% |
Fantasic work Evan, this will be a super nifty tool! Keep it up bud, you're amazing :)
author | amymya |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t144931261z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-07 14:49:33 |
last_update | 2018-02-07 14:49:33 |
depth | 1 |
children | 1 |
last_payout | 2018-02-14 14:49:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 8,399,372,759,280 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,679,998 |
net_rshares | 3,954,304,161 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
underground | 0 | 1,991,326,178 | 7% | ||
eonwarped | 0 | 1,962,977,983 | 6% |
Thanks!
author | eonwarped |
---|---|
permlink | re-amymya-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t141018654z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:10:18 |
last_update | 2018-02-08 14:10:18 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:10:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,924,708 |
net_rshares | 0 |
This is great, Eon. You're always working towards improvement (not just of yourself but of your communities in which you're involved). You're a real asset to Steemit and it's about time they noticed. Kudos. Cheers Anj xx PS Get the ale in :D
author | anjkara |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t122915425z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 12:29:15 |
last_update | 2018-02-08 12:29:15 |
depth | 1 |
children | 1 |
last_payout | 2018-02-15 12:29:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 243 |
author_reputation | 2,670,835,568,240 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,905,926 |
net_rshares | 2,562,555,043 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 2,562,555,043 | 8% |
Cheers! And thanks!
author | eonwarped |
---|---|
permlink | re-anjkara-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t141350721z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:13:51 |
last_update | 2018-02-08 14:13:51 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:13:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,925,442 |
net_rshares | 1,880,991,580 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anjkara | 0 | 1,880,991,580 | 5% |
This is really a cool feature added very useful to track real time earnings :)
author | blazing |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t171151926z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-07 17:11:54 |
last_update | 2018-02-07 17:11:54 |
depth | 1 |
children | 1 |
last_payout | 2018-02-14 17:11:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 117,662,220,860,076 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,707,415 |
net_rshares | 1,962,977,983 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,962,977,983 | 6% |
Thanks!
author | eonwarped |
---|---|
permlink | re-blazing-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t141856134z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:18:57 |
last_update | 2018-02-08 14:18:57 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:18:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,926,506 |
net_rshares | 0 |
This is very cool. It looks like you have put a lot of time and thought into it. Great job in working to bring this to the platform! -@bozz
author | bozz |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t013905506z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["bozz"],"app":"steemit/0.1"} |
created | 2018-02-08 01:39:06 |
last_update | 2018-02-08 01:39:06 |
depth | 1 |
children | 1 |
last_payout | 2018-02-15 01:39:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 139 |
author_reputation | 2,264,402,323,322,477 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,795,315 |
net_rshares | 1,774,076,568 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,774,076,568 | 5% |
It definitely was a fun task though. Happy it worked!
author | eonwarped |
---|---|
permlink | re-bozz-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t142019185z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:20:21 |
last_update | 2018-02-08 14:20:21 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:20:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,926,788 |
net_rshares | 0 |
Thanks a lot for your contribution! It is really great.
author | brobear1995 |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180213t050211022z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-13 05:02:09 |
last_update | 2018-02-13 05:02:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-20 05:02:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 375,510,956,568 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,117,727 |
net_rshares | 0 |
Awesome work @eonwarped, this is agreat way for minnows to understand faster how the payout works, well even for people not so minnow ha, awesome awesome work, love it!
author | cobmaximus |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t031032346z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["eonwarped"],"app":"steemit/0.1"} |
created | 2018-02-08 03:10:33 |
last_update | 2018-02-08 03:10:33 |
depth | 1 |
children | 2 |
last_payout | 2018-02-15 03:10:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 6,257,073,410,244 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,811,254 |
net_rshares | 1,971,196,187 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,971,196,187 | 6% |
I hope it helps just a little. I expect there still to be confusion though. Thanks!
author | eonwarped |
---|---|
permlink | re-cobmaximus-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t141533950z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:15:33 |
last_update | 2018-02-08 14:15:33 |
depth | 2 |
children | 1 |
last_payout | 2018-02-15 14:15:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,925,836 |
net_rshares | 0 |
yeah, but this things does help a lot, I'm sure you'll come up with bigger and better ideas :D
author | cobmaximus |
---|---|
permlink | re-eonwarped-re-cobmaximus-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180209t020016975z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-09 02:00:18 |
last_update | 2018-02-09 02:00:18 |
depth | 3 |
children | 0 |
last_payout | 2018-02-16 02:00:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 6,257,073,410,244 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,050,286 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pexea12 | 0 | 0 | 100% | ||
dzungmrf | 0 | 0 | 100% |
Great post! I am a good member but i dont get alot authors and curcators money how do i get them? i post everyday couple of messages i bought steem power alot more!
author | cryptobrunkey |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t052118967z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 05:21:18 |
last_update | 2018-02-08 05:21:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 05:21:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | -100,155,640,443 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,833,759 |
net_rshares | 788,478,474 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 788,478,474 | 2% |
Thanks for your contribution Evan. This is a great help to the community and I'm proud that someone I know did it..hahahahah
author | dawnsheree |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t174157847z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-07 17:42:00 |
last_update | 2018-02-07 17:42:00 |
depth | 1 |
children | 1 |
last_payout | 2018-02-14 17:42:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 4,834,455,235,447 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,713,106 |
net_rshares | 1,962,977,983 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,962,977,983 | 6% |
Thanks :)
author | eonwarped |
---|---|
permlink | re-dawnsheree-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t141715288z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:17:15 |
last_update | 2018-02-08 14:17:15 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:17:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,926,192 |
net_rshares | 0 |
Amazing feature and it is already integrated for all. Well done. Are you working with the Steemit inc developer team?
author | flauwy |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t181522038z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-07 18:15:24 |
last_update | 2018-02-07 18:15:24 |
depth | 1 |
children | 1 |
last_payout | 2018-02-14 18:15:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 296,259,911,900,510 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,719,389 |
net_rshares | 2,159,275,781 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 2,159,275,781 | 6% |
I am not, this was just kind of playing around with the website for myself. Thanks!
author | eonwarped |
---|---|
permlink | re-flauwy-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t185020237z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-07 18:50:21 |
last_update | 2018-02-07 18:50:21 |
depth | 2 |
children | 0 |
last_payout | 2018-02-14 18:50:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,725,748 |
net_rshares | 0 |
Thanky for the mod on the payouts! Upvoted. =)
author | leoplaw |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180213t185347923z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-13 18:53:36 |
last_update | 2018-02-13 18:53:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-20 18:53:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 189,628,210,789,149 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,279,480 |
net_rshares | 0 |
Nice job! I started noticing the change earlier today, great feature!
author | lunaticpandora | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eonwarped-201827t144027469z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","steemit","steem","condenser"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-07 18:40:30 | ||||||
last_update | 2018-02-07 18:40:30 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-02-14 18:40:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 69 | ||||||
author_reputation | 103,012,459,262,850 | ||||||
root_title | "Adding Post Payout Breakdowns in Steemit" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 35,723,921 | ||||||
net_rshares | 981,488,991 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 981,488,991 | 3% |
Thanks!
author | eonwarped |
---|---|
permlink | re-lunaticpandora-re-eonwarped-201827t144027469z-20180208t142307894z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:23:27 |
last_update | 2018-02-08 14:23:27 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:23:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,927,375 |
net_rshares | 0 |
Excellent work Eon!
author | maverickinvictus |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t150246809z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-07 15:04:27 |
last_update | 2018-02-07 15:04:27 |
depth | 1 |
children | 1 |
last_payout | 2018-02-14 15:04:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 49,890,876,340,190 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,682,851 |
net_rshares | 3,954,304,161 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
underground | 0 | 1,991,326,178 | 7% | ||
eonwarped | 0 | 1,962,977,983 | 6% |
Thanks!
author | eonwarped |
---|---|
permlink | re-maverickinvictus-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t140946917z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:09:48 |
last_update | 2018-02-08 14:09:48 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:09:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,924,605 |
net_rshares | 0 |
That's a very nice upgrade to the post payout UI. Thanks for your work!
author | moneyinfant |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t144225722z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-07 14:42:24 |
last_update | 2018-02-07 14:42:24 |
depth | 1 |
children | 1 |
last_payout | 2018-02-14 14:42:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 3,314,768,419,669 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,678,606 |
net_rshares | 3,954,304,161 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
underground | 0 | 1,991,326,178 | 7% | ||
eonwarped | 0 | 1,962,977,983 | 6% |
You are welcome :)
author | eonwarped |
---|---|
permlink | re-moneyinfant-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t141039909z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:10:39 |
last_update | 2018-02-08 14:10:39 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:10:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,924,781 |
net_rshares | 0 |
Thanks a ton! Really awesome future! Keep this work going! :)
author | mrix |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t010729975z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 01:07:30 |
last_update | 2018-02-08 01:07:30 |
depth | 1 |
children | 2 |
last_payout | 2018-02-15 01:07:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 1,406,303,663,845 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,790,263 |
net_rshares | 788,478,474 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 788,478,474 | 2% |
Will do!
author | eonwarped |
---|---|
permlink | re-mrix-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t142512452z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:26:24 |
last_update | 2018-02-08 14:26:24 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:26:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,927,966 |
net_rshares | 0 |
Will do!
author | eonwarped |
---|---|
permlink | re-mrix-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t142553614z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:25:54 |
last_update | 2018-02-08 14:25:54 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:25:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,927,863 |
net_rshares | 0 |
Thank you for the contribution. It has been approved. You can contact us on [Discord](https://discord.gg/uTyJkNm). **[[utopian-moderator]](https://utopian.io/moderators)**
author | ms10398 |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t143403677z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-07 14:34:21 |
last_update | 2018-02-07 14:34:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 14:34:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 27,572,487,973,390 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,676,888 |
net_rshares | 0 |
Great work brother and this change will make Steemit payments estimation very easy for newbies like us!
author | shahidshah |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t192334988z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-07 19:23:45 |
last_update | 2018-02-07 19:23:45 |
depth | 1 |
children | 1 |
last_payout | 2018-02-14 19:23:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 1,458,023,299,104 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,731,850 |
net_rshares | 1,379,837,331 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,379,837,331 | 4% |
Yes indeed. Thanks!
author | eonwarped |
---|---|
permlink | re-shahidshah-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t142203533z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:22:03 |
last_update | 2018-02-08 14:22:03 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:22:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,927,126 |
net_rshares | 0 |
YOU - IS - ROCKSTAR! Really mate, you're one of the GREATEST guys I ever met in Steem and outside of it. I hope I can count on your friendship for years to come! Cheers
author | spiritualmax |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t014536749z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 01:45:36 |
last_update | 2018-02-08 01:45:36 |
depth | 1 |
children | 1 |
last_payout | 2018-02-15 01:45:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 25,078,515,289,162 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,796,433 |
net_rshares | 2,956,794,281 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 2,956,794,281 | 9% |
Likewise! I just need an electric guitar now.
author | eonwarped |
---|---|
permlink | re-spiritualmax-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t141130676z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:11:30 |
last_update | 2018-02-08 14:11:30 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:11:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,924,960 |
net_rshares | 0 |
Great job :) Congrats on your first acceptance!!!
author | svkrulze |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t174111101z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-07 17:41:15 |
last_update | 2018-02-07 17:41:15 |
depth | 1 |
children | 1 |
last_payout | 2018-02-14 17:41:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 1,072,950,790,902 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,712,943 |
net_rshares | 1,962,977,983 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,962,977,983 | 6% |
Thanks!
author | eonwarped |
---|---|
permlink | re-svkrulze-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t141803242z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:18:03 |
last_update | 2018-02-08 14:18:03 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:18:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,926,342 |
net_rshares | 0 |
Nice Work! Da BOT will up-vote this post if you make a minor edit after the timer expires, it is 'daily" so I am thinking 24 hours. So glad to be in the same Gang with you Bud! U ROCK!
author | underground |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180207t164406557z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-07 16:44:09 |
last_update | 2018-02-07 16:44:09 |
depth | 1 |
children | 1 |
last_payout | 2018-02-14 16:44:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 186 |
author_reputation | 55,438,677,797,302 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,702,254 |
net_rshares | 1,962,977,983 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 1,962,977,983 | 6% |
Me too! Thanks!
author | eonwarped |
---|---|
permlink | re-underground-re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t141946091z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-08 14:19:45 |
last_update | 2018-02-08 14:19:45 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 14:19:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 88,102,208,706,615 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,926,672 |
net_rshares | 0 |
### Hey @eonwarped I am @utopian-io. I have just upvoted you! #### Achievements - You have less than 500 followers. Just gave you a gift to help you succeed! - This is your first accepted contribution here in Utopian. Welcome! #### Community-Driven Witness! I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER! - <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a> - Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a> [](https://steemit.com/~witnesses) **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-eonwarped-adding-post-payout-breakdowns-in-steemit-20180208t001145380z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-08 00:11:45 |
last_update | 2018-02-08 00:11:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 00:11:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,104 |
author_reputation | 152,955,367,999,756 |
root_title | "Adding Post Payout Breakdowns in Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,780,912 |
net_rshares | 7,884,784,749 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eonwarped | 0 | 7,884,784,749 | 25% |