Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script by klye

View this thread on steempeak.com
· @klye · (edited)
$105.47
Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script
<center>![](https://steemitimages.com/DQmZw6A9A97v3unFNs6eU4rYUU55qJsfr4qFDP8sAphZ8Vj/image.png)</center>

<center><b>Tired of having to go to your wallet to claim your hard earned post and curation rewards? I was too! So I created Rewardo and decided to share him with the STEEM Network in order to help everyone!</b></center>

<center><h1>Rewardo v0.0.1</h1></center>

Rewardo is an easy to set up NodeJS script which allows you to automate the claiming of your post and curation rewards, maximizing the amount of STEEM POWER in your account at any point in time as well as taking 1 less task off your plate! Each block it checks your account to see if you have pending rewards, if you do it automatically claims them. Set it up, run it and never worry about having to claim rewards again!

<center><h1>Installation & Bot Usage</h1></center>

Before going any further you must have NodeJS installed on your computer. As I've gone over this a few times in previous posts I'll not explain that here, but instead offer you [this link](https://steemit.com/steemdev/@klye/vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script) to teach you how to install NodeJS. Assuming you've got NodeJS installed copy the following script below into a new file called rewardov001.js and save it.


```
//------------------------------------------------------------------------------
//-- Rewardo v0.0.1 | STEEM Auto Claim Reward Bot | https://steemit.com/@klye --
//----- Developed by @KLYE || Free to Use for All! || Free to Modify -------
//----- Rekuirements to run: Node.js + steem.js
//----- npm install steem --save
//------------------------------------------------------------------------------

//----- CONFIG - Make sure to fill these 2 variables in with your own values!

//----- *IMPORTANT* - Enter your account name below (no @)
var account = "username";

//----- *IMPORTANT* - Enter private posting key here
var wif = "5YOURPRIVATEPOSTINGKEYHERE";

// Declare variables and require modules (No need to modify this)
var steem = require('steem');
var rewardvests;
var rv;
var rvnum;
var rs;
var rd;
var newestblock;

//----- Check the current block on STEEM
steem.api.streamBlockNumber(function(err1, newestblock) {
  // console output to show what block we are on
  console.log("Scanning Block #" + newestblock + " for @" + account + " Rewards");
  // fetch the account to see if we have rewards
  steem.api.getAccounts([account], function(err, response){
    //if it errors
    if(err){console.log("ERROR: Something Went Wrong Grabbing @" + account +"'s Account Info!");}
    //if it works
    if(response){
      // capture output into a variable
      rewardvests = response[0];
      // set rv variable with "reward_vesting_balance" from getAccounts call
      rv = rewardvests["reward_vesting_balance"];
      // grab the float number from reward_vesting_balance to check later for rewards
      rvnum = parseFloat(rv);
      // set rs variable with "reward_vesting_steem" from getAccounts call
      rs = rewardvests["reward_vesting_steem"];
      // set rd variable with "reward_sbd_balance" from getAccounts call
      rd = rewardvests["reward_sbd_balance"];
      // console output pending rewards
      console.log("Pending Rewards: " + rd + " / " + rs + " / " + rv);
      // if reward_vesting_balance is a positive number
        if (rvnum > 0){
          // output console rewards found
          console.log("Pending Rewards Found! Claiming Now!");
          // claim rewards call
          steem.broadcast.claimRewardBalance(wif, account,'0.000 STEEM', '0.000 SBD', rv, function(err, result) {
            // if it errors
            if(err){
              // output console we error'd
              console.log("ERROR Claiming Rewards! :(");
              // output console error info
              console.log(err);
            }
            //if it works
            if(result){
              // output console we were succesful
              console.log("Woot! Rewards Claimed!");
            }//END if(result)
          });//END steem.broadcast.claimRewardBalance
        }//END if (rvnum > 0)
    }//END if(response)
  });//END steem.api.getAccounts
});//END steem.api.streamBlockNumber
```

Once you've got the file saved make sure to fill in your account name and private posting key within the file itself else it will not work! You can find these in your wallet on Steemit.com.

Once you've gotten your info filled in go ahead and navigate to the scripts location on your computer in command prompt, running it with the <code>node rewardov001.js</code> command.

<center>![](https://steemitimages.com/DQmRzVbC7XRoxp4p2PZ2u69jBpkFERyx9KKArKK75HyeRqX/image.png)</center>

<center><b>It should boot up if you filled in your account name and posting private key correctly!</b></center>
<center><b>When it finds you have a reward it will automatically claim it for you!</b></center>

<center>![](https://steemitimages.com/DQmaesH1q6ZAHju6yNTS5wbBByZxmwms1rmtbLd9QPsEXbw/image.png)</center>

<center><h1>Enjoy!</h1></center>

<hr>

| https://steemitimages.com/200x200/http://puu.sh/rRLx4/cb96668c43.png | <center> <h4>VOTE @KLYE FOR WITNESS </h4><b><a href="https://steemit.com/~witnesses">steemit.com/~witnesses</a></b> </center> | https://steemitimages.com/200x200/http://puu.sh/rRLx4/cb96668c43.png |
|------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------|
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 144 others
properties (23)
post_id5,868,613
authorklye
permlinkrewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script
categorysteemdev
json_metadata"{"format": "markdown", "links": ["https://steemit.com/steemdev/@klye/vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script", "https://steemit.com/~witnesses"], "app": "steemit/0.1", "tags": ["steemdev", "steem", "rewardo", "nodejs", "bot"], "users": ["klye"], "image": ["https://steemitimages.com/DQmZw6A9A97v3unFNs6eU4rYUU55qJsfr4qFDP8sAphZ8Vj/image.png"]}"
created2017-07-02 09:34:27
last_update2017-07-02 09:38:06
depth0
children83
net_rshares13,621,559,655,962
last_payout2017-07-09 09:34:27
cashout_time1969-12-31 23:59:59
total_payout_value88.018 SBD
curator_payout_value17.454 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5,607
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (208)
@heelzkinu ·
Ay Ay ! 
That's a nice option to use ! 
Thank you for giving us such a fantastic information. 
@klye
properties (22)
post_id5,868,715
authorheelzkinu
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t093544730z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["klye"], "tags": ["steemdev"]}"
created2017-07-02 09:35:48
last_update2017-07-02 09:35:48
depth1
children1
net_rshares0
last_payout2017-07-09 09:35:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length100
author_reputation4,501,252,062,061
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
No worries. No fun keeping this stuff to myself anyways!
properties (22)
post_id5,869,546
authorklye
permlinkre-heelzkinu-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t094644926z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:46:45
last_update2017-07-02 09:46:45
depth2
children0
net_rshares0
last_payout2017-07-09 09:46:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length56
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@amexperts ·
Fantastic work! again @klye :)
properties (22)
post_id5,868,749
authoramexperts
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t093621189z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["klye"], "tags": ["steemdev"]}"
created2017-07-02 09:36:18
last_update2017-07-02 09:36:18
depth1
children2
net_rshares0
last_payout2017-07-09 09:36:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation239,270,352,215
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@amexperts ·
also are you using github at all? Would be great for you to host the code there for others to look at, fork, improve etc.
properties (22)
post_id5,868,891
authoramexperts
permlinkre-amexperts-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t093813129z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:38:09
last_update2017-07-02 09:38:09
depth2
children1
net_rshares0
last_payout2017-07-09 09:38:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length121
author_reputation239,270,352,215
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
I'll eventually start using it.
properties (22)
post_id5,869,272
authorklye
permlinkre-amexperts-re-amexperts-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t094313308z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:43:12
last_update2017-07-02 09:43:12
depth3
children0
net_rshares0
last_payout2017-07-09 09:43:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length31
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sanks7 ·
Wow interesting post keep it up
👍  
properties (23)
post_id5,868,764
authorsanks7
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t093615479z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:36:24
last_update2017-07-02 09:36:24
depth1
children1
net_rshares756,488,575
last_payout2017-07-09 09:36:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length31
author_reputation2,803,998,505,223
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@klye ·
Will do. Going to likely refocus back on my larger projects here shortly. :)
properties (22)
post_id5,873,917
authorklye
permlinkre-sanks7-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t105047372z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:50:48
last_update2017-07-02 10:50:48
depth2
children0
net_rshares0
last_payout2017-07-09 10:50:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length76
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@moderninvestor ·
WOW! you threw this together to help people on here?
properties (22)
post_id5,868,815
authormoderninvestor
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t093707531z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:37:09
last_update2017-07-02 09:37:09
depth1
children1
net_rshares0
last_payout2017-07-09 09:37:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length52
author_reputation864,304,286,074
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
Threw it together for my own usage but figured sharing it was in the best interest of everyone looking for this sort of thing. :)
properties (22)
post_id5,869,315
authorklye
permlinkre-moderninvestor-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t094346411z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:43:48
last_update2017-07-02 09:43:48
depth2
children0
net_rshares0
last_payout2017-07-09 09:43:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length129
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gustaf88 ·
Wow man that's awesome! Thank you very much.

