 I'm back again with some great new updates to the Post Promoter voting bot software! It is now powering bots with over 4 Million Steem Power combined! Anyway, here are the latest developments: ## Option to auto-withdraw funds after each round Previously funds could only be automatically withdrawn from the bot account once per day, but now you can set the "frequency" option to "round_end" to distribute them after each bidding window! ``` "auto_withdrawal": { "active": true, "accounts": [ { "name": "account1", "stake": 8000 }, { "name": "account2", "stake": 2000 } ], "frequency": "round_end" } ``` ## Automatically retry failed transactions For some reasons transactions were sometimes randomly failing with a "max_block_age" error. If anyone knows what that means or why it happens please let me know! In any case I have set it up so that it will retry failed transactions (votes, withdrawals, etc) one time at which point the transaction seems to go through successfully. ``` // Try again one time on error if(retries < 1) sendVote(bid, retries + 1); else { utils.log('============= Vote transaction failed two times for: ' + bid.permlink + ' ==============='); } ``` ## Auto-withdrawal of liquid post rewards If the auto withdrawal feature is enabled it will automatically send out all of the liquid STEEM and/or SBDs in the account daily or after every bidding round. This is great if you want to automatically pay out earnings from the bot to different accounts, but the problem is that if your bot's posts get any upvotes those rewards would be auto-withdrawn as well. Now you can specify a separate account which will automatically get sent all liquid post rewards as soon as they are claimed: ``` "post_rewards_withdrawal_account": "withdraw_liquid_post_rewards_to_account", ``` ## Added a price feed setting to properly value SBD and STEEM bids Until this update the bot software valued SBD and STEEM bids the same. This means that someone who sent a 1 SBD bid would get the same vote as someone who sent a 1 STEEM bid. This was clearly not good as 1 SBD is now worth 5X what 1 STEEM is worth. It was a highly requested change and now it's done! To use it, simply set the "price_feed_url" config setting to a URL that sends the current STEEM and SBD price in USD. You are free to use the one I set up at: [https://postpromoter.com/api/prices](https://postpromoter.com/api/prices) ``` "price_feed_url": "https://postpromoter.com/api/prices" ``` Obviously this is only necessary if your bot accepts both STEEM and SBDs. ## Thanks for your support! I wanted to thank everyone who has helped and supported me in creating this software. I love that it has been able to help so many people get their content promoted. Please stay tuned for more updates in the coming weeks! Links to relevant commits: [Added price feed setting to value SBD & STEEM bids based on their priβ¦](https://github.com/MattyIce/postpromoter/commit/01b1540f412d873e9d4b1200501e3244284680f3) [Added log for retry of vote failing and fixed issue with withdrawals](https://github.com/MattyIce/postpromoter/commit/f8c75e953740de7108983dd84911cc459dd2208d) [Added feature to auto-withdraw liquid post rewards to an account](https://github.com/MattyIce/postpromoter/commit/85964c929b61d1495bd9804622bf642604a0a1a7) [Added option to withdraw funds after each bidding round](https://github.com/MattyIce/postpromoter/commit/e436e8f2fbbfc5e2eb20b9788f83ace334e7b133) <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@yabapmatt/post-promoter-javascript-voting-bot-update-4">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | yabapmatt | ||||||
