create account

Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More! by yabapmatt

View this thread on: hive.blogpeakd.comecency.com
· @yabapmatt · (edited)
$204.90
Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!
![loudspeaker-1459128_640.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1518486937/vjslq4dr4tcuax70cild.png)

More bots are running the Post Promoter software now than I can even keep track of and I'm getting requests for new features on daily basis! So here's the latest round of new goodies for all you bot owners (and users) out there...

## Blacklist Tags
One nice feature that was requested was the ability to blacklist posts with certain tags. If a bot owner does not want to support posts with certain tags they can now add those tags in the new "blacklisted_tags" array in the config.json file like so:

```
"blacklisted_tags": ["nsfw", "other_undesired_tag"],
```

Any bids that are submitted for posts with one or more blacklisted tags will be automatically refunded to the user (if refunds are enabled) with a message indicating which tag(s) are not allowed by the bot. The code for that feature is relatively simple and added to the checkPost() function:

```
// Check if any tags on this post are blacklisted in the settings
if (config.blacklisted_tags && config.blacklisted_tags.length > 0 && result.json_metadata && result.json_metadata != '') {
  var tags = JSON.parse(result.json_metadata).tags;

  if (tags && tags.length > 0) {
    var tag = tags.find(t => config.blacklisted_tags.indexOf(t) >= 0);

    if(tag) {
      refund(sender, amount, currency, 'blacklist_tag', 0, tag);
      return;
    }
  }
}
```

## Minimum Refund Amount
Funny story here...I registered the @postpromoter account with GINAbot a little while back to receive notifications when certain events happened. This involves sending a 0.001 STEEM transaction with a particular memo to the @ginabot account and then @ginabot sends a 0.001 STEEM transaction back with a success message.

Since @postpromoter automatically refunds any invalid bids it sent the 0.001 STEEM right back to @ginabot and thus the great bot refund war began. The quick fix at the time was to add "ginabot" to the no_refunds list in the config settings, however as a better solution to prevent refunds of transfer messages in general a new "min_refund_amount" setting was added.

```
"min_refund_amount": 0.002
```

With this the bot will no longer refund transactions less than 0.002 STEEM or SBD and thus prevent future refund wars and promote peace on the blockchain.

## Max Bids Per Author Per Round
There are always those few users who feel the need to make a ridiculous number of posts every day and buy small upvotes for all of them using the voting bots. While many bots blacklist these users I thought I would also add another option to limit the number of upvotes a single author can receive in each bidding round. You can now set this using the following new setting:

```
"max_per_author_per_round": 1
```

With the above configuration, an author may only receive an upvote on one of their posts each round, regardless of who sends the bid. At some point I would also like to add a similar setting to limit upvotes by author by day, however that's a much more involved change since the bot software doesn't currently save bid data prior to the previous round.

The code for that is also in the checkPost() method and is as follows:

```
// Check if this author has gone over the max bids per author per round
    if(config.max_per_author_per_round && config.max_per_author_per_round > 0) {
      if(outstanding_bids.filter(b => b.author == author).length >= config.max_per_author_per_round)
      {
        refund(sender, amount, currency, 'bids_per_round');
        return;
      }
    }
```

## Witness Vote Request Transfer Memo
This feature was requested by some bot owners who are also Steem witnesses, like myself. If enabled, each time a user submits a bid to the bot it will check if that user votes for the bot owner for witness (either directly or via proxy). If not it will send them a 0.001 STEEM or SBD transfer with a message asking for their vote to help support the bot. To enable this you must set the following two settings in config.json:

```
"owner_account": "bot_owner_account",
"transfer_memos": {
...
"witness_vote": "Thank you for promoting your post with [bot name]! Please consider voting for [bot owner] for witness at https://steemit.com/~witnesses to support the service!"
}
```

The code for this feature is a bit more interesting. It's a new recursive method called checkWitnessVote(). It's recursive in the case of voting by proxy. It has to continue to follow the trail of proxies until it arrives at the final voter account:

```
function checkWitnessVote(sender, voter, currency) {
  if(!config.owner_account || config.owner_account == '')
    return;

  steem.api.getAccounts([voter], function (err, result) {
    if (result && !err) {
      if (result[0].proxy && result[0].proxy != '') {
        checkWitnessVote(sender, result[0].proxy, currency);
        return;
      }

      if(result[0].witness_votes.indexOf(config.owner_account) < 0)
        refund(sender, 0.001, currency, 'witness_vote', 0);
    } else
      logError('Error loading sender account to check witness vote: ' + err);
  });
}
```

## Thanks for your support!
I feel like these posts are getting longer and longer! Does anyone actually read all of this stuff? If you read this, let me know in the comments! As always I want to thank everyone who has helped and supported me in creating this software. Please stay tuned for more updates in the coming weeks!

