Steem reward manager is a bot to automatically redeem your rewards, and if you get sbd, convert it to steem. And now much more ! But I won't spoil the new features.
It supports multiple accounts so you can manage as many as you want.
I created it because it was annoying to do the same things over and over again.
For more infos you can find the original post here : https://steemit.com/utopian-io/@howo/introducing-the-steem-reward-manager
You can find the code on github : https://github.com/drov0/Steem-reward-manager
It's been three months since the last update, so what happened ?
The bot is still running smoothly with almost no bugs but I noticed a few issues :
So with that in mind I got to work
The config file now has a new line :
"max_ratio" : 1.3,
this means that you won't sell any lower than 1.3 sbd = 1 steem.
This is pretty straightforward. and solves the bad trade problem
To me the ideal wallet is like this :
0 steem, x sp, 0 sbd, x steem/sbd in savings
Nothing liquid because if someone breaches my account, I'll loose all my money instantly, whereas I'm sure to notice if the savings account is being opened and I can react. Or powered up, in my case I power up everything because I believe in STEEM.
Now the reward manager can be set to automatically convert all SBD to steem with this option
"always_convert" : true,
And once you've converted that money, I've put another option to power up all the steem that you have/recieve on your account :
"always_powerup" : true
So the new configuration file is like this :
"howo" : {
"wif":"activewif",
"powerup" : true,
"max_ratio" : 1.3,
"always_convert" : true,
"always_powerup" : true
},
"account2" : {
"wif":"activewif",
"powerup" : true,
"max_ratio" : 1.3,
"always_convert" : true,
"always_powerup" : false
}// etc
wif : your active private key
powerup : power up your claimed rewards or not (true or false)
max_ratio : the maximum sbd/steem ratio.
always_convert : Always convert all the sbd to steem.
always_powerup : Always powerup all the steem.
You may think that powerup and always_powerup are the same thing but always_powerup means it'll power up all the liquid steem that you have all the time, whereas powerup will only power up your author rewards.
But yes, if both are set to true they are redundant, but this won't cause a conflict as it's handled in the code.
You can see why here : https://github.com/drov0/Steem-reward-manager/blob/master/redeemer.js#L82
First we convert the sbd to steem, then we power it up and then we claim the rewards.
What do you think is a good max_ratio ? I put 1.3 but I'm not sure myself.