---|---|---|---|---|---|---|---|
permlink | post-promoter-javascript-voting-bot-update-4 | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":112392239,"name":"postpromoter","full_name":"MattyIce/postpromoter","owner":{"login":"MattyIce","id":2294614,"avatar_url":"https://avatars1.githubusercontent.com/u/2294614?v=4","gravatar_id":"","url":"https://api.github.com/users/MattyIce","html_url":"https://github.com/MattyIce","followers_url":"https://api.github.com/users/MattyIce/followers","following_url":"https://api.github.com/users/MattyIce/following{/other_user}","gists_url":"https://api.github.com/users/MattyIce/gists{/gist_id}","starred_url":"https://api.github.com/users/MattyIce/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MattyIce/subscriptions","organizations_url":"https://api.github.com/users/MattyIce/orgs","repos_url":"https://api.github.com/users/MattyIce/repos","events_url":"https://api.github.com/users/MattyIce/events{/privacy}","received_events_url":"https://api.github.com/users/MattyIce/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/MattyIce/postpromoter","description":"Steem bid-based voting bot written in JavaScript","fork":false,"url":"https://api.github.com/repos/MattyIce/postpromoter","forks_url":"https://api.github.com/repos/MattyIce/postpromoter/forks","keys_url":"https://api.github.com/repos/MattyIce/postpromoter/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MattyIce/postpromoter/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MattyIce/postpromoter/teams","hooks_url":"https://api.github.com/repos/MattyIce/postpromoter/hooks","issue_events_url":"https://api.github.com/repos/MattyIce/postpromoter/issues/events{/number}","events_url":"https://api.github.com/repos/MattyIce/postpromoter/events","assignees_url":"https://api.github.com/repos/MattyIce/postpromoter/assignees{/user}","branches_url":"https://api.github.com/repos/MattyIce/postpromoter/branches{/branch}","tags_url":"https://api.github.com/repos/MattyIce/postpromoter/tags","blobs_url":"https://api.github.com/repos/MattyIce/postpromoter/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MattyIce/postpromoter/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MattyIce/postpromoter/git/refs{/sha}","trees_url":"https://api.github.com/repos/MattyIce/postpromoter/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MattyIce/postpromoter/statuses/{sha}","languages_url":"https://api.github.com/repos/MattyIce/postpromoter/languages","stargazers_url":"https://api.github.com/repos/MattyIce/postpromoter/stargazers","contributors_url":"https://api.github.com/repos/MattyIce/postpromoter/contributors","subscribers_url":"https://api.github.com/repos/MattyIce/postpromoter/subscribers","subscription_url":"https://api.github.com/repos/MattyIce/postpromoter/subscription","commits_url":"https://api.github.com/repos/MattyIce/postpromoter/commits{/sha}","git_commits_url":"https://api.github.com/repos/MattyIce/postpromoter/git/commits{/sha}","comments_url":"https://api.github.com/repos/MattyIce/postpromoter/comments{/number}","issue_comment_url":"https://api.github.com/repos/MattyIce/postpromoter/issues/comments{/number}","contents_url":"https://api.github.com/repos/MattyIce/postpromoter/contents/{+path}","compare_url":"https://api.github.com/repos/MattyIce/postpromoter/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MattyIce/postpromoter/merges","archive_url":"https://api.github.com/repos/MattyIce/postpromoter/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MattyIce/postpromoter/downloads","issues_url":"https://api.github.com/repos/MattyIce/postpromoter/issues{/number}","pulls_url":"https://api.github.com/repos/MattyIce/postpromoter/pulls{/number}","milestones_url":"https://api.github.com/repos/MattyIce/postpromoter/milestones{/number}","notifications_url":"https://api.github.com/repos/MattyIce/postpromoter/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MattyIce/postpromoter/labels{/name}","releases_url":"https://api.github.com/repos/MattyIce/postpromoter/releases{/id}","deployments_url":"https://api.github.com/repos/MattyIce/postpromoter/deployments","created_at":"2017-11-28T21:38:48Z","updated_at":"2017-12-06T23:23:12Z","pushed_at":"2017-12-14T21:19:40Z","git_url":"git://github.com/MattyIce/postpromoter.git","ssh_url":"git@github.com:MattyIce/postpromoter.git","clone_url":"https://github.com/MattyIce/postpromoter.git","svn_url":"https://github.com/MattyIce/postpromoter","homepage":null,"size":4230,"stargazers_count":5,"watchers_count":5,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":4,"mirror_url":null,"archived":false,"open_issues_count":5,"license":null,"forks":4,"open_issues":5,"watchers":5,"default_branch":"master","score":53.267265},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemdev","steemitdev","dev","bots"],"links":["https://postpromoter.com/api/prices","https://github.com/MattyIce/postpromoter/commit/01b1540f412d873e9d4b1200501e3244284680f3","https://github.com/MattyIce/postpromoter/commit/f8c75e953740de7108983dd84911cc459dd2208d","https://github.com/MattyIce/postpromoter/commit/85964c929b61d1495bd9804622bf642604a0a1a7","https://github.com/MattyIce/postpromoter/commit/e436e8f2fbbfc5e2eb20b9788f83ace334e7b133"]}" | ||||||
created | 2017-12-15 19:54:36 | ||||||
last_update | 2017-12-15 19:54:36 | ||||||
depth | 0 | ||||||
children | 38 | ||||||
last_payout | 2017-12-22 19:54:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 91.246 HBD | ||||||
curator_payout_value | 37.166 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 3,736 | ||||||
author_reputation | 160,224,638,135,630 | ||||||
root_title | "Post Promoter JavaScript Voting Bot - Update 4" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 23,664,678 | ||||||
net_rshares | 25,544,198,432,037 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berkah | 0 | 20,222,922,420 | 15% | ||
pnc | 0 | 36,268,542,819 | 15% | ||
teamsteem | 0 | 1,568,621,148,400 | 15% | ||
hitmeasap | 0 | 2,343,304,021 | 22% | ||
ausbitbank | 0 | 164,823,462,182 | 1% | ||
ardina | 0 | 6,552,661,096 | 20% | ||
transisto | 0 | 9,420,792,053,090 | 100% | ||
daynewright | 0 | 5,830,168,422 | 38% | ||
lamech-m | 0 | 683,263,068 | 15% | ||
aggroed | 0 | 16,679,815,339 | 100% | ||
triverse | 0 | 9,404,482,443 | 100% | ||
jamzed | 0 | 9,552,832,112 | 100% | ||
al-basir | 0 | 0 | 100% | ||
raymondmendoza | 0 | 200,858,396 | 100% | ||
ejemai | 0 | 46,626,240,556 | 48% | ||
thewisesloth | 0 | 2,185,650,074 | 100% | ||
luckyluk | 0 | 11,104,928,400 | 10% | ||
schamangerbert | 0 | 41,215,588,054 | 15% | ||
prime-cleric | 0 | 8,325,607,603 | 3% | ||
danielsaori | 0 | 91,153,881,373 | 100% | ||
greenstar | 0 | 5,446,568,615 | 15% | ||
iot-corp | 0 | 4,065,787,139 | 100% | ||
kubbyelizabeth | 0 | 15,399,293,947 | 5% | ||
mkt | 0 | 46,742,205,028 | 75% | ||
nanosesame | 0 | 19,618,827,152 | 100% | ||
lexiconical | 0 | 15,979,894,146 | 1% | ||
suggeelson | 0 | 35,167,473,952 | 100% | ||
eviljedi | 0 | 3,369,600,773 | 100% | ||
jamjamfood | 0 | 7,462,526,447 | 25% | ||
crimsonclad | 0 | 19,187,279,560 | 6% | ||
kramarenko | 0 | 116,119,403 | 100% | ||
rival | 0 | 3,741,143,896 | 7% | ||
tensor | 0 | 8,527,894,473 | 100% | ||
netuoso | 0 | 57,720,900,616 | 20% | ||
ragepeanut | 0 | 28,993,965,834 | 100% | ||
st3llar | 0 | 885,781,317 | 5% | ||
boucaron | 0 | 5,572,724,705 | 100% | ||
msp-lovebot | 0 | 79,147,527,814 | 35% | ||
sakhone | 0 | 0 | 1% | ||
nettybot | 0 | 25,377,512,974 | 100% | ||
transilvania | 0 | 614,350,425 | 100% | ||
teukufata10 | 0 | 179,943,111 | 100% | ||
matrixonsteem | 0 | 472,165,478 | 100% | ||
vdsd | 0 | 300,467,200 | 100% | ||
cryptokeepr | 0 | 64,504,043,056 | 30% | ||
steemliberator | 0 | 305,118,979 | 100% | ||
hendrasnd | 0 | 0 | 100% | ||
gee1 | 0 | 2,662,175,393 | 55% | ||
dorabot | 0 | 40,329,447,641 | 99.99% | ||
msp3k | 0 | 1,772,403,115 | 100% | ||
witnessstats | 0 | 472,231,553 | 100% | ||
reekadoh | 0 | 123,064,000 | 100% | ||
boontjie | 0 | 2,991,569,013 | 100% | ||
jefpatat | 0 | 7,831,714,820 | 100% | ||
turymenecier | 0 | 52,302,200 | 30% | ||
josefinemk | 0 | 0 | 100% | ||
walidchabir | 0 | 0 | 100% | ||
doodlebear | 0 | 357,880,023 | 20% | ||
yabapmatt | 0 | 132,419,748,897 | 100% | ||
r2steem2 | 0 | 485,925,185 | 100% | ||
synergy-now | 0 | 716,511,600 | 100% | ||
brendashockley | 0 | 58,635,900 | 20% | ||
dennisphillips | 0 | 67,894,200 | 20% | ||
blockgators | 0 | 92,572,377,769 | 20% | ||
zulfan88 | 0 | 111,099,600 | 100% | ||
hozzaraphaed | 0 | 556,864,600 | 100% | ||
syedkashifhussai | 0 | 83,513,614 | 100% | ||
peak.endrule | 0 | 8,144,371,396 | 100% | ||
cnts | 0 | 7,785,898,411 | 100% | ||
money-dreamer | 0 | 3,753,446,576 | 100% | ||
utopian-io | 0 | 12,364,137,884,889 | 8.58% | ||
socialspace | 0 | 1,910,202,549 | 15% | ||
postpromoter | 0 | 200,634,591,048 | 0.91% | ||
bestrakibul2 | 0 | 0 | 100% | ||
gruffalo | 0 | 3,944,069,759 | 100% | ||
bobinson | 0 | 1,498,349,793 | 100% | ||
nirgf | 0 | 2,384,715,530 | 100% | ||
adhew | 0 | 606,090,200 | 100% | ||
reyha | 0 | 2,193,037,526 | 38% | ||
thashadowbrokers | 0 | 56,744,244 | 100% | ||
ahmetay | 0 | 312,872,254 | 100% | ||
karthikeyan9329 | 0 | 768,131,428 | 100% | ||
the-icon | 0 | 0 | 100% | ||
hojaraskita | 0 | 96,487,206 | 100% | ||
raci | 0 | 836,703,119 | 15% | ||
sanga | 0 | 151,396,608 | 100% | ||
reynierux | 0 | 526,975,454 | 100% | ||
poyraz | 0 | 127,061,889 | 100% | ||
ohicklin | 0 | 376,115,482 | 100% | ||
ohi786 | 0 | 0 | 100% | ||
mithunrudra | 0 | 495,332,600 | 100% | ||
bigmanky | 0 | 0 | 100% | ||
akintunde | 0 | 4,144,872,949 | 100% | ||
ms10398 | 0 | 2,250,293,280 | 100% | ||
steemitxx | 0 | 0 | 100% | ||
amal123 | 0 | 599,937,000 | 100% | ||
mjrcrypto | 0 | 710,617,469,309 | 100% | ||
brotato | 0 | 275,739,265 | 100% | ||
pizaz | 0 | 275,729,799 | 100% | ||
triplethreat | 0 | 56,656,796 | 100% | ||
dootdoot | 0 | 75,822,460 | 100% | ||
wewt | 0 | 57,888,432 | 100% | ||
conflaxus | 0 | 56,656,761 | 100% | ||
tittilatey | 0 | 56,656,760 | 100% | ||
cajun | 0 | 275,729,069 | 100% | ||
coonass | 0 | 275,747,928 | 100% | ||
squirrelnuts | 0 | 281,723,152 | 100% | ||
utopy | 0 | 2,106,065,891 | 1% | ||
steemdevs | 0 | 275,726,271 | 100% | ||
jeezy | 0 | 56,651,379 | 100% | ||
vasa-the-mission | 0 | 437,983,943 | 100% | ||
titim | 0 | 302,175,728 | 100% | ||
test.with.dots | 0 | 56,633,620 | 100% | ||
pi-pi | 0 | 57,864,537 | 100% | ||
listentosteem | 0 | 56,630,321 | 100% | ||
wehmoen | 0 | 241,247,052 | 100% | ||
yakubenko | 0 | 143,996,939 | 100% | ||
itsok | 0 | 719,517,636 | 100% | ||
gravy | 0 | 61,536,420 | 100% | ||
charmz | 0 | 563,017,800 | 100% | ||
waihinoo | 0 | 467,643,200 | 100% | ||
upmewhale | 0 | 14,158,419,486 | 1.14% | ||
jolenesskincare | 0 | 504,562,400 | 100% | ||
thankgodikkc | 0 | 132,293,800 | 100% | ||
extraterrestrial | 0 | 203,089,327 | 100% | ||
abiye | 0 | 185,681,509 | 100% | ||
choiboo | 0 | 841,369,063 | 100% | ||
juzmen-juvy18 | 0 | 0 | 100% | ||
tpicric1 | 0 | 1,032,852,540 | 100% | ||
airol | 0 | 829,763,510 | 100% | ||
gloeze | 0 | 0 | 100% | ||
zibonk | 0 | 1,137,297,218 | 100% | ||
socialmediaseo | 0 | 818,156,785 | 100% | ||
rodrigo1998 | 0 | 1,009,640,176 | 100% | ||
cindyx | 0 | 649,882,304 | 100% | ||
rikiandria | 0 | 940,007,729 | 100% | ||
kylaforest | 0 | 1,015,439,501 | 100% | ||
brianrg13 | 0 | 0 | 100% | ||
mervesaglam | 0 | 0 | 100% | ||
bash11 | 0 | 0 | 100% | ||
luckyboy786 | 0 | 0 | 100% | ||
hassanzaidi | 0 | 0 | 100% | ||
alexcross | 0 | 0 | 100% | ||
brightvibes | 0 | 0 | 100% | ||
msh.akash | 0 | 0 | 100% | ||
totan86826 | 0 | 0 | 100% |
Nice post..... You just put a smile on my life @yabapmatt thumb up
author | abiye |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171215t212958844z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"} |
created | 2017-12-15 21:30:03 |
last_update | 2017-12-15 21:30:03 |
depth | 1 |
children | 0 |
last_payout | 2017-12-22 21:30:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 13,761,437,546,353 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,672,981 |
net_rshares | 0 |
Plese refund 0.05 https://steemit.com/parrot/@aliakbar2/nice-parrot
author | aliakbar2 |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171229t182813547z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1","links":["https://steemit.com/parrot/@aliakbar2/nice-parrot"]} |
created | 2017-12-29 18:28:24 |
last_update | 2017-12-29 18:29:12 |
depth | 1 |
children | 1 |
last_payout | 2018-01-05 18:28:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 260,016,665,359,301 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 25,921,039 |
net_rshares | 0 |
Your bid was automatically refunded because it was below the minimum bid amount. Please check your transaction history before posting!
author | yabapmatt |
---|---|
permlink | re-aliakbar2-re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171229t183950055z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-29 18:39:48 |
last_update | 2017-12-29 18:39:48 |
depth | 2 |
children | 0 |
last_payout | 2018-01-05 18:39:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 160,224,638,135,630 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 25,922,675 |
net_rshares | 0 |
Great update @yabapmatt
author | ankitchoudhary |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171215t213911047z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"} |
created | 2017-12-15 21:39:12 |
last_update | 2017-12-15 21:39:12 |
depth | 1 |
children | 0 |
last_payout | 2017-12-22 21:39:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.234 HBD |
curator_payout_value | 0.077 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 2,267,468,120,312 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,673,735 |
net_rshares | 51,060,223,746 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ankitchoudhary | 0 | 51,060,223,746 | 100% |
Here's a little bit about Africa. Feel free to upvote if you enjoyed it https://steemit.com/uyo/@berylwills/my-heritage-my-culture Merry Christmas to youπ
author | berylwills |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171228t162554165z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/uyo/@berylwills/my-heritage-my-culture"],"app":"steemit/0.1"} |
created | 2017-12-28 16:26:27 |
last_update | 2017-12-28 16:26:27 |
depth | 1 |
children | 0 |
last_payout | 2018-01-04 16:26:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 155 |
author_reputation | 317,999,327,687 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 25,716,947 |
net_rshares | 0 |
Here's a little bit about Africa. Feel free to upvote if you enjoyed it https://steemit.com/uyo/@berylwills/my-heritage-my-culture Merry Christmas to youπ
author | berylwills |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171228t162844539z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/uyo/@berylwills/my-heritage-my-culture"],"app":"steemit/0.1"} |
created | 2017-12-28 16:29:12 |
last_update | 2017-12-28 16:29:12 |
depth | 1 |
children | 0 |
last_payout | 2018-01-04 16:29:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 155 |
author_reputation | 317,999,327,687 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 25,717,406 |
net_rshares | 0 |
it will be great
author | choiboo |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171216t012438837z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-16 01:24:39 |
last_update | 2017-12-16 01:24:39 |
depth | 1 |
children | 0 |
last_payout | 2017-12-23 01:24:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 1,798,328,368,552 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,691,609 |
net_rshares | 0 |
Hi, I sent 0.100sbd to @postpromoter with the URL of my post and my sad was returned.... I'd like to know if I made any mistake
author | creon |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171221t210116472z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["postpromoter"],"app":"steemit/0.1"} |
created | 2017-12-21 21:02:00 |
last_update | 2017-12-21 21:02:00 |
depth | 1 |
children | 2 |
last_payout | 2017-12-28 21:02:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 2,792,252,766,467 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,586,910 |
net_rshares | 0 |
The minimum bid is 0.5 SBD.
author | yabapmatt |
---|---|
permlink | re-creon-re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171221t210249350z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-21 21:02:45 |
last_update | 2017-12-21 21:02:45 |
depth | 2 |
children | 1 |
last_payout | 2017-12-28 21:02:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 160,224,638,135,630 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,587,014 |
net_rshares | 0 |
thanks i will resend the url with the appropriate amount
author | creon |
---|---|
permlink | re-yabapmatt-re-creon-re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171218t093109140z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-21 21:54:15 |
last_update | 2017-12-21 21:54:15 |
depth | 3 |
children | 0 |
last_payout | 2017-12-28 21:54:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 2,792,252,766,467 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,592,971 |
net_rshares | 0 |
hi, i sent you a memo on you allaz bot i also sent you a message on steemit chat, i have concerns about your allaz service, please respond
author | cryptogrind |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171217t073825176z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-17 07:38:27 |
last_update | 2017-12-17 07:38:27 |
depth | 1 |
children | 1 |
last_payout | 2017-12-24 07:38:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 5,515,908,549,737 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,847,753 |
net_rshares | 0 |
You sent your initial bid right after that round ended so you got your vote in the next round.
author | yabapmatt |
---|---|
permlink | re-cryptogrind-re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171217t160519553z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-17 16:05:18 |
last_update | 2017-12-17 16:05:18 |
depth | 2 |
children | 0 |
last_payout | 2017-12-24 16:05:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 160,224,638,135,630 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,897,577 |
net_rshares | 0 |
Well done and thanks for the update! Great you got the SBD & STEEM conversion for the bids taken into account. For the price feed, any reason you decided to not go with the rate via the internal market? Curious, in case you found it unreliable.
author | danielsaori |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171215t202241350z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-15 20:22:42 |
last_update | 2017-12-15 20:22:42 |
depth | 1 |
children | 2 |
last_payout | 2017-12-22 20:22:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.389 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 244 |
author_reputation | 19,949,800,673,455 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,667,335 |
net_rshares | 66,542,587,385 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yabapmatt | 0 | 66,542,587,385 | 50% |
Glad you like it! I didn't even think to use the internal market lol...not sure how to do that, I guess I would use the steem.api.getOrderBook() call? Either way it was super simple to use the coinmarketcap.com API so I went with that!
author | yabapmatt |
---|---|
permlink | re-danielsaori-re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171215t203149411z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-15 20:31:48 |
last_update | 2017-12-15 20:31:48 |
depth | 2 |
children | 1 |
last_payout | 2017-12-22 20:31:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 235 |
author_reputation | 160,224,638,135,630 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,668,221 |
net_rshares | 8,467,846,903 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 8,467,846,903 | 9% |
I use the get_ticker call and use the returned value for 'latest' tick. See below the API call used in steem-python. ``` def get_ticker(self): """Returns the market ticker for the internal SBD:STEEM market.""" return self.exec('get_ticker', api='market_history_api')```
author | danielsaori |
---|---|
permlink | re-yabapmatt-re-danielsaori-re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171215t215406087z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-15 21:54:06 |
last_update | 2017-12-15 21:54:06 |
depth | 3 |
children | 0 |
last_payout | 2017-12-22 21:54:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 287 |
author_reputation | 19,949,800,673,455 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,674,994 |
net_rshares | 0 |
Thank you for the contribution. It has been approved. You can contact us on [Discord](https://discord.gg/UCvqCsx). **[[utopian-moderator]](https://utopian.io/moderators)**
author | emrebeyler |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171215t204730009z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/1.0.0"} |
created | 2017-12-15 20:47:30 |
last_update | 2017-12-15 20:47:30 |
depth | 1 |
children | 0 |
last_payout | 2017-12-22 20:47:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.713 HBD |
curator_payout_value | 0.218 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | 448,535,049,068,622 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,669,573 |
net_rshares | 151,211,524,667 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yabapmatt | 0 | 131,166,225,032 | 100% | ||
turbot | 0 | 4,380,178,047 | 99% | ||
gokos | 0 | 4,744,945,400 | 96% | ||
muhammetcan | 0 | 3,806,671,000 | 95% | ||
aydant | 0 | 4,885,328,400 | 97% | ||
yucealiosman | 0 | 1,125,693,601 | 99% | ||
onursa | 0 | 1,102,483,187 | 97% |
Very nice post! Your a very kind soul! I'm a steemit newbie and I really appreciate posts like these! It is such an honor to be a part of the steemit community! Such a great and helpful community! I'm telling everyone I know on this planet about steemit! Steemit to the moon! I'm following and upvoting! :)
author | extraterrestrial |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171217t201434113z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-17 20:14:33 |
last_update | 2017-12-17 20:14:33 |
depth | 1 |
children | 0 |
last_payout | 2017-12-24 20:14:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 306 |
author_reputation | 1,341,857,598,518 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,925,342 |
net_rshares | 0 |
excellent achievements, you are doing useful things that will make life easier for many. Useful work
author | frank1in |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171215t213016316z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-15 21:30:18 |
last_update | 2017-12-15 21:30:18 |
depth | 1 |
children | 0 |
last_payout | 2017-12-22 21:30:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 10,904,791,287,124 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,672,992 |
net_rshares | 1,143,100,387 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nguyenmai | 0 | 1,143,100,387 | 100% |
Its show the Power dev in steem community
author | iricardoxd | ||||||
---|---|---|---|---|---|---|---|
permlink | re-yabapmatt-20171218t192958832z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","steemdev","steemitdev","dev","bots"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-12-18 23:30:03 | ||||||
last_update | 2017-12-18 23:30:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-12-25 23:30:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 41 | ||||||
author_reputation | 173,046,500,256 | ||||||
root_title | "Post Promoter JavaScript Voting Bot - Update 4" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 24,095,751 | ||||||
net_rshares | 0 |
Good day sir @ yabapmatt I am @kennyc an active Nigerian steemian, and an active steemit promoter here in my country, Pls can you teach me or give me an insight on how these boys work and how one can invest in it. Will be a great pleasure to hear from you sir,as developing my steemit life and helping my community do the same would be my watch word. Steemon!
author | kennyc |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20180207t083348134z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["kennyc"],"app":"steemit/0.1"} |
created | 2018-02-07 08:34:00 |
last_update | 2018-02-07 08:34:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 08:34:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 360 |
author_reputation | 1,172,467,753,650 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,611,334 |
net_rshares | 0 |
Great update @yabapmatt
author | luckyboy786 |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20180119t052457339z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"} |
created | 2018-01-19 05:24:57 |
last_update | 2018-01-19 05:24:57 |
depth | 1 |
children | 0 |
last_payout | 2018-01-26 05:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | -67,869,236,239 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,550,961 |
net_rshares | 0 |
Would you like to give upvote :)
author | mervesaglam |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171228t175832553z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-28 16:57:06 |
last_update | 2017-12-28 16:57:06 |
depth | 1 |
children | 0 |
last_payout | 2018-01-04 16:57:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | -18,262,447,807 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 25,721,861 |
net_rshares | 0 |
Thank you, dear friend - you're doing a fabulous job I have no idea how you do it - but, well done Me and programming - do not go well together In JAVA I have no idea.
author | nirgf |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171215t201512754z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-15 20:15:09 |
last_update | 2017-12-15 20:15:09 |
depth | 1 |
children | 0 |
last_payout | 2017-12-22 20:15:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.071 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 3,658,575,899,162 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,666,567 |
net_rshares | 13,308,517,477 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yabapmatt | 0 | 13,308,517,477 | 10% |
@yabapmatt how can i get in touch with you good sir? :P
author | noly |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171217t101015342z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["yabapmatt"],"app":"steemit/0.1"} |
created | 2017-12-17 10:10:15 |
last_update | 2017-12-17 10:10:15 |
depth | 1 |
children | 1 |
last_payout | 2017-12-24 10:10:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.047 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 7,065,389,353,481 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,860,580 |
net_rshares | 7,742,130,288 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fcalabuig | 0 | 7,742,130,288 | 24% |
You can contact me on steemit.chat
author | yabapmatt |
---|---|
permlink | re-noly-re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171217t121238360z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-17 12:12:36 |
last_update | 2017-12-17 12:12:36 |
depth | 2 |
children | 0 |
last_payout | 2017-12-24 12:12:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 160,224,638,135,630 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,871,922 |
net_rshares | 0 |
I've been looking at several bots and it appears as though a lot of people are losing SBD/STEEM on them after curation. How does that happen and is there a way to fix it?
author | penston |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171222t224958978z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-22 22:49:57 |
last_update | 2017-12-22 22:49:57 |
depth | 1 |
children | 4 |
last_payout | 2017-12-29 22:49:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 170 |
author_reputation | 2,737,271,606,190 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,768,863 |
net_rshares | 0 |
The bots work on a bidding system, so the value of the votes received is directly dependent on the amount of bids that come in that round. If more bids come in than the bot's vote value is worth after curation, then it will be a negative direct ROI. Many people wait until the very end of the bidding round to see what the return is before deciding to bid or not. But to me the bots are a tool to help you promote your posts, not to make a quick profit. Even if you lose a little bit or break even on your bid you should gain a lot more by the increased visibility your posts receive.
author | yabapmatt |
---|---|
permlink | re-penston-re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171222t230557392z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-22 23:05:57 |
last_update | 2017-12-22 23:05:57 |
depth | 2 |
children | 3 |
last_payout | 2017-12-29 23:05:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 585 |
author_reputation | 160,224,638,135,630 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,770,525 |
net_rshares | 326,647,558 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
penston | 0 | 326,647,558 | 100% |
I completely agree with the idea of using bots as a promotional tool until you get a strong following. However, I think that people may be using bots without realising that they could be losing SBD. Automatically refunding bids (along with a message explaining why) that are at the threshold of unprofitability would establish fairness. I think I'm going to have to write a post about this.
author | penston |
---|---|
permlink | re-yabapmatt-re-penston-re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171222t234624903z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-22 23:46:24 |
last_update | 2017-12-22 23:46:24 |
depth | 3 |
children | 2 |
last_payout | 2017-12-29 23:46:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 391 |
author_reputation | 2,737,271,606,190 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,774,637 |
net_rshares | 0 |
You got a 0.91% upvote from @postpromoter courtesy of @yabapmatt!
author | postpromoter |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171216t151518346z |
category | utopian-io |
json_metadata | {"app":"postpromoter/1.6.0"} |
created | 2017-12-16 15:15:18 |
last_update | 2017-12-16 15:15:18 |
depth | 1 |
children | 0 |
last_payout | 2017-12-23 15:15:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 12,722,616,650,811 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,761,534 |
net_rshares | 0 |
Thank you for the contribution. It has been approved.
author | reddyyeswanth |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171230t130331036z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-30 13:05:54 |
last_update | 2017-12-30 13:05:54 |
depth | 1 |
children | 0 |
last_payout | 2018-01-06 13:05:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 56,252,585,067 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,044,383 |
net_rshares | 0 |
This post is very helpful and auto withdraw really great idea Thanks for update @postpromoter
author | reshmira |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171226t192227997z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["postpromoter"],"app":"steemit/0.1"} |
created | 2017-12-26 19:22:30 |
last_update | 2017-12-26 19:22:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-02 19:22:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 129,549,293,228 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 25,389,429 |
net_rshares | 0 |
You got a 1.14% upvote from @upmewhale courtesy of @yabapmatt!
author | upmewhale |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171220t055003291z |
category | utopian-io |
json_metadata | {"app":"postpromoter/1.6.0"} |
created | 2017-12-20 05:50:03 |
last_update | 2017-12-20 05:50:03 |
depth | 1 |
children | 0 |
last_payout | 2017-12-27 05:50:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.629 HBD |
curator_payout_value | 0.539 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 28,704,887,249,463 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,300,031 |
net_rshares | 343,766,719,305 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roykie17 | 0 | 0 | 100% | ||
upmewhale | 0 | 343,766,719,305 | 100% |
### 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> [](https://steemit.com/~witnesses) **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171216t213936339z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2017-12-16 21:39:36 |
last_update | 2017-12-16 21:39:36 |
depth | 1 |
children | 0 |
last_payout | 2017-12-23 21:39:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,139 |
author_reputation | 152,955,367,999,756 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,799,712 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kamilason | 0 | 0 | 100% |
Good Post... Your vote give my post. Please https://steemit.com/myanmar/@waihinoo/poem-for-steemit-friend
author | waihinoo |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171220t061351949z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/myanmar/@waihinoo/poem-for-steemit-friend"],"app":"steemit/0.1"} |
created | 2017-12-20 06:14:00 |
last_update | 2017-12-20 06:14:00 |
depth | 1 |
children | 0 |
last_payout | 2017-12-27 06:14:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | -55,676,001,656 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,302,613 |
net_rshares | 0 |
That is great. I love all bot because they not only profit themselves but also give profits to others with their awesome upvotes. Keep it up dear.
author | zakir.quetta |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171231t153812504z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-31 02:38:30 |
last_update | 2017-12-31 02:38:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-07 02:38:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 146 |
author_reputation | 8,337,949,857,235 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,143,921 |
net_rshares | 0 |
Thanks for the explanation you provided for our new-play in the steem. a very good explanation for me personally and possibly also for everyone wrote plays in the steem. Let me share your postings to the others so that the information could be useful as well. I look forward to working with you and can be your friend @yabapmatt @yabapmatt.
author | zibonk |
---|---|
permlink | re-yabapmatt-post-promoter-javascript-voting-bot-update-4-20171217t105816262z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-17 10:58:24 |
last_update | 2017-12-17 11:18:45 |
depth | 1 |
children | 0 |
last_payout | 2017-12-24 10:58:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 342 |
author_reputation | 334,877,595,037 |
root_title | "Post Promoter JavaScript Voting Bot - Update 4" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,864,831 |
net_rshares | 251,602,822 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dedeleyman | 0 | 251,602,822 | 100% |