Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes by firedream

View this thread on steempeak.com
· @firedream · (edited)
$151.83
Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes
## New Features added to Steem Bot Analysis

[SteemBotAnalysis](https://fdsteemtools.neocities.org/botanalysis.html) is a tool developed to analyze :
* How old are the posts at the date of upvote
* According to the chosen bots
* According to the chosen date

### Features added
* #### Before 
The % upvote and SBD pay-out of the bid-bots were not shown.

* #### After
% Upvote field added to see which post have been voted with what % of the bid-bot

![image.png](https://cdn.utopian.io/posts/28c153d2203fc040bda213eb0de398a81c8bimage.png)

SBD pay-out of the bid-bot also shown to see how much upvote in SBD the post have taken.

![image.png](https://cdn.utopian.io/posts/965e1a38e3b537d25218e14c660418d623f3image.png)

### Implementation of the changes
* #### Finding the voting percent

Geting the result from the steem.js API call, the percentages are taken from the result array and written in the div.

```
for (let i = 0; i < all_votes.length; i++) {
          var all_voters = all_votes[i].voter;
          if (all_voters == voter) {
            document.getElementById('vote_Weight').innerHTML = document.getElementById('vote_Weight').innerHTML + " % " + (all_votes[i].percent / 100) + "<br />";
``` 
* #### Finding the SBD value of the vote

Global properties, current feed price and current reward status are taken with below function.
```
function calc_global() {
      steem.api.getDynamicGlobalProperties(function(err, result) {        
        steem.api.getFeedHistory(function(err, result2) {
          console.log(err, result2);
          steem.api.getRewardFund('post', function(err, result3) {
            console.log(err, result3);
            var reward_balance = parseFloat(result3.reward_balance.split(" ")[0]);
            var recent_claims = parseFloat(result3.recent_claims);
            var steem_reward_per_vest = (reward_balance / recent_claims);
            calculate_steempov(result, result2, steem_reward_per_vest);

          });
        });
      });
    }
```
Based on the results of the first function, the SBD power of the current bot at %100 power is calculated with below function.
```
function calculate_steempov(globals, feed_price, rpv) {
      total_vesting_shares = globals.total_vesting_shares;
      total_vesting_fund_steem = globals.total_vesting_fund_steem;
      feed = feed_price;    
      steem.api.getAccounts([voter], function(err, response) {
        vesting_shares = parseFloat(response[0].vesting_shares.split(' ')[0]);
        delegated_vesting_shares = parseFloat(response[0].delegated_vesting_shares.split(' ')[0]);
        received_vesting_shares = parseFloat(response[0].received_vesting_shares.split(' ')[0]);
        steem_power = (vesting_shares + received_vesting_shares - delegated_vesting_shares);            
        var feed_arr = feed_price.current_median_history.base;
        feed = feed_arr.split(" ")[0];
        max_sbd = (rpv * steem_power * 0.2) * feed * 100000;
      });
    }
```
variable max_sbd stores the SBD of the bot at %100 voting power.

* #### Calculating the SBD of the post
```
 var sbd_pay = (all_votes[i].percent / 100) * max_sbd;
            document.getElementById('vote_sbd').innerHTML = document.getElementById('vote_sbd').innerHTML + (sbd_pay / 100).toFixed(2) + " SBD" + "<br />";
```
sbd_pay is found multiplying max_sbd with percent vote.

### Links
Steem Bot Analysis : https://fdsteemtools.neocities.org/botanalysis.html
GitHub : https://github.com/firedreamgames/steembotanalysis

### Contact
* @FireDream - Steemit
* @firedream#3528 - Discord

### Proof of Work

![image.png](https://cdn.utopian.io/posts/c6c9e8728b10254a74775f4888dfe10a7c05image.png)


<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@firedream/sbd-and-upvote-view-of-bot-upvotes">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
post_id45,067,833
authorfiredream
permlinksbd-and-upvote-view-of-bot-upvotes
categoryutopian-io
json_metadata"{"staff_pick": null, "platform": "github", "config": {"questions": [{"question": "How would you describe the formatting, language and overall presentation of the post?", "answers": [{"answer": "The quality of the post is fantastic.", "value": 10, "answer_id": "dev-1-a-1"}, {"answer": "The post is of very good quality. ", "value": 8, "answer_id": "dev-1-a-2"}, {"answer": "The post is poorly written and/or formatted, but readable.", "value": 3, "answer_id": "dev-1-a-3"}, {"answer": "The post is really hard to read and the content is barely understandable.", "value": 0, "answer_id": "dev-1-a-4"}], "question_id": "dev-1"}, {"question": "How would you rate the impact and significance of the contribution to the project and/or open source ecosystem in terms of uniqueness, usefulness and potential future applications?", "answers": [{"answer": "This contribution adds high value and holds great significance for the project and/or open source ecosystem.", "value": 35, "answer_id": "dev-2-a-1"}, {"answer": "This contribution adds some value to the project and/or open source ecosystem. ", "value": 28, "answer_id": "dev-2-a-2"}, {"answer": "This contribution adds some value to the project and/or open source ecosystem.", "value": 17.5, "answer_id": "dev-2-a-3"}, {"answer": "This contribution hold no value and is insignificant in impact. ", "value": 0, "answer_id": "dev-2-a-4"}], "question_id": "dev-2"}, {"question": "How would you rate the total volume of work invested into this contribution?", "answers": [{"answer": "This contribution appears to have demanded a lot of intensive work.", "value": 20, "answer_id": "dev-3-a-1"}, {"answer": "This contribution appears to have required an average volume of work.", "value": 14, "answer_id": "dev-3-a-2"}, {"answer": "This contribution shows some work done.", "value": 6, "answer_id": "dev-3-a-3"}, {"answer": "This contribution shows no work done.", "value": 0, "answer_id": "dev-3-a-4"}], "question_id": "dev-3"}, {"question": "How would you rate the quality of the code submitted?", "answers": [{"answer": "High - it follows all best practices. ", "value": 20, "answer_id": "dev-4-a-1"}, {"answer": "Average - it follows most best practices.", "value": 14, "answer_id": "dev-4-a-2"}, {"answer": "Low - it follows some best practices.", "value": 6, "answer_id": "dev-4-a-3"}, {"answer": "Very low - it doesn't follow any best practices. ", "value": 0, "answer_id": "dev-4-a-4"}], "question_id": "dev-4"}, {"question": "How would you rate the knowledge and expertise necessary to fix the bug / implement the added feature(s)?", "answers": [{"answer": "High - a lot of research and specific knowledge was required.", "value": 7.5, "answer_id": "dev-5-a-1"}, {"answer": "Average - some research and knowledge was required.", "value": 5.25, "answer_id": "dev-5-a-2"}, {"answer": "Low - not much knowledge or skill were required.", "value": 2.25, "answer_id": "dev-5-a-3"}, {"answer": "Insignificant - no knowledge or skills were necessary.", "value": 0, "answer_id": "dev-5-a-4"}], "question_id": "dev-5"}, {"question": "How would you rate the accuracy and readability of the commit messages?", "answers": [{"answer": "High - they are concise, descriptive and consistent. ", "value": 2.5, "answer_id": "dev-6-a-1"}, {"answer": "Average - they are mostly concise, descriptive and consistent. ", "value": 2, "answer_id": "dev-6-a-2"}, {"answer": "Low - they could be more concise, descriptive or consistent.", "value": 0.75, "answer_id": "dev-6-a-3"}, {"answer": "Very low - they aren't concise, descriptive or consistent at all.", "value": 0, "answer_id": "dev-6-a-4"}], "question_id": "dev-6"}, {"question": "How do you rate the quality of the comments in the code?", "answers": [{"answer": "High - everything is well-commented and adds to the readability of the code. ", "value": 5, "answer_id": "dev-7-a-1"}, {"answer": "Average - most of the code is commented and most if it adds to the readability of the code.", "value": 3, "answer_id": "dev-7-a-2"}, {"answer": "Low - little of the code is commented, but it still adds to the readability.", "value": 1.5, "answer_id": "dev-7-a-3"}, {"answer": "Very low - the added comments provide no value or are not present at all.", "value": 0, "answer_id": "dev-7-a-4"}], "question_id": "dev-7"}]}, "pullRequests": [{"requested_teams": [], "url": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls/4", "title": "Sbd addition", "closed_at": "2018-04-23T20:48:12Z", "number": 4, "assignees": [], "assignee": null, "review_comment_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls/comments{/number}", "merge_commit_sha": "6fbea100dca0ec0116326a2f215a3d64862d55d9", "issue_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues/4", "locked": false, "id": 183553020, "comments_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues/4/comments", "author_association": "OWNER", "body": "", "created_at": "2018-04-23T20:48:03Z", "_links": {"comments": {"href": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues/4/comments"}, "html": {"href": "https://github.com/firedreamgames/steembotanalysis/pull/4"}, "review_comment": {"href": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls/comments{/number}"}, "statuses": {"href": "https://api.github.com/repos/firedreamgames/steembotanalysis/statuses/3496374f7ed46557f0edc707f8644b0ddcc818fe"}, "review_comments": {"href": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls/4/comments"}, "issue": {"href": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues/4"}, "commits": {"href": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls/4/commits"}, "self": {"href": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls/4"}}, "patch_url": "https://github.com/firedreamgames/steembotanalysis/pull/4.patch", "requested_reviewers": [], "merged_at": "2018-04-23T20:48:12Z", "base": {"user": {"following_url": "https://api.github.com/users/firedreamgames/following{/other_user}", "url": "https://api.github.com/users/firedreamgames", "site_admin": false, "type": "User", "html_url": "https://github.com/firedreamgames", "starred_url": "https://api.github.com/users/firedreamgames/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/firedreamgames/followers", "organizations_url": "https://api.github.com/users/firedreamgames/orgs", "avatar_url": "https://avatars1.githubusercontent.com/u/34807351?v=4", "repos_url": "https://api.github.com/users/firedreamgames/repos", "id": 34807351, "events_url": "https://api.github.com/users/firedreamgames/events{/privacy}", "gravatar_id": "", "login": "firedreamgames", "subscriptions_url": "https://api.github.com/users/firedreamgames/subscriptions", "received_events_url": "https://api.github.com/users/firedreamgames/received_events", "gists_url": "https://api.github.com/users/firedreamgames/gists{/gist_id}"}, "ref": "master", "repo": {"assignees_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/assignees{/user}", "language": "HTML", "url": "https://api.github.com/repos/firedreamgames/steembotanalysis", "merges_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/merges", "has_wiki": true, "default_branch": "master", "commits_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/commits{/sha}", "watchers_count": 0, "license": {"spdx_id": "MIT", "key": "mit", "name": "MIT License", "url": "https://api.github.com/licenses/mit"}, "downloads_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/downloads", "homepage": null, "id": 117599563, "created_at": "2018-01-15T21:55:09Z", "labels_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/labels{/name}", "name": "steembotanalysis", "archive_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/{archive_format}{/ref}", "stargazers_count": 0, "has_projects": true, "private": false, "pushed_at": "2018-04-23T20:48:12Z", "deployments_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/deployments", "forks_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/forks", "ssh_url": "git@github.com:firedreamgames/steembotanalysis.git", "languages_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/languages", "issues_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues{/number}", "keys_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/keys{/key_id}", "git_commits_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/commits{/sha}", "statuses_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/statuses/{sha}", "subscribers_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/subscribers", "issue_comment_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues/comments{/number}", "updated_at": "2018-04-23T20:48:13Z", "has_issues": true, "releases_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/releases{/id}", "git_refs_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/refs{/sha}", "pulls_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls{/number}", "hooks_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/hooks", "subscription_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/subscription", "blobs_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/blobs{/sha}", "contents_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/contents/{+path}", "collaborators_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/collaborators{/collaborator}", "events_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/events", "forks_count": 1, "owner": {"following_url": "https://api.github.com/users/firedreamgames/following{/other_user}", "url": "https://api.github.com/users/firedreamgames", "site_admin": false, "type": "User", "html_url": "https://github.com/firedreamgames", "starred_url": "https://api.github.com/users/firedreamgames/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/firedreamgames/followers", "organizations_url": "https://api.github.com/users/firedreamgames/orgs", "avatar_url": "https://avatars1.githubusercontent.com/u/34807351?v=4", "repos_url": "https://api.github.com/users/firedreamgames/repos", "id": 34807351, "events_url": "https://api.github.com/users/firedreamgames/events{/privacy}", "gravatar_id": "", "login": "firedreamgames", "subscriptions_url": "https://api.github.com/users/firedreamgames/subscriptions", "received_events_url": "https://api.github.com/users/firedreamgames/received_events", "gists_url": "https://api.github.com/users/firedreamgames/gists{/gist_id}"}, "html_url": "https://github.com/firedreamgames/steembotanalysis", "tags_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/tags", "description": "Steem.js application to analyse the time difference between upvote time of the bots vs posting time.", "teams_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/teams", "forks": 1, "archived": false, "git_tags_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/tags{/sha}", "mirror_url": null, "comments_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/comments{/number}", "fork": false, "branches_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/branches{/branch}", "milestones_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/milestones{/number}", "clone_url": "https://github.com/firedreamgames/steembotanalysis.git", "full_name": "firedreamgames/steembotanalysis", "open_issues_count": 0, "trees_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/trees{/sha}", "has_pages": false, "git_url": "git://github.com/firedreamgames/steembotanalysis.git", "issue_events_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues/events{/number}", "has_downloads": true, "stargazers_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/stargazers", "svn_url": "https://github.com/firedreamgames/steembotanalysis", "open_issues": 0, "watchers": 0, "contributors_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/contributors", "size": 25, "notifications_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/notifications{?since,all,participating}", "compare_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/compare/{base}...{head}"}, "sha": "057e2d54569bc62e8829b844d9b2fc17865ab90a", "label": "firedreamgames:master"}, "user": {"following_url": "https://api.github.com/users/firedreamgames/following{/other_user}", "url": "https://api.github.com/users/firedreamgames", "site_admin": false, "type": "User", "html_url": "https://github.com/firedreamgames", "starred_url": "https://api.github.com/users/firedreamgames/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/firedreamgames/followers", "organizations_url": "https://api.github.com/users/firedreamgames/orgs", "avatar_url": "https://avatars1.githubusercontent.com/u/34807351?v=4", "repos_url": "https://api.github.com/users/firedreamgames/repos", "id": 34807351, "events_url": "https://api.github.com/users/firedreamgames/events{/privacy}", "gravatar_id": "", "login": "firedreamgames", "subscriptions_url": "https://api.github.com/users/firedreamgames/subscriptions", "received_events_url": "https://api.github.com/users/firedreamgames/received_events", "gists_url": "https://api.github.com/users/firedreamgames/gists{/gist_id}"}, "labels": [], "html_url": "https://github.com/firedreamgames/steembotanalysis/pull/4", "diff_url": "https://github.com/firedreamgames/steembotanalysis/pull/4.diff", "statuses_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/statuses/3496374f7ed46557f0edc707f8644b0ddcc818fe", "review_comments_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls/4/comments", "head": {"user": {"following_url": "https://api.github.com/users/firedreamgames/following{/other_user}", "url": "https://api.github.com/users/firedreamgames", "site_admin": false, "type": "User", "html_url": "https://github.com/firedreamgames", "starred_url": "https://api.github.com/users/firedreamgames/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/firedreamgames/followers", "organizations_url": "https://api.github.com/users/firedreamgames/orgs", "avatar_url": "https://avatars1.githubusercontent.com/u/34807351?v=4", "repos_url": "https://api.github.com/users/firedreamgames/repos", "id": 34807351, "events_url": "https://api.github.com/users/firedreamgames/events{/privacy}", "gravatar_id": "", "login": "firedreamgames", "subscriptions_url": "https://api.github.com/users/firedreamgames/subscriptions", "received_events_url": "https://api.github.com/users/firedreamgames/received_events", "gists_url": "https://api.github.com/users/firedreamgames/gists{/gist_id}"}, "ref": "SBD_addition", "repo": {"assignees_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/assignees{/user}", "language": "HTML", "url": "https://api.github.com/repos/firedreamgames/steembotanalysis", "merges_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/merges", "has_wiki": true, "default_branch": "master", "commits_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/commits{/sha}", "watchers_count": 0, "license": {"spdx_id": "MIT", "key": "mit", "name": "MIT License", "url": "https://api.github.com/licenses/mit"}, "downloads_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/downloads", "homepage": null, "id": 117599563, "created_at": "2018-01-15T21:55:09Z", "labels_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/labels{/name}", "name": "steembotanalysis", "archive_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/{archive_format}{/ref}", "stargazers_count": 0, "has_projects": true, "private": false, "pushed_at": "2018-04-23T20:48:12Z", "deployments_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/deployments", "forks_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/forks", "ssh_url": "git@github.com:firedreamgames/steembotanalysis.git", "languages_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/languages", "issues_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues{/number}", "keys_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/keys{/key_id}", "git_commits_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/commits{/sha}", "statuses_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/statuses/{sha}", "subscribers_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/subscribers", "issue_comment_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues/comments{/number}", "updated_at": "2018-04-23T20:48:13Z", "has_issues": true, "releases_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/releases{/id}", "git_refs_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/refs{/sha}", "pulls_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls{/number}", "hooks_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/hooks", "subscription_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/subscription", "blobs_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/blobs{/sha}", "contents_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/contents/{+path}", "collaborators_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/collaborators{/collaborator}", "events_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/events", "forks_count": 1, "owner": {"following_url": "https://api.github.com/users/firedreamgames/following{/other_user}", "url": "https://api.github.com/users/firedreamgames", "site_admin": false, "type": "User", "html_url": "https://github.com/firedreamgames", "starred_url": "https://api.github.com/users/firedreamgames/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/firedreamgames/followers", "organizations_url": "https://api.github.com/users/firedreamgames/orgs", "avatar_url": "https://avatars1.githubusercontent.com/u/34807351?v=4", "repos_url": "https://api.github.com/users/firedreamgames/repos", "id": 34807351, "events_url": "https://api.github.com/users/firedreamgames/events{/privacy}", "gravatar_id": "", "login": "firedreamgames", "subscriptions_url": "https://api.github.com/users/firedreamgames/subscriptions", "received_events_url": "https://api.github.com/users/firedreamgames/received_events", "gists_url": "https://api.github.com/users/firedreamgames/gists{/gist_id}"}, "html_url": "https://github.com/firedreamgames/steembotanalysis", "tags_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/tags", "description": "Steem.js application to analyse the time difference between upvote time of the bots vs posting time.", "teams_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/teams", "forks": 1, "archived": false, "git_tags_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/tags{/sha}", "mirror_url": null, "comments_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/comments{/number}", "fork": false, "branches_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/branches{/branch}", "milestones_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/milestones{/number}", "clone_url": "https://github.com/firedreamgames/steembotanalysis.git", "full_name": "firedreamgames/steembotanalysis", "open_issues_count": 0, "trees_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/git/trees{/sha}", "has_pages": false, "git_url": "git://github.com/firedreamgames/steembotanalysis.git", "issue_events_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/issues/events{/number}", "has_downloads": true, "stargazers_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/stargazers", "svn_url": "https://github.com/firedreamgames/steembotanalysis", "open_issues": 0, "watchers": 0, "contributors_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/contributors", "size": 25, "notifications_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/notifications{?since,all,participating}", "compare_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/compare/{base}...{head}"}, "sha": "3496374f7ed46557f0edc707f8644b0ddcc818fe", "label": "firedreamgames:SBD_addition"}, "updated_at": "2018-04-23T20:48:12Z", "state": "closed", "commits_url": "https://api.github.com/repos/firedreamgames/steembotanalysis/pulls/4/commits", "milestone": null}], "users": ["FireDream", "firedream"], "questions": null, "app": "utopian/1.0.0", "score": null, "type": "development", "links": ["https://fdsteemtools.neocities.org/botanalysis.html", "https://cdn.utopian.io/posts/28c153d2203fc040bda213eb0de398a81c8bimage.png", "https://cdn.utopian.io/posts/965e1a38e3b537d25218e14c660418d623f3image.png", "https://cdn.utopian.io/posts/c6c9e8728b10254a74775f4888dfe10a7c05image.png"], "moderator": {"time": "2018-04-25T12:48:31.735Z", "pending": false, "reviewed": true, "flagged": false, "account": "amosbastian"}, "community": "utopian", "tags": ["utopian-io", "steemit", "bots", "steem-js", "firedreamblog"], "total_influence": null, "repository": {"full_name": "firedreamgames/steembotanalysis", "owner": {"login": "firedreamgames"}, "id": 117599563, "fork": false, "html_url": "https://github.com/firedreamgames/steembotanalysis", "name": "steembotanalysis"}, "image": ["https://cdn.utopian.io/posts/28c153d2203fc040bda213eb0de398a81c8bimage.png"], "format": "markdown"}"
created2018-04-23 21:34:15
last_update2018-04-25 12:48:36
depth0
children27
net_rshares24,976,359,575,029
last_payout2018-04-30 21:34:15
cashout_time1969-12-31 23:59:59
total_payout_value110.064 SBD
curator_payout_value41.770 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length3,834
author_reputation10,770,161,662,981
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries
0.
weight1,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (32)
@resteemable ·
**Your Post Has Been Featured on @Resteemable!** <br> Feature any Steemit post using resteemit.com! <br> **How It Works:** <br> 1. Take Any Steemit URL <br> 2. Erase `https://` <br> 3. Type `re`<br> Get Featured Instantly & Featured Posts are voted every 2.4hrs <br>[Join the Curation Team Here](https://goo.gl/forms/4sr0InoTxcyPRQSj2) | [Vote Resteemable for Witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=resteemable&approve=1)
properties (22)
post_id45,076,609
authorresteemable
permlinkre-resteemable-sbd-and-upvote-view-of-bot-upvotes-20180423t231205337z
categoryutopian-io
json_metadata{}
created2018-04-23 23:12:06
last_update2018-04-23 23:12:06
depth1
children0
net_rshares0
last_payout2018-04-30 23:12:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length453
author_reputation711,577,524,471
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@stimialiti ·
$0.48
Would it not be better if programmers spent their time trying to fix steemit itself, or offering an alternative to it that will not eat its users' rewards?
Without bidbots, I would not have surpassed 15SP until now.
With bidbots, I can take haters' flags, retaliate, fight spam and abuse, be retaliated against, and still rise.
And I do not eat ass.
👍  ,
properties (23)
post_id45,089,598
authorstimialiti
permlinkre-firedream-sbd-and-upvote-view-of-bot-upvotes-20180424t112100607z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-24 01:11:54
last_update2018-04-24 01:11:54
depth1
children20
net_rshares70,285,763,941
last_payout2018-05-01 01:11:54
cashout_time1969-12-31 23:59:59
total_payout_value0.458 SBD
curator_payout_value0.021 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length349
author_reputation9,623,506,263,980
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@sleeplesswhale ·
re-stimialiti-re-firedream-sbd-and-upvote-view-of-bot-upvotes-20180424t112100607z-20180424t011634508z
You got a 12.53% upvote from @sleeplesswhale courtesy of @stimialiti!
properties (22)
post_id45,090,187
authorsleeplesswhale
permlinkre-stimialiti-re-firedream-sbd-and-upvote-view-of-bot-upvotes-20180424t112100607z-20180424t011634508z
categoryutopian-io
json_metadata"{"app": "postpromoter/1.8.7"}"
created2018-04-24 01:16:33
last_update2018-04-24 01:16:33
depth2
children0
net_rshares0
last_payout2018-05-01 01:16:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length69
author_reputation42,008,128,458
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@firedream ·
$1.53
@stimialiti,
I wouldn't agree more and I know that there are dev's spending their time on trying to find ideas on fixing steem itself.

FD.
👍  
properties (23)
post_id45,125,890
authorfiredream
permlinkre-stimialiti-re-firedream-sbd-and-upvote-view-of-bot-upvotes-20180424t070526648z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["stimialiti"], "tags": ["utopian-io"]}"
created2018-04-24 07:05:27
last_update2018-04-24 07:05:27
depth2
children18
net_rshares223,631,315,941
last_payout2018-05-01 07:05:27
cashout_time1969-12-31 23:59:59
total_payout_value1.146 SBD
curator_payout_value0.379 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length139
author_reputation10,770,161,662,981
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@stimialiti ·
$1.08
This time, I referred to steemit, not to steem itself.
Could not you focus on trying to make steemit work instead of what you did before you posted this thread?
And if not, why not offer an alternative to steemit.com, which is not as expensive to use as busy.org and its inferior likes?
Or a well functioning blockchain explorer, which shows the truth in real time with no lag, which currently no blockchain explorer does.
There is too much what to do, and people do other things out of boredom like you did here.
👍  , , , ,
properties (23)
post_id45,169,345
authorstimialiti
permlinkre-firedream-re-stimialiti-re-firedream-sbd-and-upvote-view-of-bot-upvotes-20180424t230709726z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-24 12:57:51
last_update2018-04-24 12:57:51
depth3
children16
net_rshares160,029,227,434
last_payout2018-05-01 12:57:51
cashout_time1969-12-31 23:59:59
total_payout_value1.048 SBD
curator_payout_value0.033 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length513
author_reputation9,623,506,263,980
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@j3dy ·
steem is fine, people are fucked, ask George Carlin, ...
properties (22)
post_id45,356,740
authorj3dy
permlinkre-firedream-re-stimialiti-re-firedream-sbd-and-upvote-view-of-bot-upvotes-20180425t143837871z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-25 14:38:39
last_update2018-04-25 14:38:39
depth3
children0
net_rshares0
last_payout2018-05-02 14:38:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length56
author_reputation9,237,523,485,500
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@amosbastian ·
$0.07
Thanks for the contribution. It has been approved.

----------------------------------------------------------------------
Need help? Write a ticket on https://support.utopian.io.
Chat with us on [Discord](https://discord.gg/uTyJkNm).

**[[utopian-moderator]](https://utopian.io/moderators)**
👍  
properties (23)
post_id45,341,894
authoramosbastian
permlinkre-firedream-sbd-and-upvote-view-of-bot-upvotes-20180425t125458762z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-25 12:55:00
last_update2018-04-25 12:55:00
depth1
children1
net_rshares15,410,504,776
last_payout2018-05-02 12:55:00
cashout_time1969-12-31 23:59:59
total_payout_value0.066 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length293
author_reputation174,225,255,912,876
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries
0.
weight1,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@firedream ·
@amosbastian,
I checked your rating, objective and fair.
Thank you.

FD.
properties (22)
post_id45,343,802
authorfiredream
permlinkre-amosbastian-re-firedream-sbd-and-upvote-view-of-bot-upvotes-20180425t130852920z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["amosbastian"], "tags": ["utopian-io"]}"
created2018-04-25 13:08:54
last_update2018-04-25 13:08:54
depth2
children0
net_rshares0
last_payout2018-05-02 13:08:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length72
author_reputation10,770,161,662,981
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
$0.10
### Hey @firedream! Thank you for the great work you've done!
We're already looking forward to your next contribution!
#### Fully Decentralized Rewards
We hope you will take the time to share your expertise and knowledge by rating contributions made by others on Utopian.io to help us reward the best contributions together.
#### Utopian Witness!
<a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a> We are made of developers, system administrators, entrepreneurs, artists, content creators, thinkers. We embrace every nationality, mindset and belief.

**Want to chat? Join us on Discord https://discord.me/utopian-io**
👍  
properties (23)
post_id45,411,510
authorutopian-io
permlinkre-firedream-sbd-and-upvote-view-of-bot-upvotes-20180425t220215614z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-25 22:02:15
last_update2018-04-25 22:02:15
depth1
children1
net_rshares15,692,475,349
last_payout2018-05-02 22:02:15
cashout_time1969-12-31 23:59:59
total_payout_value0.074 SBD
curator_payout_value0.023 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length689
author_reputation152,913,012,544,965
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@firedream ·
@Utopian-io, thank you.
properties (22)
post_id45,481,951
authorfiredream
permlinkre-utopian-io-re-firedream-sbd-and-upvote-view-of-bot-upvotes-20180426t084329184z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["utopian-io"], "tags": ["utopian-io"]}"
created2018-04-26 08:43:30
last_update2018-04-26 08:43:30
depth2
children0
net_rshares0
last_payout2018-05-03 08:43:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23
author_reputation10,770,161,662,981
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gorafarid ·
good info my friend. thank you
properties (22)
post_id46,006,120
authorgorafarid
permlinkre-firedream-sbd-and-upvote-view-of-bot-upvotes-20180429t122927765z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-29 12:29:30
last_update2018-04-29 12:29:30
depth1
children0
net_rshares0
last_payout2018-05-06 12:29:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation14,454,397,707,459
root_title"Update on Steem Bot Analysis :SBD and % Upvote View of Bot Upvotes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000