![giphy-downsized (5).gif](https://steemitimages.com/DQmT6Yhs3mKbMBjMKhQo7DFjvvR2Gew21h9JWY972Pd58pd/giphy-downsized%20(5).gif)
👍  
properties (23)
post_id5,868,829
authorgustaf88
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t093717893z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmT6Yhs3mKbMBjMKhQo7DFjvvR2Gew21h9JWY972Pd58pd/giphy-downsized%20(5).gif"], "tags": ["steemdev"]}"
created2017-07-02 09:37:18
last_update2017-07-02 09:37:18
depth1
children1
net_rshares837,876,661
last_payout2017-07-09 09:37:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length173
author_reputation1,751,190,261
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@klye ·
Hail satan!
properties (22)
post_id5,872,316
authorklye
permlinkre-gustaf88-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t102743827z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:27:42
last_update2017-07-02 10:27:42
depth2
children0
net_rshares0
last_payout2017-07-09 10:27:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@joehedz · (edited)
Good post bro, keep up  the good work. much appreciated
properties (22)
post_id5,868,853
authorjoehedz
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t093735370z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:37:36
last_update2017-07-02 09:37:57
depth1
children1
net_rshares0
last_payout2017-07-09 09:37:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length55
author_reputation197,494,750,128
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
Will try. Have a good one!
properties (22)
post_id5,872,341
authorklye
permlinkre-joehedz-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t102803219z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:28:03
last_update2017-07-02 10:28:03
depth2
children0
net_rshares0
last_payout2017-07-09 10:28:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length26
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steemitqa ·
Me likey!
properties (22)
post_id5,868,946
authorsteemitqa
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t093929118z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:38:54
last_update2017-07-02 09:38:54
depth1
children1
net_rshares0
last_payout2017-07-09 09:38:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation22,967,361,763,386
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
Love you long time
properties (22)
post_id5,873,886
authorklye
permlinkre-steemitqa-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t105021863z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:50:24
last_update2017-07-02 10:50:24
depth2
children0
net_rshares0
last_payout2017-07-09 10:50:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sircork ·
Fantastic! I am going to have to modify the code to run in my node based steem.js test bench, but I'll give it a whirl. Thanks for sharing your source code!

-@sircork
properties (22)
post_id5,868,980
authorsircork
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t093919007z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:39:21
last_update2017-07-02 09:39:21
depth1
children2
net_rshares0
last_payout2017-07-09 09:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length167
author_reputation23,263,050,671,536
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
Modify away! Glad you found it of some use.
properties (22)
post_id5,869,356
authorklye
permlinkre-sircork-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t094414336z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:44:15
last_update2017-07-02 09:44:15
depth2
children1
net_rshares0
last_payout2017-07-09 09:44:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sircork ·
$: thankyou.sh
properties (22)
post_id5,869,674
authorsircork
permlinkre-klye-re-sircork-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t094824483z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:48:24
last_update2017-07-02 09:48:24
depth3
children0
net_rshares0
last_payout2017-07-09 09:48:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation23,263,050,671,536
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bayareacoins ·
$0.10
Great job bb!
👍  ,
properties (23)
post_id5,869,475
authorbayareacoins
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t094551227z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:45:51
last_update2017-07-02 09:45:51
depth1
children1
net_rshares13,371,023,649
last_payout2017-07-09 09:45:51
cashout_time1969-12-31 23:59:59
total_payout_value0.102 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length13
author_reputation8,776,742,025,360
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@klye ·
mmm bb
properties (22)
post_id5,869,515
authorklye
permlinkre-bayareacoins-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t094618310z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 09:46:18
last_update2017-07-02 09:46:18
depth2
children0
net_rshares0
last_payout2017-07-09 09:46:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@moataz ·
Good job @klye.

Sadly though my rewards are not that much that I need to worry about going to my Wallet every time to claim them.. so yeah.. I'm hoping to BE BOTHERED by claiming my rewards pretty soon.. because that means more money, right? lol
properties (22)
post_id5,869,984
authormoataz
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t095318656z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["klye"], "tags": ["steemdev"]}"
created2017-07-02 09:53:21
last_update2017-07-02 09:53:21
depth1
children2
net_rshares0
last_payout2017-07-09 09:53:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length246
author_reputation1,423,420,883,864
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
More rewards = more Steem Power = better votes = more fun!
properties (22)
post_id5,870,714
authorklye
permlinkre-moataz-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t100412309z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:04:12
last_update2017-07-02 10:04:12
depth2
children1
net_rshares0
last_payout2017-07-09 10:04:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length58
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@moataz ·
Definitely!
properties (22)
post_id5,871,122
authormoataz
permlinkre-klye-re-moataz-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t100947263z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:09:48
last_update2017-07-02 10:09:48
depth3
children0
net_rshares0
last_payout2017-07-09 10:09:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation1,423,420,883,864
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@vangelov ·
Great work man :) really awesome release for the community.. It's amazing to know how the platform works and having the ability to manipulate it in the ways you want. 
Cheers for the great release and I'd like to wish you all the best here on the community :) 
Goldie
properties (22)
post_id5,870,752
authorvangelov
permlinkre-klye-201772t13451170z
categorysteemdev
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-07-02 10:04:54
last_update2017-07-02 10:04:54
depth1
children1
net_rshares0
last_payout2017-07-09 10:04:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length267
author_reputation9,847,666,521,101
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
Thanks Goldie! Much appreciated. It's a bit to wrap your head around but once you get it.. it's there. Had a lot of help from the other developers on the platform to get my understanding up to speed. :)
properties (22)
post_id5,872,402
authorklye
permlinkre-vangelov-re-klye-201772t13451170z-20170702t102909315z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:29:09
last_update2017-07-02 10:29:09
depth2
children0
net_rshares0
last_payout2017-07-09 10:29:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length202
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@felixxx ·
So much easier with steem-python :)
```
   def claim_reward_balance(self,
                             reward_steem='0 STEEM',
                             reward_sbd='0 SBD',
                             reward_vests='0 VESTS',
                             account=None):
        """ Claim reward balances.
        By default, this will claim ``all`` outstanding balances. To bypass this behaviour,
        set desired claim amount by setting any of `reward_steem`, `reward_sbd` or `reward_vests`.
        Args:
            reward_steem (string): Amount of STEEM you would like to claim.
            reward_sbd (string): Amount of SBD you would like to claim.
            reward_vests (string): Amount of VESTS you would like to claim.
            account (string): The source account for the claim if not ``default_account`` is used.
        """
properties (22)
post_id5,871,012
authorfelixxx
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t100821384z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:08:18
last_update2017-07-02 10:08:18
depth1
children7
net_rshares0
last_payout2017-07-09 10:08:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length847
author_reputation66,238,594,869,311
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
$0.03
Yeah, but Python enforces whitespacing which goes against everything I believe. Code should be freedom damnit!
👍  ,
properties (23)
post_id5,871,077
authorklye
permlinkre-felixxx-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t100911814z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:09:12
last_update2017-07-02 10:09:12
depth2
children0
net_rshares3,818,955,082
last_payout2017-07-09 10:09:12
cashout_time1969-12-31 23:59:59
total_payout_value0.028 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length110
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@klye ·
Also my code is 2x the size because I've got everything commented so noobs can better understand the program and modify it. :)
properties (22)
post_id5,871,200
authorklye
permlinkre-felixxx-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t101045360z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:10:45
last_update2017-07-02 10:10:45
depth2
children5
net_rshares0
last_payout2017-07-09 10:10:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length126
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@felixxx ·
How to claim rewards with steem python:
```
steem.claim_reward_balance(account = 'youraccount')
```
:P
properties (22)
post_id5,871,282
authorfelixxx
permlinkre-klye-re-felixxx-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t101210255z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:12:06
last_update2017-07-02 10:12:06
depth3
children4
net_rshares0
last_payout2017-07-09 10:12:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length102
author_reputation66,238,594,869,311
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@liberosist ·
I'm glad I'm not the only one that found claiming rewards manually a chore. Thank you!
properties (22)
post_id5,871,669
authorliberosist
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t101827312z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:18:30
last_update2017-07-02 10:18:30
depth1
children3
net_rshares0
last_payout2017-07-09 10:18:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length86
author_reputation128,495,787,068,198
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
I see problems or work that could be made easier and I fix it. Tis what I do!
properties (22)
post_id5,872,468
authorklye
permlinkre-liberosist-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t103007467z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:30:06
last_update2017-07-02 10:30:06
depth2
children2
net_rshares0
last_payout2017-07-09 10:30:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length77
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@liberosist ·
I guess I can't do this for multiple accounts. I'd request that feature for the next versions :)
properties (22)
post_id5,873,427
authorliberosist
permlinkre-klye-re-liberosist-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t104359785z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:44:03
last_update2017-07-02 10:44:03
depth3
children1
net_rshares0
last_payout2017-07-09 10:44:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length96
author_reputation128,495,787,068,198
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@balibou ·
Ahah very good idea ! Thanks @klye from another JS dev ! 😀
properties (22)
post_id5,872,195
authorbalibou
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t102549107z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["klye"], "tags": ["steemdev"]}"
created2017-07-02 10:25:48
last_update2017-07-02 10:25:48
depth1
children1
net_rshares0
last_payout2017-07-09 10:25:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length58
author_reputation156,474,814,165
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
Right on! I tip my hat to you good sir!
properties (22)
post_id5,872,493
authorklye
permlinkre-balibou-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t103027376z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:30:27
last_update2017-07-02 10:30:27
depth2
children0
net_rshares0
last_payout2017-07-09 10:30:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length39
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@whd ·
You are the Master of Paint arts.
properties (22)
post_id5,872,695
authorwhd
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t103347303z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:33:45
last_update2017-07-02 10:33:45
depth1
children1
net_rshares0
last_payout2017-07-09 10:33:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length33
author_reputation17,245,137,706,712
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
I wield both Code and MS-paint as my weapons to stave off boredom and poverty!
properties (22)
post_id5,874,052
authorklye
permlinkre-whd-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t105234599z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:52:33
last_update2017-07-02 10:52:33
depth2
children0
net_rshares0
last_payout2017-07-09 10:52:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length78
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@erikaflynn ·
It must be great thing for those users who goes to vacation or want to spend holidays without Internet.
properties (22)
post_id5,873,036
authorerikaflynn
permlinkre-klye-201772t133845992z
categorysteemdev
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-07-02 10:38:48
last_update2017-07-02 10:38:48
depth1
children1
net_rshares0
last_payout2017-07-09 10:38:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length103
author_reputation12,208,622,540,590
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
I'd just planed to run it in the background to maximize the amount of SP I had at any given time but yeah.. You are totally right. People that will be knowingly away from their internet connections for a bit can totally use this tool.
properties (22)
post_id5,874,126
authorklye
permlinkre-erikaflynn-re-klye-201772t133845992z-20170702t105335169z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:53:36
last_update2017-07-02 10:53:36
depth2
children0
net_rshares0
last_payout2017-07-09 10:53:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length234
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gary-wood ·
$0.03
I was wondering why no setting for this to be done automatically. Thanks for this.
👍  
properties (23)
post_id5,873,085
authorgary-wood
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t103917382z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:39:18
last_update2017-07-02 10:39:18
depth1
children2
net_rshares4,365,046,361
last_payout2017-07-09 10:39:18
cashout_time1969-12-31 23:59:59
total_payout_value0.032 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length82
author_reputation407,380,277,804
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@klye ·
$0.03
It actually used to automatically deposit rewards into your account but was changed so people had to claim them maybe 2 hardforks ago or so? I missed the way it used to be so I emulated it's functionality in this script. :)
👍  
properties (23)
post_id5,873,839
authorklye
permlinkre-gary-wood-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t104952484z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:49:54
last_update2017-07-02 10:49:54
depth2
children1
net_rshares4,126,952,923
last_payout2017-07-09 10:49:54
cashout_time1969-12-31 23:59:59
total_payout_value0.026 SBD
curator_payout_value0.003 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length223
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@gary-wood ·
ah ok, been using for a year but only recently been active so didn't know
properties (22)
post_id5,875,241
authorgary-wood
permlinkre-klye-re-gary-wood-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t110757429z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 11:07:57
last_update2017-07-02 11:07:57
depth3
children0
net_rshares1,670,576,474
last_payout2017-07-09 11:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length73
author_reputation407,380,277,804
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@princekayani ·
Brilliants.
properties (22)
post_id5,873,633
authorprincekayani
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t104700793z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:47:24
last_update2017-07-02 10:47:24
depth1
children1
net_rshares0
last_payout2017-07-09 10:47:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation61,344,803,233
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
Oh stahp. :P
properties (22)
post_id5,874,166
authorklye
permlinkre-princekayani-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t105407823z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:54:06
last_update2017-07-02 10:54:06
depth2
children0
net_rshares0
last_payout2017-07-09 10:54:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length12
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@robi8888 ·
Good job good post
properties (22)
post_id5,873,731
authorrobi8888
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t104835358z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 10:48:36
last_update2017-07-02 10:48:36
depth1
children0
net_rshares0
last_payout2017-07-09 10:48:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation938,041,866,639
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@uneducated ·
Claim reward is on of the best thing to do at this site))
properties (22)
post_id5,875,060
authoruneducated
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t110339943z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 11:05:39
last_update2017-07-02 11:05:39
depth1
children0
net_rshares0
last_payout2017-07-09 11:05:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length57
author_reputation-2,664,130,874,305
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@timcrypto ·
Very cool tool!
properties (22)
post_id5,876,845
authortimcrypto
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t112717502z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 11:27:18
last_update2017-07-02 11:27:18
depth1
children0
net_rshares0
last_payout2017-07-09 11:27:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length15
author_reputation68,654,129,782
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ivanpopov ·
Thank you for your post and contributing to the community. 
Hell of a cool name  - Rewardo ;)
properties (22)
post_id5,878,495
authorivanpopov
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t114538456z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 11:47:12
last_update2017-07-02 11:47:12
depth1
children0
net_rshares0
last_payout2017-07-09 11:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length93
author_reputation33,197,938,121
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mkotibabu ·
Well explained, and thanks for info
properties (22)
post_id5,879,656
authormkotibabu
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t120027976z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 12:00:33
last_update2017-07-02 12:00:33
depth1
children0
net_rshares0
last_payout2017-07-09 12:00:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length35
author_reputation4,922,913,696
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gwapology ·
very clever
properties (22)
post_id5,881,114
authorgwapology
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t121656502z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 12:17:00
last_update2017-07-02 12:17:00
depth1
children0
net_rshares0
last_payout2017-07-09 12:17:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation5,609,044,543,142
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rtdcs ·
Very nice!
properties (22)
post_id5,884,216
authorrtdcs
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t125114085z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 12:51:15
last_update2017-07-02 12:51:15
depth1
children0
net_rshares0
last_payout2017-07-09 12:51:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation19,448,624,389,373
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@luckysteem ·
Hi, im new on steemit and i dont know if you guys claim steem to poloniex or some other exchange cuz poloniex has disabled it?
properties (22)
post_id5,884,270
authorluckysteem
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t125048903z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 12:51:48
last_update2017-07-02 12:51:48
depth1
children0
net_rshares0
last_payout2017-07-09 12:51:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length126
author_reputation888,973,651,263
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@lig007 ·
This is like one of those movies where the main character has a rube goldberg machine to give him breakfast in the morning.
properties (22)
post_id5,884,313
authorlig007
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t125211241z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-02 12:52:12
last_update2017-07-02 12:52:12
depth1
children0
net_rshares0
last_payout2017-07-09 12:52:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length123
author_reputation859,893,061,133
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@pal ·
$11.66
Nice! But competition are heating up! https://steemit.com/steemdev/@felixxx/rewardinator-steem-bot-v0-0-1-open-source-steem-python-auto-reward-claim-script
😄
👍  
properties (23)
post_id5,884,679
authorpal
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t125603516z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/steemdev/@felixxx/rewardinator-steem-bot-v0-0-1-open-source-steem-python-auto-reward-claim-script"], "tags": ["steemdev"]}"
created2017-07-02 12:56:03
last_update2017-07-02 12:56:03
depth1
children1
net_rshares1,544,888,319,904
last_payout2017-07-09 12:56:03
cashout_time1969-12-31 23:59:59
total_payout_value8.746 SBD
curator_payout_value2.914 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length157
author_reputation12,208,622,540,590
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@cryptoinvestinfo ·
https://media.giphy.com/media/26gsjCZpPolPr3sBy/giphy.gif

https://steemit.com/@cryptoinvestinfo

@cryptoinvestinfo



your CryptoInvestmentExpert
👍  
properties (23)
post_id12,598,215
authorcryptoinvestinfo
permlinkre-pal-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170912t021259179z
categorysteemdev
json_metadata"{"links": ["https://steemit.com/@cryptoinvestinfo"], "app": "steemit/0.1", "users": ["cryptoinvestinfo"], "image": ["https://media.giphy.com/media/26gsjCZpPolPr3sBy/giphy.gif"], "tags": ["steemdev"]}"
created2017-09-12 02:13:00
last_update2017-09-12 02:13:00
depth2
children0
net_rshares557,527,458
last_payout2017-09-19 02:13:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length146
author_reputation762,469,054,644
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@enazwahsdarb ·
Damn son this looks technical :P Good job @Klye!
![PC guy comfused.png](https://steemitimages.com/DQmPgWWpgRj5VbgXLtnyekS5VZkKP1zASEqEsmFDRB2x1uF/PC%20guy%20comfused.png)
properties (22)
post_id5,885,016
authorenazwahsdarb
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170702t125924754z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["klye"], "image": ["https://steemitimages.com/DQmPgWWpgRj5VbgXLtnyekS5VZkKP1zASEqEsmFDRB2x1uF/PC%20guy%20comfused.png"], "tags": ["steemdev"]}"
created2017-07-02 12:59:27
last_update2017-07-02 12:59:27
depth1
children0
net_rshares0
last_payout2017-07-09 12:59:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length170
author_reputation37,535,693,521,838
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mahdiyari ·
$0.19
thanks for sharing
followed
wow i'm your 2000'th follower :D
👍  
properties (23)
post_id5,970,861
authormahdiyari
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170703t062827731z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-03 06:28:57
last_update2017-07-03 06:28:57
depth1
children0
net_rshares27,234,057,977
last_payout2017-07-10 06:28:57
cashout_time1969-12-31 23:59:59
total_payout_value0.146 SBD
curator_payout_value0.048 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length60
author_reputation50,504,878,810,975
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@rangertx ·
great idea!
👍  
properties (23)
post_id6,040,846
authorrangertx
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-201773t154843631z
categorysteemdev
json_metadata"{"tags": [], "format": "markdown+html", "app": "chainbb/0.3"}"
created2017-07-03 19:48:45
last_update2017-07-03 19:48:45
depth1
children0
net_rshares242,883,066
last_payout2017-07-10 19:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation31,380,991,891,751
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@serioustalk99 · (edited)
Appreciate ur hard work @klye but i dont think i will need it to redeem my few pennies :'(
properties (22)
post_id6,044,906
authorserioustalk99
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170703t203333076z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["klye"], "tags": ["steemdev"]}"
created2017-07-03 20:33:30
last_update2017-07-03 20:34:18
depth1
children2
net_rshares0
last_payout2017-07-10 20:33:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation24,359,404,472
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@klye ·
You'll get there.. I used to be lucky to make pennies!
properties (22)
post_id6,045,026
authorklye
permlinkre-serioustalk99-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170703t203447442z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-03 20:34:48
last_update2017-07-03 20:34:48
depth2
children1
net_rshares0
last_payout2017-07-10 20:34:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length54
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@serioustalk99 ·
well thanks for the motivation
properties (22)
post_id6,045,208
authorserioustalk99
permlinkre-klye-re-serioustalk99-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170703t203647443z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-03 20:36:45
last_update2017-07-03 20:36:45
depth3
children0
net_rshares0
last_payout2017-07-10 20:36:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation24,359,404,472
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@serggioc ·
Good. But what about a chrome extension? And not needing to setup user/password?
👍  
properties (23)
post_id6,054,480
authorserggioc
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170703t222451786z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-03 22:24:54
last_update2017-07-03 22:24:54
depth1
children0
net_rshares780,913,802
last_payout2017-07-10 22:24:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length80
author_reputation474,970,532,648
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@virtualgrowth ·
Awesome @klye!  Have Node.js already.
properties (22)
post_id6,113,443
authorvirtualgrowth
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170704t120823506z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["klye"], "tags": ["steemdev"]}"
created2017-07-04 12:08:24
last_update2017-07-04 12:08:24
depth1
children0
net_rshares0
last_payout2017-07-11 12:08:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length37
author_reputation170,695,559,013,658
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@eltooni ·
$0.15
Great job @klye,

But to be honest with you nothing is more satisfying than claiming my rewards from my wallet lol.
👍  
properties (23)
post_id6,147,737
authoreltooni
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170704t181118250z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["klye"], "tags": ["steemdev"]}"
created2017-07-04 18:11:18
last_update2017-07-04 18:11:18
depth1
children0
net_rshares23,553,637,494
last_payout2017-07-11 18:11:18
cashout_time1969-12-31 23:59:59
total_payout_value0.146 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length115
author_reputation1,621,810,097,358
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@rival · (edited)
$0.02
Lmao, i maybe Can understand you build it. But the most Minnows are happy to press the button And see they have another 0.01.. So i hope to use this script once in the future.. i hope all whales votes to this post So i Can press the button And see $10 once!!!
👍  , , , , , , ,
properties (23)
post_id6,148,399
authorrival
permlinkre-klye-201774t201843535z
categorysteemdev
json_metadata"{"app": "esteem/1.4.5", "format": "markdown+html", "community": "esteem", "tags": "steemdev"}"
created2017-07-04 18:18:48
last_update2017-07-04 18:23:12
depth1
children0
net_rshares3,747,966,944
last_payout2017-07-11 18:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.022 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length259
author_reputation53,292,570,288,120
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (8)
@crypto-p ·
$0.05
resteemed
👍  
properties (23)
post_id6,149,122
authorcrypto-p
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170704t182724793z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-04 18:27:27
last_update2017-07-04 18:27:27
depth1
children0
net_rshares8,849,582,010
last_payout2017-07-11 18:27:27
cashout_time1969-12-31 23:59:59
total_payout_value0.054 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation50,894,009,515,180
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@thomaskikansha ·
$0.23
Wow thats very nice tool
👍  , ,
properties (23)
post_id6,149,164
authorthomaskikansha
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-201775t2272720z
categorysteemdev
json_metadata"{"tags": [], "format": "markdown+html", "app": "chainbb/0.3"}"
created2017-07-04 18:27:51
last_update2017-07-04 18:27:51
depth1
children0
net_rshares42,401,381,819
last_payout2017-07-11 18:27:51
cashout_time1969-12-31 23:59:59
total_payout_value0.225 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length24
author_reputation32,525,368,243,130
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@tohamy7 ·
A great publication. Well done. Greetings. Happy day. Please support me
properties (22)
post_id6,149,744
authortohamy7
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170704t173415166z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-04 18:34:39
last_update2017-07-04 18:34:39
depth1
children0
net_rshares0
last_payout2017-07-11 18:34:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length71
author_reputation8,799,225,435,691
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tohamy7 ·
A great publication. Well done. Greetings. Happy day. Please support me
properties (22)
post_id6,149,807
authortohamy7
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170704t173459787z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-04 18:35:21
last_update2017-07-04 18:35:21
depth1
children0
net_rshares0
last_payout2017-07-11 18:35:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length71
author_reputation8,799,225,435,691
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@josedariocamacho ·
Good afternoon I want to thank you deeply for this good data that you give us and believe me I take it into account to execute it, post as yours there must be more for the good of our colleagues in steemit
properties (22)
post_id6,152,572
authorjosedariocamacho
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170704t190930716z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-04 19:09:33
last_update2017-07-04 19:09:33
depth1
children0
net_rshares0
last_payout2017-07-11 19:09:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length205
author_reputation61,344,803,233
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@livelifefullest ·
Very impressive you build this. Many will be happy with this opportunity. I will try to intall and hope to collect automatically. THANKS !
properties (22)
post_id6,154,513
authorlivelifefullest
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170704t193129845z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-04 19:31:33
last_update2017-07-04 19:31:33
depth1
children0
net_rshares0
last_payout2017-07-11 19:31:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length138
author_reputation16,426,897,814,016
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@paint-trail · (edited)
$0.02
Paint-trail approves this awesome art! You just got the jackpot with a 100% vote
 ![paintttrail.jpg](https://steemitimages.com/DQmQprMNo6RAT57VnAfkJVUf9qkq2Kw9Mi8oe5SPoAuXRws/paintttrail.jpg)
👍  
properties (23)
post_id6,271,759
authorpaint-trail
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170705t215829500z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmQprMNo6RAT57VnAfkJVUf9qkq2Kw9Mi8oe5SPoAuXRws/paintttrail.jpg"], "tags": ["steemdev"]}"
created2017-07-05 21:58:30
last_update2017-07-05 21:59:30
depth1
children0
net_rshares5,338,627,529
last_payout2017-07-12 21:58:30
cashout_time1969-12-31 23:59:59
total_payout_value0.018 SBD
curator_payout_value0.006 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length191
author_reputation1,513,561,248
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@votergirl ·
Follow me
properties (22)
post_id6,353,198
authorvotergirl
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170706t162715199z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-06 16:27:33
last_update2017-07-06 16:27:33
depth1
children0
net_rshares0
last_payout2017-07-13 16:27:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation1,746,715,693
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@waynevan ·
$0.67
I know your a funny dude so enter this one klye!
https://steemit.com/competition/@waynevan/i-bring-to-you-today-the-new-steemit-s-funny-guys-competition-enter-now-for-free
👍  
properties (23)
post_id6,418,213
authorwaynevan
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170707t070542600z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/competition/@waynevan/i-bring-to-you-today-the-new-steemit-s-funny-guys-competition-enter-now-for-free"], "tags": ["steemdev"]}"
created2017-07-07 07:05:45
last_update2017-07-07 07:05:45
depth1
children0
net_rshares144,891,527,976
last_payout2017-07-14 07:05:45
cashout_time1969-12-31 23:59:59
total_payout_value0.505 SBD
curator_payout_value0.168 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length171
author_reputation130,817,747,426
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@indiantraveller ·
This script needs to be running 24 hrs right.. this will ruin my system
properties (22)
post_id6,566,541
authorindiantraveller
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20170708t181214978z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-07-08 18:12:18
last_update2017-07-08 18:12:18
depth1
children0
net_rshares0
last_payout2017-07-15 18:12:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length71
author_reputation9,697,653,591,082
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rycharde ·
$0.02
Yes, yet another micro-chore automated - thanks!
👍  
properties (23)
post_id6,719,586
authorrycharde
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-2017710t132038584z
categorysteemdev
json_metadata"{"tags": [], "format": "markdown+html", "app": "chainbb/0.3"}"
created2017-07-10 06:21:00
last_update2017-07-10 06:21:00
depth1
children0
net_rshares8,110,013,206
last_payout2017-07-17 06:21:00
cashout_time1969-12-31 23:59:59
total_payout_value0.024 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length48
author_reputation19,398,930,083,242
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@drakos ·
$1.84
Nice script. But it's not claiming SBD rewards. Here's a fix.
Change this:
```
      if (rvnum > 0) {
        // output console rewards found
        console.log("Pending Rewards Found! Claiming Now!");
        // claim rewards call
        steem.broadcast.claimRewardBalance(wif, account, '0.000 STEEM', '0.000 SBD', rv, function (err, result) {
```
to this:
```
      if (rvnum > 0 || rd > 0) {
        // output console rewards found
        console.log("Pending Rewards Found! Claiming Now!");
        // claim rewards call
        steem.broadcast.claimRewardBalance(wif, account, '0.000 STEEM', rd, rv, function (err, result) {
```
👍  
properties (23)
post_id18,537,025
authordrakos
permlinkre-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20171123t211821033z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-11-23 21:19:24
last_update2017-11-23 21:19:24
depth1
children2
net_rshares739,474,401,172
last_payout2017-11-30 21:19:24
cashout_time1969-12-31 23:59:59
total_payout_value1.376 SBD
curator_payout_value0.459 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length636
author_reputation106,605,049,898,479
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@klye ·
..! Hell yeah man. Well done.

I just realized this after you mentioned it. Thank you for helping!
properties (22)
post_id18,564,349
authorklye
permlinkre-drakos-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20171124t065654668z
categorysteemdev
json_metadata"{"app": "busy/2.0.0", "community": "busy", "tags": ["steemdev"]}"
created2017-11-24 06:56:54
last_update2017-11-24 06:56:54
depth2
children1
net_rshares0
last_payout2017-12-01 06:56:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length98
author_reputation257,698,037,451,488
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@drakos ·
My pleasure. I've been digging into steem-js lately, it's cool stuff. Playing around with it and testing scripts :)
properties (22)
post_id18,617,044
authordrakos
permlinkre-klye-re-drakos-re-klye-rewardo-steem-bot-v0-0-1-open-source-nodejs-auto-reward-claim-script-20171124t205328606z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-11-24 20:54:30
last_update2017-11-24 20:54:30
depth3
children0
net_rshares0
last_payout2017-12-01 20:54:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length115
author_reputation106,605,049,898,479
root_title"Rewardo STEEM Bot v0.0.1 - Open Source NodeJS Auto Reward Claim Script"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000