Links to relevant commits:
- [Updated witness vote message to check voting proxies](https://github.com/MattyIce/postpromoter/commit/e5e2072f7ccc3c25679724ffaa2161eb8c8f575b)
- [Finished the blacklist tags feature](https://github.com/MattyIce/postpromoter/commit/7225d66a88a1724468b0e1906f5a2195a62bad25)
- [Added min refund setting](https://github.com/MattyIce/postpromoter/commit/78233c16a4e7a5d701046619b0f8acd7282777fb)
- [Added max bids per author per round setting](https://github.com/MattyIce/postpromoter/commit/65ef0ecdb58b41c924411334d411af76ef048999)

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@yabapmatt/post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 148 others
πŸ‘Ž  
properties (23)
authoryabapmatt
permlinkpost-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more
categoryutopian-io
json_metadata{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":112392239,"name":"postpromoter","full_name":"MattyIce/postpromoter","html_url":"https://github.com/MattyIce/postpromoter","fork":false,"owner":{"login":"MattyIce"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemdev","steemitdev","dev","bots"],"users":["postpromoter","ginabot"],"links":["https://github.com/MattyIce/postpromoter/commit/e5e2072f7ccc3c25679724ffaa2161eb8c8f575b","https://github.com/MattyIce/postpromoter/commit/7225d66a88a1724468b0e1906f5a2195a62bad25","https://github.com/MattyIce/postpromoter/commit/78233c16a4e7a5d701046619b0f8acd7282777fb","https://github.com/MattyIce/postpromoter/commit/65ef0ecdb58b41c924411334d411af76ef048999","https://utopian.io/utopian-io/@yabapmatt/post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1518486937/vjslq4dr4tcuax70cild.png"],"moderator":{"account":"helo","time":"2018-02-13T03:01:56.667Z","reviewed":true,"pending":false,"flagged":false}}
created2018-02-13 02:31:33
last_update2018-02-13 03:01:57
depth0
children88
last_payout2018-02-20 02:31:33
cashout_time1969-12-31 23:59:59
total_payout_value144.208 HBD
curator_payout_value60.689 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,232
author_reputation160,234,431,724,160
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,086,336
net_rshares34,785,945,695,808
author_curate_reward""
vote details (213)
@alisanadeem ·
Thnks you sir contribution. approved good job sir
properties (22)
authoralisanadeem
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t092154682z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 09:22:00
last_update2018-02-13 09:22:00
depth1
children0
last_payout2018-02-20 09:22:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation4,756,169,418,336
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,167,341
net_rshares0
@alphacore ·
$0.97
the bot refund war LOL
πŸ‘  
properties (23)
authoralphacore
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t023906488z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 02:39:09
last_update2018-02-13 02:39:09
depth1
children2
last_payout2018-02-20 02:39:09
cashout_time1969-12-31 23:59:59
total_payout_value0.962 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation23,829,051,779,241
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,087,846
net_rshares134,372,186,765
author_curate_reward""
vote details (1)
@yabapmatt ·
$0.15
I'm glad someone appreciates my little bits of humor :-)
πŸ‘  ,
properties (23)
authoryabapmatt
permlinkre-alphacore-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t024118869z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 02:41:18
last_update2018-02-13 02:41:18
depth2
children1
last_payout2018-02-20 02:41:18
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation160,234,431,724,160
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,088,254
net_rshares21,661,100,612
author_curate_reward""
vote details (2)
@littlemessi ·
Thats  wonderful thought of you
properties (22)
authorlittlemessi
permlinkre-yabapmatt-re-alphacore-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t070934921z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 07:09:54
last_update2018-02-13 07:09:54
depth3
children0
last_payout2018-02-20 07:09:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation20,019,502
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,142,228
net_rshares0
@badribireuen ·
Thank you for the contribution. It has been approved.

Great job, I like the witness idea. Not too strange since I'm witness as well. ;-)

You can contact us on Discord.
[utopian-moderator]
πŸ‘Ž  
properties (23)
authorbadribireuen
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180214t204119328z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-14 20:41:21
last_update2018-02-14 20:41:21
depth1
children0
last_payout2018-02-21 20:41:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length189
author_reputation136,775,928,576
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,568,036
net_rshares-337,690,957,628
author_curate_reward""
vote details (1)
@bigpanda ·
I think the witness vote transfer request is awesome. That sounds particularly intriguing to me since I am currently trying to set up a witness node. Thanks for all the great work you do.
properties (22)
authorbigpanda
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180214t143743340z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-14 14:37:42
last_update2018-02-14 14:37:42
depth1
children0
last_payout2018-02-21 14:37:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation44,745,599,829,425
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,497,011
net_rshares0
@bjeh ·
lol actually i was begining to wonder when the long message will finish but thanks for the contribution to this community @yabapmatta
properties (22)
authorbjeh
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t214703298z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatta"],"app":"steemit/0.1"}
created2018-02-13 21:47:12
last_update2018-02-13 21:47:12
depth1
children0
last_payout2018-02-20 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation53,224,412,818
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,311,741
net_rshares0
@cbandit ·
$1.12
Yes they seem to get longer but I am still reading them. Thanks again for your information it helps. πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ˜ƒπŸŽ‰πŸŽ‰
πŸ‘  
properties (23)
authorcbandit
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t024418432z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 02:44:18
last_update2018-02-13 02:44:18
depth1
children0
last_payout2018-02-20 02:44:18
cashout_time1969-12-31 23:59:59
total_payout_value1.120 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation72,933,435,658
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,088,836
net_rshares155,017,895,620
author_curate_reward""
vote details (1)
@celestialcow ·
Hi for some reason there was a glitch in steembot tracker page and my vote got sent twice, i dont have much SBD in my account can you please refund me one of the votes 3SBD. Thanks
properties (22)
authorcelestialcow
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t113143006z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 11:31:42
last_update2018-02-13 11:31:42
depth1
children0
last_payout2018-02-20 11:31:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation44,855,609,770,347
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,191,859
net_rshares0
@charliechain ·
Very knowledgeable post about post promoter
Before i didn't know. Really you guide thank you very much
properties (22)
authorcharliechain
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t024036723z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 02:40:42
last_update2018-02-13 02:40:42
depth1
children0
last_payout2018-02-20 02:40:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation5,425,403,461,319
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,088,130
net_rshares0
@chitty ·
Your software is being used for @dailyupvotes and I must admit the stability is great. Thank you for this service I am voting you as witness!
properties (22)
authorchitty
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180228t140617311z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["dailyupvotes"],"app":"steemit/0.1"}
created2018-02-28 14:06:15
last_update2018-02-28 14:06:15
depth1
children0
last_payout2018-03-07 14:06:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation86,901,300,608,582
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,133,869
net_rshares0
@claucor20 ·
hola, me puedes ayudar??pague a @hellowhale desde steembottracker.com y no me voto y no me reembolso. tu puedes reembolsar o al menos puedes eliminar ese bot q esta robando?...Hello, can you help me? Pay @hellowhale from steembottracker.com and I do not vote and I do not get reimbursed. Can you reimburse or at least delete that bot that you are stealing? gracias
properties (22)
authorclaucor20
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180218t031154706z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["hellowhale"],"app":"steemit/0.1"}
created2018-02-18 03:19:27
last_update2018-02-18 03:19:27
depth1
children0
last_payout2018-02-25 03:19:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length364
author_reputation6,009,706,700,326
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,409,395
net_rshares0
@cr-7 ·
wow very awesome story I like it thanks sir
properties (22)
authorcr-7
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t023619144z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 02:36:21
last_update2018-02-13 02:36:21
depth1
children0
last_payout2018-02-20 02:36:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation86,575,848,979
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,087,314
net_rshares0
@crypto3lite ·
Is it possible to run the post promoter code on a container based website like openshift by redhat ? I cant seem to get the code to work on openshift.
properties (22)
authorcrypto3lite
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t122452017z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 12:24:54
last_update2018-02-13 12:24:54
depth1
children1
last_payout2018-02-20 12:24:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation161,371,134,141
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,202,439
net_rshares0
@elect1 ·
Please  vote for me and like my post  I have  done that to you thanks
properties (22)
authorelect1
permlinkre-crypto3lite-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t144022437z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 14:40:33
last_update2018-02-13 14:40:33
depth2
children0
last_payout2018-02-20 14:40:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation487,509,185
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,230,839
net_rshares0
@darsico ·
$1.79
i do not appreciate someone advertising for free on my post, since you released your new software i don't think anybody has a chance to make a buck anymore. thanks but no thanks
πŸ‘  
properties (23)
authordarsico
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180214t131633866z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-14 13:16:30
last_update2018-02-14 13:16:30
depth1
children3
last_payout2018-02-21 13:16:30
cashout_time1969-12-31 23:59:59
total_payout_value1.790 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation106,907,148,547,936
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,479,981
net_rshares255,217,068,304
author_curate_reward""
vote details (1)
@yabapmatt ·
Who is advertising for free on your posts? and what does my voting bot software have anything to do with that? Also it seems like content publishers are making more money on Steem now than they ever have before so I really have no idea what you're talking about.

If you can provide some specific examples of things you don't like I would be happy to respond to them.
properties (22)
authoryabapmatt
permlinkre-darsico-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180214t144000508z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-14 14:40:00
last_update2018-02-14 14:40:00
depth2
children2
last_payout2018-02-21 14:40:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length367
author_reputation160,234,431,724,160
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,497,535
net_rshares0
@nicholas83 ·
I am still waiting on my upvote for this post: https://steemit.com/poetry/@nicholas83/a-psalm-of-home. I sent 3 SBD.
properties (22)
authornicholas83
permlinkre-yabapmatt-re-darsico-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t115451020z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/poetry/@nicholas83/a-psalm-of-home"],"app":"steemit/0.1"}
created2018-02-15 11:54:48
last_update2018-02-15 11:54:48
depth3
children1
last_payout2018-02-22 11:54:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation3,100,178,185,327
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,727,916
net_rshares0
@davitd ·
that's very helpful post!!
thank you.
properties (22)
authordavitd
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t023522193z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 02:35:30
last_update2018-02-13 02:35:30
depth1
children0
last_payout2018-02-20 02:35:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation45,674,353,594
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,087,134
net_rshares0
@deancarter · (edited)
Finally figured how to add the witness @yabapmatt which I now support. Thanks again for all your hard work. :)
properties (22)
authordeancarter
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180220t212345084z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1","users":["yabapmatt"]}
created2018-02-20 21:23:45
last_update2018-02-20 21:24:12
depth1
children0
last_payout2018-02-27 21:23:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation2,017,164,533,764
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,170,401
net_rshares0
@dedikurniawan ·
Your postings are very good friends, thank you for existing share ataspostingan may be useful for all of us
properties (22)
authordedikurniawan
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180214t194508693z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-14 19:45:09
last_update2018-02-14 19:45:09
depth1
children0
last_payout2018-02-21 19:45:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation189,134,678,636
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,558,216
net_rshares0
@dynamicgreentk · (edited)
@yabapmatt can you suggest a solution please to @resteem.bot ignoring my usa military veterans over payment of his service in which he paid  10 sbds by accident just to resteem one post.  he has refused to get back to him and return the money but has all the Time in the World to harass people that are offering services to resteem posts. @resteem.bot really is looking like a bully and harassing people too.
@resteem.bot what is your deal taking from a veteran and my friend and not returning their money? Not only did you take 10sbds for a resteem u charge 0.2 for you never replied back to him now he is discourged from using steemit. Really really low. Please fix this.
![Capture+_2018-02-19-14-03-06.png](https://steemitimages.com/DQmPibijX7wB4v2U2zjY3Xv2xW5DNnXPmehN1PqgSwPoFAR/Capture%2B_2018-02-19-14-03-06.png)
![Capture+_2018-02-19-14-03-19.png](https://steemitimages.com/DQmUBmnA5N67ed7iLqmx3FFqaTxoc9rhSbWunSLfshEDaMY/Capture%2B_2018-02-19-14-03-19.png)
![Capture+_2018-02-19-14-03-38.png](https://steemitimages.com/DQmNztcWRAN1JMg9WXm7dd5wRiXpCj4csBdhbdEkL416aZs/Capture%2B_2018-02-19-14-03-38.png)
![Capture+_2018-02-19-14-04-14.png](https://steemitimages.com/DQmUJqJpBX4LzQHcPRqYc12k2cr4AKK8eoPAdf7mKHsfGHx/Capture%2B_2018-02-19-14-04-14.png)
properties (22)
authordynamicgreentk
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180220t131121689z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt","resteem.bot"],"image":["https://steemitimages.com/DQmPibijX7wB4v2U2zjY3Xv2xW5DNnXPmehN1PqgSwPoFAR/Capture%2B_2018-02-19-14-03-06.png","https://steemitimages.com/DQmUBmnA5N67ed7iLqmx3FFqaTxoc9rhSbWunSLfshEDaMY/Capture%2B_2018-02-19-14-03-19.png","https://steemitimages.com/DQmNztcWRAN1JMg9WXm7dd5wRiXpCj4csBdhbdEkL416aZs/Capture%2B_2018-02-19-14-03-38.png","https://steemitimages.com/DQmUJqJpBX4LzQHcPRqYc12k2cr4AKK8eoPAdf7mKHsfGHx/Capture%2B_2018-02-19-14-04-14.png"],"app":"steemit/0.1"}
created2018-02-20 13:11:21
last_update2018-02-20 13:13:18
depth1
children2
last_payout2018-02-27 13:11:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,257
author_reputation109,189,310,310,648
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,067,477
net_rshares0
@resteem.bot ·
@dynamicgreentk

Your friend postet his comments in the nowhere:
https://steemit.com/@wfwlasvegas/comments

We never received a notification from Steemit.

@resteem.bot
properties (22)
authorresteem.bot
permlinkre-dynamicgreentk-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180220t140008514z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["dynamicgreentk","resteem.bot"],"links":["https://steemit.com/@wfwlasvegas/comments"],"app":"steemit/0.1"}
created2018-02-20 14:00:06
last_update2018-02-20 14:00:06
depth2
children1
last_payout2018-02-27 14:00:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation33,530,472,041,781
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,078,142
net_rshares0
@dynamicgreentk · (edited)
https://steemit.com/government/@wfwlasvegas/we-stand-for-change
It's a shame that it takes messaging @yabapmatt just to get your response(but really cool there is soneone out there that has that power). But you can harass other people providing resteem services and their customers. And just to let you know while I have your ear ...resteem services at, least when i use them,  i use in conjuction with other services as do a lot of people. Raise your price i dont care most wont but to harass and intimidate others over some kind of bunk claim that you're the owner of the term resteem and even if you were you might want to go and trademark it and go to centralized platform in my opinion. We are supposed to help each other and this platform harassing people and bullying them and the people they are trying to help does nothing for this platform but put it in a negative light and discourages growth
properties (22)
authordynamicgreentk
permlinkre-resteembot-re-dynamicgreentk-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180220t142605997z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt"],"links":["https://steemit.com/government/@wfwlasvegas/we-stand-for-change"],"app":"steemit/0.1"}
created2018-02-20 14:26:06
last_update2018-02-20 14:28:51
depth3
children0
last_payout2018-02-27 14:26:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length903
author_reputation109,189,310,310,648
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,083,845
net_rshares0
@emmgeeahmad · (edited)
By its very name I can guess that post promoter java vote is some software that promotes posts automatically. I want to know how can one get this and how much does the programmer charge for this software?
πŸ‘  
properties (23)
authoremmgeeahmad
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180219t045210203z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-19 04:52:12
last_update2018-02-19 04:53:27
depth1
children0
last_payout2018-02-26 04:52:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation58,801,751,261
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,692,322
net_rshares208,912,864
author_curate_reward""
vote details (1)
@ework ·
Hi steemit friends Please support
Follow upvote me @aneukmeutuah
Thanks for your generous
properties (22)
authorework
permlinkre-yabapmatt-2018213t16250965z
categoryutopian-io
json_metadata{"tags":["utopian-io","steemdev","steemitdev","dev","bots"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-13 08:25:03
last_update2018-02-13 08:25:03
depth1
children0
last_payout2018-02-20 08:25:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation-1,971,272,455
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,156,577
net_rshares0
@ework ·
Hi steemit friends Please support
Follow upvote me @ework
Thanks for your generous
properties (22)
authorework
permlinkre-yabapmatt-2018213t162526768z
categoryutopian-io
json_metadata{"tags":["utopian-io","steemdev","steemitdev","dev","bots"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-13 08:25:27
last_update2018-02-13 08:25:27
depth1
children0
last_payout2018-02-20 08:25:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation-1,971,272,455
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,156,650
net_rshares0
@fahron ·
May I be friends with you I want to have more themes in steem
properties (22)
authorfahron
permlinkre-yabapmatt-2018216t4646959z
categoryutopian-io
json_metadata{"tags":["utopian-io","steemdev","steemitdev","dev","bots"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-15 21:06:48
last_update2018-02-15 21:06:48
depth1
children0
last_payout2018-02-22 21:06:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation33,362,506,293
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,836,347
net_rshares0
@flashfiction ·
You provide some of the (very few) really essential steemit tools. At least your tracker should be there on the menu, under steemit chat, IMHO.

Thank you for your hard work. It is very appreciated.
properties (22)
authorflashfiction
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t182206754z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 18:18:51
last_update2018-02-13 18:18:51
depth1
children0
last_payout2018-02-20 18:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length198
author_reputation3,899,451,666,767
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,273,117
net_rshares0
@fqtee ·
$2.99
Great work @yabapmatt, as a newbie, u are the 1st witness that i have voted for on steemit; and thats because i am motivated by your selfless work for the community...i sincerely appreciate your efforts....Keep up the good work...cheers
πŸ‘  ,
properties (23)
authorfqtee
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t153356990z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-02-15 15:34:03
last_update2018-02-15 15:34:03
depth1
children4
last_payout2018-02-22 15:34:03
cashout_time1969-12-31 23:59:59
total_payout_value2.952 HBD
curator_payout_value0.040 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length236
author_reputation1,121,407,680,460
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,772,656
net_rshares441,260,577,150
author_curate_reward""
vote details (2)
@yabapmatt ·
$0.04
Thank you @fqtee, it's always great to see new users on the platform! Please feel free to reach out to me any time if you have questions or need help with anything!
πŸ‘  
properties (23)
authoryabapmatt
permlinkre-fqtee-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t153616523z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["fqtee"],"app":"steemit/0.1"}
created2018-02-15 15:36:15
last_update2018-02-15 15:36:15
depth2
children3
last_payout2018-02-22 15:36:15
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation160,234,431,724,160
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,773,065
net_rshares6,071,730,030
author_curate_reward""
vote details (1)
@fqtee ·
$0.04
In my culture,(Yoruba land) we refer to persons like u as "Eshin-waju" meaning the pace-setting horse-a leader! Thanks a lot for your kind words; i will surely reach out to you on some areas of concerns; and i will like ur inputs on how i can bring a re-known international NGO to this platform...Cheers
πŸ‘  
properties (23)
authorfqtee
permlinkre-yabapmatt-re-fqtee-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t154447627z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-15 15:44:51
last_update2018-02-15 15:44:51
depth3
children0
last_payout2018-02-22 15:44:51
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length303
author_reputation1,121,407,680,460
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,774,828
net_rshares5,473,066,310
author_curate_reward""
vote details (1)
@jacksonoskele ·
Can I have this advantage too @yabapmatt?
properties (22)
authorjacksonoskele
permlinkre-yabapmatt-re-fqtee-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180218t214144157z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-02-18 21:41:48
last_update2018-02-18 21:41:48
depth3
children0
last_payout2018-02-25 21:41:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation1,315,666,699,750
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,618,136
net_rshares0
@jacksonoskele ·
I will like to reach out too@yabapmatt
properties (22)
authorjacksonoskele
permlinkre-yabapmatt-re-fqtee-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180218t214302363z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-18 21:43:15
last_update2018-02-18 21:43:15
depth3
children0
last_payout2018-02-25 21:43:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation1,315,666,699,750
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,618,397
net_rshares0
@greengrowth ·
Thanks so much for this @yabapmatt. I love your services and use them regularly. I would like some help if that is possible. 

I have recently started a bot called @greengrowth. This bot is targeted at the environmental and sustainable communities, but others can use it. 

Anyhow, I was wondering how to get listed on the SteemBotTracker Website? Any help or pointing in the right direction will be welcomed. 

Thanks!

@GreenGrowth
properties (22)
authorgreengrowth
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t104239740z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt","greengrowth"],"app":"steemit/0.1"}
created2018-02-15 10:52:12
last_update2018-02-15 10:52:12
depth1
children2
last_payout2018-02-22 10:52:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length433
author_reputation15,610,755,007
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,716,047
net_rshares0
@yabapmatt ·
I can list it in the other bots section, however I would ask that you add a profile image and some info on how to use the bot in the profile as well, that is where the site pulls its info from.
properties (22)
authoryabapmatt
permlinkre-greengrowth-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t140352518z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-15 14:03:51
last_update2018-02-15 14:03:51
depth2
children1
last_payout2018-02-22 14:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length193
author_reputation160,234,431,724,160
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,753,331
net_rshares0
@greengrowth ·
Thank you. I have also updated the JSON Metadata using the tool on your website. 

In the longer term I would like to get the bot on the main section of the bot website. Do I need more SP to do this? 

Thanks.
properties (22)
authorgreengrowth
permlinkre-yabapmatt-re-greengrowth-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180216t025839364z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-16 03:08:12
last_update2018-02-16 03:08:12
depth3
children0
last_payout2018-02-23 03:08:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation15,610,755,007
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,894,321
net_rshares0
@greengrowth ·
re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t124130826z
You got a 50.00% upvote from @greengrowth courtesy of @greengrowth!
properties (22)
authorgreengrowth
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t124130826z
categoryutopian-io
json_metadata{"app":"postpromoter/1.8.6"}
created2018-02-15 12:41:36
last_update2018-02-15 12:41:36
depth1
children0
last_payout2018-02-22 12:41:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation15,610,755,007
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,736,934
net_rshares0
@helo ·
$3.65
Thank you for the contribution. It has been approved.

Great job, I like the witness idea.  Not too strange since I'm witness as well.  ;-)

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
πŸ‘  , ,
properties (23)
authorhelo
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t030244278z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-13 03:02:45
last_update2018-02-13 03:02:45
depth1
children1
last_payout2018-02-20 03:02:45
cashout_time1969-12-31 23:59:59
total_payout_value3.312 HBD
curator_payout_value0.341 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length258
author_reputation121,547,934,535,311
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,092,421
net_rshares502,479,656,534
author_curate_reward""
vote details (3)
@utopian.tip ·
Hey @helo, I just gave you a tip for your hard work on moderation. Upvote this comment to support the utopian moderators and increase your future rewards!
πŸ‘  ,
properties (23)
authorutopian.tip
permlinkre-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t030244278z-20180213t202730
categoryutopian-io
json_metadata""
created2018-02-13 20:27:30
last_update2018-02-13 20:27:30
depth2
children0
last_payout2018-02-20 20:27:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation238,310,597,885
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,297,307
net_rshares586,559,304
author_curate_reward""
vote details (2)
@hermanlc ·
nice post, good information
properties (22)
authorhermanlc
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180225t193402299z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-25 19:34:06
last_update2018-02-25 19:34:06
depth1
children0
last_payout2018-03-04 19:34:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation1,153,975,050,556
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,408,026
net_rshares0
@jacksonoskele ·
Very well informed, I like this part most'
Max Bids Per Author Per Round- is really a good idea.
properties (22)
authorjacksonoskele
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180218t213519045z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-18 21:35:39
last_update2018-02-18 21:35:39
depth1
children0
last_payout2018-02-25 21:35:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation1,315,666,699,750
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,617,064
net_rshares0
@janellelanae · (edited)
$1.13
Hi @yabamatt I am still a minnow, actually a plankton according to busy.org and I just got sent an upvote from @postpromoter for @jerrybanfield's Supernatural Writing Contest. I was supposed to receive around $50 for entering. The bid was 20 Steem from @gmichelbkk which should equate to roughly $80 with a current value of a little over $4 for 1 Steem dollar. (I guess it isn't a 100% return upvote?) 

Here is what the transaction looked like in your wallet...

3 hours ago	Receive 20.000 STEEM from gmichelbkk	https://steemit.com/jerrybanfield/@janellelanae/healing-my-dna-and-soul-trauma-swc-jerrybanfield-repost-with-proper-1st-tag

My question and concern is why was my vote from @postpromoter only $34 for 20 Steem. :-( I'm not trying to be greedy but I guess I am a little disappointed and I don't understand why I got such a small upvote in comparison to the pretty good sized bid.
πŸ‘  ,
properties (23)
authorjanellelanae
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180218t104226998z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabamatt","postpromoter","jerrybanfield","gmichelbkk"],"links":["https://steemit.com/jerrybanfield/@janellelanae/healing-my-dna-and-soul-trauma-swc-jerrybanfield-repost-with-proper-1st-tag"],"app":"steemit/0.1"}
created2018-02-18 10:42:24
last_update2018-02-18 10:43:15
depth1
children3
last_payout2018-02-25 10:42:24
cashout_time1969-12-31 23:59:59
total_payout_value0.876 HBD
curator_payout_value0.255 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length890
author_reputation697,691,729,270
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,482,788
net_rshares200,180,360,240
author_curate_reward""
vote details (2)
@yabapmatt ·
Hi @janellelanae - due to the fact that Steem Dollars (SBD) are now worth about $5 rather than $1 like they are intended, the value of votes shown on steemit.com and other sites is not really correct.

Assuming your post is set to pay out 50/50 SBD and SP then your payout from the $34 vote will be as follows:

After 25% curation the $34 vote will be worth $25.50. You will receive half of that in SBD, which is 12.75 SBD. At the current price of about $5.30 / SBD that is worth about $67.57. Additionally you will receive the other half of the payout in SP, so you will receive $12.75 of SP at the current price of STEEM.

If you add those you will see that the total value of the $34 vote is actually about $80 that you will receive.
πŸ‘  
properties (23)
authoryabapmatt
permlinkre-janellelanae-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180218t203456470z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["janellelanae"],"app":"steemit/0.1"}
created2018-02-18 20:34:54
last_update2018-02-18 20:34:54
depth2
children2
last_payout2018-02-25 20:34:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length736
author_reputation160,234,431,724,160
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,606,437
net_rshares1,438,059,773
author_curate_reward""
vote details (1)
@janellelanae ·
Wow. Thank you. I had no idea it was so off. Thank you for getting back to me about this and explaining it. I feel kind of embarrased now but thank you for kindly explaining it to me. I will vote for you as a witness. Thanks again.
properties (22)
authorjanellelanae
permlinkre-yabapmatt-re-janellelanae-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180218t205619620z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-18 20:56:21
last_update2018-02-18 20:56:21
depth3
children1
last_payout2018-02-25 20:56:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length231
author_reputation697,691,729,270
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,610,330
net_rshares0
@khalidi ·
thanks for your very useful postings, i am new in steemit and now i will follow you and honestly i like to post you especially this one ,, god job bro
:)
properties (22)
authorkhalidi
permlinkre-yabapmatt-2018214t12750923z
categoryutopian-io
json_metadata{"tags":["utopian-io","steemdev","steemitdev","dev","bots"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-14 05:07:51
last_update2018-02-14 05:07:51
depth1
children0
last_payout2018-02-21 05:07:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation13,050,626,282
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,388,617
net_rshares0
@kimsungtee ·
$0.06
읽어도 무슨 말 인지  λͺ¨λ₯΄κ² λ„€μš”.
πŸ‘  
properties (23)
authorkimsungtee
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t132115935z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-15 13:21:15
last_update2018-02-15 13:21:15
depth1
children0
last_payout2018-02-22 13:21:15
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation10,535,573,340,060
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,744,849
net_rshares8,293,215,566
author_curate_reward""
vote details (1)
@mamun123456 ·
Thank you again. Thank you so much for giving beautiful information. The information is genuinely thankful. To help you distribute such beautiful information among us, I think we will help them after some time.
properties (22)
authormamun123456
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t045559085z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 04:56:06
last_update2018-02-13 04:56:06
depth1
children0
last_payout2018-02-20 04:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation206,520,038,120,721
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,116,577
net_rshares0
@marvynnogueira ·
Gostaria muito de saber mais e receber ajuda , quem puder ajudar assim poderei ajudar a outros tambem ! acho muito bom e interessante que aqui nessa rede todo mundo se ajuda e isso Γ© extremamente importante para todo nos ... sucesso  todos ! PT BR 
properties (22)
authormarvynnogueira
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t023922226z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.3.0"}
created2018-02-15 02:39:24
last_update2018-02-15 02:39:24
depth1
children0
last_payout2018-02-22 02:39:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length248
author_reputation6,430,978,192
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,626,040
net_rshares0
@mcfarhat ·
Nice work as always @yabapmatt ! .. and that bot work with @ginabot .. hahahah, please accept my refund, no you accept my refund, no you accept my refund .. LOL
properties (22)
authormcfarhat
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t103521771z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt","ginabot"],"app":"steemit/0.1"}
created2018-02-13 10:35:27
last_update2018-02-13 10:35:27
depth1
children0
last_payout2018-02-20 10:35:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation150,651,671,367,256
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,181,048
net_rshares0
@mdarsaimi ·
come to visiting my account https://steemit.com/photography/@mdarsaimi/sunset-at-lhoknga-aceh-beach-sunset-di-pantai-lhoknga-aceh story about the nature of aceh , i hope you're like and vote it
properties (22)
authormdarsaimi
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180219t023042076z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/photography/@mdarsaimi/sunset-at-lhoknga-aceh-beach-sunset-di-pantai-lhoknga-aceh"],"app":"steemit/0.1"}
created2018-02-19 18:32:30
last_update2018-02-19 18:32:30
depth1
children0
last_payout2018-02-26 18:32:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length193
author_reputation4,281,677,389
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,855,349
net_rshares0
@minimalpris ·
Hi, 

Thanks for giving os the Bot tracker service.
Please consider, removing the bot: sleeplesswhale
(do you have a black list for bots?)

They do not always, upvote and do not respond.
see the comments on this post: 

https://steemit.com/bot/@sleeplesswhale/2q7vne-working-hard-without-being-noticed-quality-matters-only-when-others-can-see-it
properties (22)
authorminimalpris
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180214t080753387z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/bot/@sleeplesswhale/2q7vne-working-hard-without-being-noticed-quality-matters-only-when-others-can-see-it"],"app":"steemit/0.1"}
created2018-02-14 08:07:54
last_update2018-02-14 08:07:54
depth1
children0
last_payout2018-02-21 08:07:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation107,060,132,654,733
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,420,386
net_rshares0
@mirabdullah ·
Waow.. so cool. This is one of the best thing for the beginners to become  wealty as soon as possible. 😊
properties (22)
authormirabdullah
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180217t213541050z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-17 21:35:42
last_update2018-02-17 21:35:42
depth1
children0
last_payout2018-02-24 21:35:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation81,813,861,580
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,355,713
net_rshares0
@mustaghfirridwan ·
Thanks for your information @yabapmatt
properties (22)
authormustaghfirridwan
permlinkre-yabapmatt-2018213t144813713z
categoryutopian-io
json_metadata{"tags":["utopian-io","steemdev","steemitdev","dev","bots"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-13 07:48:18
last_update2018-02-13 07:48:18
depth1
children0
last_payout2018-02-20 07:48:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation66,479,900,453
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,149,455
net_rshares0
@naveedafridi ·
sir i send 3 sbd and you mention that i will upvote 1.87% but you only upvote my pic 0.87%..
properties (22)
authornaveedafridi
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t050303095z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-15 05:03:15
last_update2018-02-15 05:03:15
depth1
children3
last_payout2018-02-22 05:03:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation242,762,437,302
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,651,250
net_rshares0
@naveedafridi ·
![Capture.JPG](https://steemitimages.com/DQmabcCDw3PceQKkBrWKkbNL2MA4C34MJk9MjALhnCVxwmB/Capture.JPG)![Capture.JPG](https://steemitimages.com/DQmabcCDw3PceQKkBrWKkbNL2MA4C34MJk9MjALhnCVxwmB/Capture.JPG)
properties (22)
authornaveedafridi
permlinkre-naveedafridi-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t050514940z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"image":["https://steemitimages.com/DQmabcCDw3PceQKkBrWKkbNL2MA4C34MJk9MjALhnCVxwmB/Capture.JPG"],"app":"steemit/0.1"}
created2018-02-15 05:05:21
last_update2018-02-15 05:05:21
depth2
children1
last_payout2018-02-22 05:05:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation242,762,437,302
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,651,607
net_rshares0
@naveedafridi ·
image url: https://steemit.com/funny/@naveedafridi/when-friend-ask-for-treat
properties (22)
authornaveedafridi
permlinkre-naveedafridi-re-naveedafridi-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t050945022z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/funny/@naveedafridi/when-friend-ask-for-treat"],"app":"steemit/0.1"}
created2018-02-15 05:10:12
last_update2018-02-15 05:10:12
depth3
children0
last_payout2018-02-22 05:10:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation242,762,437,302
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,652,436
net_rshares0
@steemitguide ·
$0.36
Having a hard time understanding how this will earn you more. Lost 4$ in payout for 3 Steem. If you could explain to me how I could maximize my earning, would really appreciate it. I've been creating so much educational content for Steem, I would definitely put this service to good use... Would use it each time I post. Would appreciate some tips @yabapmatt on how to maximise earning with this service. P.S i've voted you as a Witness aswell

Tip 1)  Don't use full Steem power up Post right?
πŸ‘  
properties (23)
authorsteemitguide
permlinkre-naveedafridi-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180216t185340244z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-02-16 18:53:39
last_update2018-02-16 18:53:39
depth2
children0
last_payout2018-02-23 18:53:39
cashout_time1969-12-31 23:59:59
total_payout_value0.361 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length494
author_reputation35,147,549,313,619
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,070,486
net_rshares61,385,682,033
author_curate_reward""
vote details (1)
@nyein0012 ·
Good
properties (22)
authornyein0012
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180217t090143994z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-17 09:02:15
last_update2018-02-17 09:02:15
depth1
children0
last_payout2018-02-24 09:02:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation333,080,371,032
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,210,993
net_rshares0
@oluebubesyd ·
$0.16
> Since @postpromoter automatically refunds any invalid bids it sent the 0.001 STEEM right back to @ginabot and thus the great bot refund war began. The quick fix at the time was to add "ginabot" to the no_refunds list in the config settings, however as a better solution to prevent refunds of transfer messages in general a new "min_refund_amount" setting was added.



No need to squabble over this issue. You guys can send me the 0.001 STEEM since it's causing issues 😁😁😁.



Thank you for the update tho :)
πŸ‘  ,
properties (23)
authoroluebubesyd
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t071413828z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["postpromoter","ginabot"],"app":"steemit/0.1"}
created2018-02-13 07:14:15
last_update2018-02-13 07:14:15
depth1
children0
last_payout2018-02-20 07:14:15
cashout_time1969-12-31 23:59:59
total_payout_value0.126 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length510
author_reputation277,228,104,198
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,143,026
net_rshares22,151,279,804
author_curate_reward""
vote details (2)
@omerserhanozugur ·
thanks for the current info. I will use these boots
properties (22)
authoromerserhanozugur
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t045019695z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 04:51:36
last_update2018-02-13 04:51:36
depth1
children0
last_payout2018-02-20 04:51:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation144,184,050,995
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,115,683
net_rshares0
@outofsteem · (edited)
Hey @yabapmatt, great job!
πŸ‘  
properties (23)
authoroutofsteem
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180214t164805788z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-02-14 16:48:09
last_update2018-02-14 16:49:00
depth1
children0
last_payout2018-02-21 16:48:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation2,620,701,531,045
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,523,744
net_rshares226,257,022
author_curate_reward""
vote details (1)
@petrodollar ·
the information is very interesting, I think this software is very helpful for beginner steemian like me and others. hopefully all this is useful for us all in the future.
properties (22)
authorpetrodollar
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180217t164712550z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-17 16:47:21
last_update2018-02-17 16:47:21
depth1
children0
last_payout2018-02-24 16:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation143,891,378,290
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,298,496
net_rshares0
@rkaitra ·
This very nice post.. i like it. 
best of luck
properties (22)
authorrkaitra
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t024600838z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 02:46:21
last_update2018-02-13 02:46:21
depth1
children0
last_payout2018-02-20 02:46:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation705,269,649,419
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,089,253
net_rshares0
@sajuchy ·
Up vote and follow me bro plzz, I also voted and followed you
properties (22)
authorsajuchy
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180219t021552488z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-19 02:15:51
last_update2018-02-19 02:15:51
depth1
children0
last_payout2018-02-26 02:15:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation916,799,388
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,663,645
net_rshares0
@sinta ·
ok ok
If you want to succeed, we must work together
properties (22)
authorsinta
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180221t070042187z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-21 07:00:45
last_update2018-02-21 07:00:45
depth1
children0
last_payout2018-02-28 07:00:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation380,554,642,847
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,273,985
net_rshares0
@smartwhale ·
Thanks so much for this @yabapmatt. I love your services and use them regularly. I would like some help if that is possible. I have recently started a bot called @SmartWhale . how to get listed on the SteemBotTracker Website? Any help or pointing in the right direction will be welcomed.

Thanks!
@smartwhale
properties (22)
authorsmartwhale
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180216t045517753z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt","smartwhale"],"app":"steemit/0.1"}
created2018-02-16 04:55:18
last_update2018-02-16 04:55:18
depth1
children1
last_payout2018-02-23 04:55:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length308
author_reputation206,117,805,341
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,913,631
net_rshares0
@greengrowth ·
Hi SmartWhale. I am also interesting in finding out more information on this. If you do find out, could you please help a fellow bot. 
properties (22)
authorgreengrowth
permlinkre-smartwhale-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180217t050948771z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.3.0"}
created2018-02-17 05:19:27
last_update2018-02-17 05:19:27
depth2
children0
last_payout2018-02-24 05:19:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation15,610,755,007
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,173,498
net_rshares0
@steemitguide ·
$0.36
:/ paid 3 Steem worth (12$) to get an 8$ steem payout...
πŸ‘  
properties (23)
authorsteemitguide
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180216t184709177z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-16 18:47:09
last_update2018-02-16 18:47:09
depth1
children0
last_payout2018-02-23 18:47:09
cashout_time1969-12-31 23:59:59
total_payout_value0.364 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation35,147,549,313,619
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,069,291
net_rshares62,067,745,167
author_curate_reward""
vote details (1)
@steemitraj ·
I voted in a very nice. utopian-io  post post and commented and followed you and shared the post so that everyone can see this post and vote in this post.Hello friends have been there for the last few days join steemit family.steemit is a great platfram for us.i hope everyone support me for success.....@steemitraj
πŸ‘  , ,
properties (23)
authorsteemitraj
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t060236843z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["steemitraj"],"app":"steemit/0.1"}
created2018-02-13 06:02:42
last_update2018-02-13 06:02:42
depth1
children0
last_payout2018-02-20 06:02:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length315
author_reputation570,959,655,446
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,129,682
net_rshares1,344,992,839
author_curate_reward""
vote details (3)
@steemitservice ·
Thanks @yabapmatt for the work you've been doing! We've been using you tool now for a week and really appreciate how you've simplified the process for accessing and assessing which bots to use. have a nice day
properties (22)
authorsteemitservice
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t024056099z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-02-13 02:41:00
last_update2018-02-13 02:41:00
depth1
children0
last_payout2018-02-20 02:41:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation375,814,397,062
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,088,196
net_rshares0
@steemitservice · (edited)
Thank you for the contribution. It has been approved.

Great description, great contribution. I like how you go in details. Your posts are definitely great examples for other to be inspired by. have anice day
πŸ‘  
properties (23)
authorsteemitservice
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t031740427z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 03:17:42
last_update2018-02-13 03:18:06
depth1
children0
last_payout2018-02-20 03:17:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation375,814,397,062
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,095,612
net_rshares602,258,804
author_curate_reward""
vote details (1)
@surfermarly ·
Great job on upvoting copyright abuse and helping it to get to the no. 1 position on the trending page! Thanks to services like yours steemit.com is full of overvalued trash.
https://steemit.com/life/@msteemian/power-packed-20-minute-workout-routine
properties (22)
authorsurfermarly
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180218t133916044z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/life/@msteemian/power-packed-20-minute-workout-routine"],"app":"steemit/0.1"}
created2018-02-18 13:39:12
last_update2018-02-18 13:39:12
depth1
children5
last_payout2018-02-25 13:39:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation318,958,646,866,746
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,518,411
net_rshares0
@yabapmatt ·
Hi @surfermarly, before getting into the issue you highlighted, I first want to address your comment to me. I don't appreciate the tone of this comment which is calling me out and blaming me for another user's particular misuse of an automated service I am providing.

Posting something like this is more likely to lead to a flame/flag war than a constructive conversation about how to address certain issues on the Steem platform. Maybe that's what you wanted, I don't know, but I will respond as if you brought this post to my attention in a more constructive and respectful manner.

Plagiarism and copyright infringement should absolutely not be tolerated here, or anywhere else for that matter. I appreciate you bringing this particular example to my attention, as have many other people, and in response I have downvoted the post with my full personal voting power and have blacklisted the author from using the @postpromoter service in the future as have many other similar services.

It seems to be very common to view these services as bad because some people take advantage of and abuse them, however I believe they do provide a very important service for many members of the Steem community. In any case, I believe content promotion services are not going away, and I, along with many other voting bot owners, work very hard to prevent them from being used by scammers, spammers, and plagiarizers. In fact, I have personally developed many of the tools used by the majority of the voting bots to block the author of this post and prevent similar content from being promoted in the future.

As I mentioned, I appreciate you bringing this issue to my attention, and I hope you will continue to bring similar issues to my attention when and if you see them. I am also always open to discussing content promotion services, their place on the platform, and how they can be improved. I would just ask that next time you contact me that you do it in a more constructive and respectful manner.
properties (22)
authoryabapmatt
permlinkre-surfermarly-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180218t224358642z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["surfermarly","postpromoter"],"app":"steemit/0.1"}
created2018-02-18 22:43:57
last_update2018-02-18 22:43:57
depth2
children4
last_payout2018-02-25 22:43:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,995
author_reputation160,234,431,724,160
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,628,479
net_rshares0
@surfermarly · (edited)
Thanks for your reply. Since you're not planning to remove your upvotes on obviously stolen content, I was completely right about my point of view. Your service helps to overvalue trash.

Why don't you remove your upvote knowing now that the user is abusing not only copyrights but also your service? How can you still be fine with a payout of $400 which is ~1,600 US Dollar for someone who copy-pasted data from the internet?

Oh and with regards to my tone: I'm upset - and as I can see now for a reason! You didn't do this by mistake, you consciously upvote stolen content. And instead of replying to my message on the discord channel you even confirmed it on the blockchain now.

Steemcleaners are surely not the ones to balance out all of your mistakes, you do have to take care of that by yourself. Putting a user on a blacklist is not enough, the rewards for stolen content will still go to his account.

I will do a post about this soon and definitely mention that you're aware of the situation but still don't remove the upvote. themarkymark has been the only one reacting in an appropriate manner here. I will also underline that!

EDIT: The article has been even detected as spam by steemcleaners now as you can see in the comments section of the post. Are you still planning to hold your upvote?
properties (22)
authorsurfermarly
permlinkre-yabapmatt-re-surfermarly-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180219t073206917z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-19 07:32:09
last_update2018-02-19 07:49:30
depth3
children2
last_payout2018-02-26 07:32:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,307
author_reputation318,958,646,866,746
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,721,978
net_rshares0
@surfermarly ·
Update! All voting bots - except your postpromoter - removed their votes from the respective article now. 
https://steemit.com/life/@msteemian/power-packed-20-minute-workout-routine

Do you still belive it's correct to maintain your upvote as the only service not assuming responsibility?
properties (22)
authorsurfermarly
permlinkre-yabapmatt-re-surfermarly-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180219t101131937z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/life/@msteemian/power-packed-20-minute-workout-routine"],"app":"steemit/0.1"}
created2018-02-19 10:11:30
last_update2018-02-19 10:11:30
depth3
children0
last_payout2018-02-26 10:11:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length288
author_reputation318,958,646,866,746
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,751,306
net_rshares0
@teamturnerlive ·
$1.11
Thanks for the work you're doing @yabamatt! I really like the feature you've added for the witness vote request. I wish more Steemit users would take advantage of their opportunity to shape the platform by supporting witnesses like yourself that are consistently contributing to the community. --dt
πŸ‘  
properties (23)
authorteamturnerlive
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t024450769z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabamatt"],"app":"steemit/0.1"}
created2018-02-13 02:44:51
last_update2018-02-13 02:44:51
depth1
children0
last_payout2018-02-20 02:44:51
cashout_time1969-12-31 23:59:59
total_payout_value1.100 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length298
author_reputation676,619,736,909
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,088,950
net_rshares153,332,918,494
author_curate_reward""
vote details (1)
@theuxyeti ·
@yabapmatt any interest in rebuilding steembottracker so it’s either a mobile app or a responsive web app for users? I’d be willing to rebuild the ux and ui to make the app an easier experience as for mobile it’s brutally broken. Lmk I’d work a deal with you to offer redesign work in exchange for growth assistance on articles and followers in the community lmk
properties (22)
authortheuxyeti
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180216t163326993z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-02-16 16:33:27
last_update2018-02-16 16:33:27
depth1
children2
last_payout2018-02-23 16:33:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length362
author_reputation24,787,240,560,666
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,043,037
net_rshares0
@yabapmatt ·
Hey @theuxyeti, I would absolutely love to create a better experience for mobile users. My problem is that I have a job, a family, and a constantly growing list of Steem projects so I have to aggressively prioritize my time and this isn't too high on my list.

I would be happy to work out a deal with you to redesign it but we would also need someone to actually implement the design. I'll reach out to @suggeelson to see if he is interested/able to do it since he implemented the current design, or else if you have someone else in mind let me know!
properties (22)
authoryabapmatt
permlinkre-theuxyeti-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180216t194051145z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["theuxyeti","suggeelson"],"app":"steemit/0.1"}
created2018-02-16 19:40:51
last_update2018-02-16 19:40:51
depth2
children1
last_payout2018-02-23 19:40:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length551
author_reputation160,234,431,724,160
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,079,382
net_rshares0
@theuxyeti ·
yea if you add me and look at my posts im pitching a redesign of the current steemit home page along with other pages coming. I can see a LOT of value for rebuilding steembottracker responsively. I think there are TONS of users that dont follow through with a transaction because the fields are all misaligned on mobile devices. just a thought. I am on discord at TheUXyeti as well. add me and lets chat when able.
properties (22)
authortheuxyeti
permlinkre-yabapmatt-re-theuxyeti-re-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180216t194505891z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-16 19:45:06
last_update2018-02-16 19:45:06
depth3
children0
last_payout2018-02-23 19:45:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length414
author_reputation24,787,240,560,666
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,080,144
net_rshares0
@utopian-io ·
### Hey @yabapmatt I am @utopian-io. I have just upvoted you!
#### Achievements
- WOW WOW WOW People loved what you did here. GREAT JOB!
- You are generating more rewards than average for this category. Super!;)
- Seems like you contribute quite often. AMAZING!
#### 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>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](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**
properties (22)
authorutopian-io
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t112051501z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-13 11:20:51
last_update2018-02-13 11:20:51
depth1
children0
last_payout2018-02-20 11:20:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,139
author_reputation152,955,367,999,756
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,189,691
net_rshares0
@wanasoloben ·
Thanks for the great project and contributions . I see great things being added on steemit day by day!
properties (22)
authorwanasoloben
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t084738031z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 08:48:00
last_update2018-02-13 08:48:00
depth1
children0
last_payout2018-02-20 08:48:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation9,084,056,650,022
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,160,967
net_rshares0
@williamgabriel ·
Read the entire post. Very informative.  I’m still learning about how voting bots work and how everyone wins.  The most simplified aspects of resteeminng bots I get.  It’s the next level of β€œpooled” voting that is hard to understand.
properties (22)
authorwilliamgabriel
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180213t045318382z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-13 04:53:18
last_update2018-02-13 04:53:18
depth1
children0
last_payout2018-02-20 04:53:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length233
author_reputation7,649,788,806,073
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,115,993
net_rshares0
@youcef10 ·
Thank you πŸ’
![IMG_20180204_172808.jpg](https://steemitimages.com/DQmP43e671CtsQTijJ62xMvdwnw6FxbMjE8N4P8uob44R4x/IMG_20180204_172808.jpg)
properties (22)
authoryoucef10
permlinkre-yabapmatt-post-promoter-javascript-voting-bot-blacklist-tags-round-fill-limits-and-more-20180215t195238879z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"image":["https://steemitimages.com/DQmP43e671CtsQTijJ62xMvdwnw6FxbMjE8N4P8uob44R4x/IMG_20180204_172808.jpg"],"app":"steemit/0.1"}
created2018-02-15 19:52:39
last_update2018-02-15 19:52:39
depth1
children0
last_payout2018-02-22 19:52:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation686,197,760
root_title"Post Promoter JavaScript Voting Bot - Blacklist Tags, Witness Vote Messages & More!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,823,052
net_rshares0