drphil.rb - Voting Bot Update
New Features
- Added YAML config.
winfrey
mode that acts like the winfrey bot, all voters vote for everyonedrphil
mode one random voter votes for everyone (default)- Added
min_rep
(default25.0
) - Added
min_wait
andmax_wait
so that you can fine-tune voting delay.
- Skip posts with declined payout.
- Skip posts that already have votes from external scripts and posts that were edited.
- New argument called
replay:
allows a replay of n blocks allowing you to catch up to the present.- E.g.:
ruby drphil.rb replay:90
will replay the last 90 blocks (about 4.5 minutes).
- E.g.:
Overview
Dr. Phil (drphil.rb
) is reimplementation of the "Winfrey" voting bot specification. The goal is to give everyone an upvote.
One optional improvement is that instead of voting 1% by 100 accounts like the Winfrey bot spec, this script can vote 100% with 1 randomly chosen account.
If the complaint about Winfrey is blockchain bloat, Dr. Phil prescribes weight loss to address this. But this feature would only work if there are enough voters defined in the script. If you plan to use this script for one or two accounts, you'll probably want to adjust the VOTE_WEIGHT
constant to something a bit lower.
Install
To use this Radiator bot:
Linux
$ sudo apt-get install ruby-full git openssl libssl1.0.0 libssl-dev
$ gem install bundler
macOS
$ gem install bundler
I've tested it on various versions of ruby. The oldest one I got it to work was:
ruby 2.0.0p645 (2015-04-13 revision 50299) [x86_64-darwin14.4.0]
First, clone this gist and install the dependencies:
$ git clone https://gist.github.com/61bcc2b821aa5acb24f7fc88921950c7.git drphil
$ cd drphil
$ bundle install
Here's a sample drphil.yml
config file to use instead of the default STEEM settings:
# mode: drphil - picks one random voter for each post
# mode: winfrey - cycles all voters on each post
mode: drphil
vote_weight: 100.00 %
min_wait: 18
max_wait: 30
min_rep: 25.0
voters:
- social 5JrvPrQeBBvCRdjv29iDvkwn3EQYZ9jqfAHzrCyUvfbEbRkrYFC
- bad.account 5XXXBadWifXXXdjv29iDvkwn3EQYZ9jqfAHzrCyUvfbEbRkrYFC
skip_accounts: leeroy.jenkins the.masses danlarimer ned-reddit-login
skip_tags: nsfw test ru--mat bm-open
flag_signals: cheetah steemcleaners
chain_options:
chain: golos
url: https://node.golos.ws
Then run it:
$ ruby drphil.rb
Dr. Phil will now do it's thing. Check here to see an updated version of this bot:
https://gist.github.com/inertia186/61bcc2b821aa5acb24f7fc88921950c7
Upgrade
Typically, you can upgrade to the latest version by this command, from the original directory you cloned into:
$ git pull
Usually, this works fine as long as you haven't modified anything. If you get an error, try this:
$ git stash --all
$ git pull --rebase
$ git stash pop
If you're still having problems, I suggest starting a new clone.
Troubleshooting
Problem: What does this error mean?
drphil.yml:3: syntax error, unexpected ':', expecting end-of-input
mode: winfrey
^
Solution: You ran ruby drphil.yml
but you should run ruby drphil.rb
.
See my previous Ruby How To posts in: #radiator #ruby
Get in touch!
If you're using Dr. Phil, I'd love to hear from you. Drop me a line and tell me what you think! I'm @inertia on STEEM.
License
I don't believe in intellectual "property". If you do, consider Dr. Phil as licensed under a Creative Commons License.