create account

Updated fanbase, claiming rewards and upvoting comments on Steemauto by mahdiyari

View this thread on: hive.blogpeakd.comecency.com
· @mahdiyari · (edited)
$103.44
Updated fanbase, claiming rewards and upvoting comments on Steemauto
<center>![steemauto.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1517330470/hsqo20sfc66wxvxuwfqo.png)
</center>
Updated some codes on back-end of steemauto.com
By these changes, fanbase and upvoting comments should work fine.
You don't need to understand that codes.

Commits:
[Number 1](https://github.com/mahdiyari/steemauto/commit/afc701670e79a4f4dace09ed41947ebae861332e): Streaming blocks and detecting posts which are authored by fans. Then upvoting that posts.
Some codes:
```
...
...
// Upvoting Fanbase Followers
var fanupvote = function(author,permlink){
	try{
		var datee = new Date();
		var secondss = datee.getTime()/1000;
		con.query('SELECT `follower`,`weight`,`aftermin` FROM `fanbase` WHERE `fan` = "'+author+'" AND `enable`="1"', function (error, results, fields) {
			for(i in results){
				var follower = results[i].follower;
				var voted = 0;
				if(voted == 0){
					var weight = results[i].weight;
					var aftermin = results[i].aftermin;
					var datee = new Date();
					var secondss = datee.getTime()/1000;
					var now = Math.floor(secondss);
					if(aftermin > 0){
						var time = parseInt(now+(aftermin*60));
						con.query('INSERT INTO `upvotelater`(`voter`, `author`, `permlink`, `weight`, `time`,`trail_fan`) VALUES ("'+follower+'","'+author+'","'+permlink+'","'+weight+'","'+time+'","2")', function (error, results, fields) {
						});
						console.log('fan to delay');
					}else{
						upvote(follower,author,permlink,weight);
						console.log('fan to up');
					}
				}
			}	
		});
	}
	catch(e){
		console.log('error in fan upvote.'+e);
	}
}
...
...
```
[Number 2](https://github.com/mahdiyari/steemauto/commit/015ec44dffb1cb9c5d95c2f301791f545c3b3c8b): Checking users every 15 minutes and checking their reward balance. then claiming that rewards.
Some codes:
```
...
...
//broadcasting claim reward with adding to queue
//queue will prevent blockchain spamming
var delay3 = 0;
function broadcastclaim(username,sbd,vest){
	delay3 = delay3 +1;
	setTimeout(function(){
		steem.broadcast.claimRewardBalance(wifkey,username,'0.000 STEEM',sbd,vest, function(err, result) {
			if(err){
				console.log('err in claim2.');
			}else{
				console.log('claim done.');
			}	
		});
		delay3 = delay3 -1;
	},100*delay3);
	return 1;
}
...
...
```
[Number 3](https://github.com/mahdiyari/steemauto/commit/a293233ec17969285a72a2679ad66e6a1eeae2b8): Streaming blocks and detecting comments on configured users. Then upvoting configured commenters.
Some codes:
```
...
...
// Upvoting Comments Automatically //
var delay2 = 0;
function commentupvote(userr,commenter,permlink,parentpermlink){ 
	try{
		con.query('SELECT EXISTS(SELECT * FROM `commentupvote` WHERE `user` = "'+userr+'" AND `commenter`="'+commenter+'" AND `enable`="1" AND `todayvote`<2)', function (error, results, fields) {
			for(i in results){
				for(j in results[i]){
					if(results[i][j] == 1){
						con.query('SELECT EXISTS(SELECT * FROM `upvotedcomments` WHERE `user` = "'+commenter+'" AND `permlink`="'+parentpermlink+'")', function (error, results, fields) {
							for(o in results){
								for(p in results[o]){
									if(results[o][p] == 0){
										con.query('SELECT `weight`,`aftermin` FROM `commentupvote` WHERE `user` = "'+userr+'" AND `commenter`="'+commenter+'" AND `enable`="1" AND `todayvote`<2', async function (error, results, fields) {
											for(k in results){
												var weight = results[k].weight;
												var aftermin = results[k].aftermin;
												var datee = new Date();
												var secondss = datee.getTime()/1000;
												var now = Math.floor(secondss);
												if(aftermin > 0){
													var time = parseInt(now+(aftermin*60));
													con.query('INSERT INTO `upvotelater`(`voter`, `author`, `permlink`, `weight`, `time`,`trail_fan`) VALUES ("'+userr+'","'+commenter+'","'+permlink+'","'+weight+'","'+time+'","3")', function (error, results, fields) {
													});
													con.query('UPDATE `commentupvote` SET `todayvote`=`todayvote`+1 WHERE `user` = "'+userr+'" AND `commenter`="'+commenter+'"', function (error, results, fields) {
													});
													con.query('INSERT INTO `upvotedcomments`(`user`, `permlink`,`time`) VALUES ("'+commenter+'","'+parentpermlink+'","'+now+'")', function (error, results, fields) {
													});
													console.log('comment to delay');
												}else{
													console.log('comment to upvote');
													upvote(userr,commenter,permlink,weight);
													con.query('INSERT INTO `upvotedcomments`(`user`, `permlink`,`time`) VALUES ("'+commenter+'","'+parentpermlink+'","'+now+'")', function (error, results, fields) {
													});
													con.query('UPDATE `commentupvote` SET `todayvote`=`todayvote`+1 WHERE `user` = "'+userr+'" AND `commenter`="'+commenter+'"', function (error, results, fields) {
													});
												}
											}
										});
									}
								}
							}
						});
					}
				}
			}
		});
	}
	catch(e){
		console.log('error in comment upvote.');
	}
}
...
...
```
More information about codes included as comments on each file.
***
#### What is Steemauto?
Steemauto comes with amazing features, Schedule post, Build a Fanbase, or leave a curation trail for users all around the world to follow.
Steemauto is open source, unlimited, secure and free app for steem users.
***
Regards,
Steem witness,
Mahdi Yari,
2018-01-30

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@mahdiyari/updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 410 others
properties (23)
authormahdiyari
permlinkupdated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto
categoryutopian-io
json_metadata{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":110881312,"name":"steemauto","full_name":"mahdiyari/steemauto","html_url":"https://github.com/mahdiyari/steemauto","fork":false,"owner":{"login":"mahdiyari"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemauto","steemdev","dev","contribution"],"links":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1517330470/hsqo20sfc66wxvxuwfqo.png","https://github.com/mahdiyari/steemauto/commit/afc701670e79a4f4dace09ed41947ebae861332e","https://github.com/mahdiyari/steemauto/commit/015ec44dffb1cb9c5d95c2f301791f545c3b3c8b","https://github.com/mahdiyari/steemauto/commit/a293233ec17969285a72a2679ad66e6a1eeae2b8"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1517330470/hsqo20sfc66wxvxuwfqo.png"],"moderator":{"account":"ms10398","time":"2018-01-30T17:23:07.760Z","reviewed":true,"pending":false,"flagged":false}}
created2018-01-30 17:03:39
last_update2018-01-30 17:23:06
depth0
children26
last_payout2018-02-06 17:03:39
cashout_time1969-12-31 23:59:59
total_payout_value77.552 HBD
curator_payout_value25.892 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,619
author_reputation199,864,818,197,856
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,615,859
net_rshares18,999,220,673,684
author_curate_reward""
vote details (474)
@alfa-good ·
$0.06
thanks info @mahdiyari
👍  
properties (23)
authoralfa-good
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t213637679z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-01-30 21:36:42
last_update2018-01-30 21:36:42
depth1
children0
last_payout2018-02-06 21:36:42
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation1,130,135,742,804
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,670,903
net_rshares9,347,705,354
author_curate_reward""
vote details (1)
@alimuddin ·
$0.06
It's really good the way you are giving a good message to the world,,,,
I love your post,,, thank you my dear friend for sharing with #Us,,,,,,, and very good job,,,keep it #Up,,,
👍  
properties (23)
authoralimuddin
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180131t050911074z
categoryutopian-io
json_metadata{"tags":["utopian-io","us","up"],"app":"steemit/0.1"}
created2018-01-31 05:09:21
last_update2018-01-31 05:09:21
depth1
children0
last_payout2018-02-07 05:09:21
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation1,508,436,968,834
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,761,254
net_rshares9,348,716,950
author_curate_reward""
vote details (1)
@chetanpadliya ·
$0.06
Thank you for updating about something new always, keep posting!
👍  
properties (23)
authorchetanpadliya
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-1517366619474z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemfollower/0.01"}
created2018-01-31 02:43:36
last_update2018-01-31 02:43:36
depth1
children0
last_payout2018-02-07 02:43:36
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation122,811,466,036,894
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,731,744
net_rshares9,348,716,950
author_curate_reward""
vote details (1)
@dado13btc ·
$0.06
Nice work!
👍  ,
properties (23)
authordado13btc
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t201646945z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 20:16:48
last_update2018-01-30 20:16:48
depth1
children0
last_payout2018-02-06 20:16:48
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation466,532,027,405
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,654,918
net_rshares10,029,780,044
author_curate_reward""
vote details (2)
@detlef-s ·
$0.17
Excelent job! We need all this.
👍  , ,
properties (23)
authordetlef-s
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-1517352648121z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemfollower/0.01"}
created2018-01-30 21:47:24
last_update2018-01-30 21:47:24
depth1
children0
last_payout2018-02-06 21:47:24
cashout_time1969-12-31 23:59:59
total_payout_value0.130 HBD
curator_payout_value0.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation57,617,982,713,138
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,673,026
net_rshares26,223,726,598
author_curate_reward""
vote details (3)
@diya28 ·
$0.06
can new user use it?
👍  
properties (23)
authordiya28
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t171015291z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 17:11:00
last_update2018-01-30 17:11:00
depth1
children1
last_payout2018-02-06 17:11:00
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation1,661,130,029,399
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,617,237
net_rshares9,421,565,265
author_curate_reward""
vote details (1)
@mahdiyari ·
yes. maybe some features.
properties (22)
authormahdiyari
permlinkre-diya28-re-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t173503858z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 17:35:06
last_update2018-01-30 17:35:06
depth2
children0
last_payout2018-02-06 17:35:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation199,864,818,197,856
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,622,056
net_rshares0
@dobartim ·
$0.06
Congratulation my friend
👍  
properties (23)
authordobartim
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t181432464z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 18:14:33
last_update2018-01-30 18:14:33
depth1
children0
last_payout2018-02-06 18:14:33
cashout_time1969-12-31 23:59:59
total_payout_value0.060 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation624,612,666,345,342
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,630,036
net_rshares9,421,584,908
author_curate_reward""
vote details (1)
@embesilikat ·
$0.06
"You don't need to understand that codes." this information so important for me. Because i dont understand codes :)
👍  
properties (23)
authorembesilikat
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t182413951z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 17:24:12
last_update2018-01-30 17:24:12
depth1
children0
last_payout2018-02-06 17:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation991,538,331,169
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,619,831
net_rshares9,421,565,265
author_curate_reward""
vote details (1)
@ericjordan ·
well done!
properties (22)
authorericjordan
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180131t143800550z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-31 14:38:00
last_update2018-01-31 14:38:00
depth1
children0
last_payout2018-02-07 14:38:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation-45,527,001,443
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,874,446
net_rshares0
@errisprecious ·
$0.06
Wow, i love this info. Thanks @mahdiyari. Keep us updated
👍  ,
properties (23)
authorerrisprecious
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t202839783z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-01-30 20:28:42
last_update2018-01-30 20:28:42
depth1
children0
last_payout2018-02-06 20:28:42
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation42,435,986,030
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,657,343
net_rshares10,028,970,145
author_curate_reward""
vote details (2)
@itsjessamae ·
$0.06
"You don't need to understand that codes."

Yeah I don't need to coz I know its great update :)
👍  
properties (23)
authoritsjessamae
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180131t030253534z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-31 03:02:54
last_update2018-01-31 03:02:54
depth1
children0
last_payout2018-02-07 03:02:54
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation927,195,015,511
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,735,560
net_rshares9,348,716,950
author_curate_reward""
vote details (1)
@jims ·
$0.06
Perfect
👍  
properties (23)
authorjims
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180131t212817477z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-31 21:28:33
last_update2018-01-31 21:28:33
depth1
children0
last_payout2018-02-07 21:28:33
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation1,507,168,911
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,954,459
net_rshares9,241,576,782
author_curate_reward""
vote details (1)
@kabibitak ·
Congrats @mahdiyari
properties (22)
authorkabibitak
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180131t091728934z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-01-31 09:19:18
last_update2018-01-31 09:19:18
depth1
children0
last_payout2018-02-07 09:19:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation1,532,118,490,134
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,809,955
net_rshares0
@lavinas ·
$0.06
Fantastic information. Thanks :)
👍  
properties (23)
authorlavinas
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t181415881z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 17:14:15
last_update2018-01-30 17:14:15
depth1
children0
last_payout2018-02-06 17:14:15
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation501,355,752,324
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,617,868
net_rshares9,421,565,265
author_curate_reward""
vote details (1)
@lion-inferno ·
$0.06
Thank you sir for contributing a valuable information 
It is most important for me
👍  
properties (23)
authorlion-inferno
permlinkre-mahdiyari-2018130t23303567z
categoryutopian-io
json_metadata{"tags":["utopian-io","steemauto","steemdev","dev","contribution"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-01-30 18:30:39
last_update2018-01-30 18:30:39
depth1
children0
last_payout2018-02-06 18:30:39
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation1,006,932,289,637
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,633,422
net_rshares9,424,030,469
author_curate_reward""
vote details (1)
@mahaow ·
$0.06
Thank you for the update @mahdiyari
👍  
properties (23)
authormahaow
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t171543581z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-01-30 17:15:45
last_update2018-01-30 17:15:45
depth1
children0
last_payout2018-02-06 17:15:45
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation13,902,871,419
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,618,132
net_rshares9,421,565,265
author_curate_reward""
vote details (1)
@minhazkhan ·
$0.06
Thanks for the awesome post. I have followed, upvoted your post. Just follow me and upvote this comment for future upvote for your content.
Please 1 vote me..
👍  
properties (23)
authorminhazkhan
permlinkre-mahdiyari-201821t2319839z
categoryutopian-io
json_metadata{"tags":["utopian-io","steemauto","steemdev","dev","contribution"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-01-31 20:03:18
last_update2018-01-31 20:03:18
depth1
children0
last_payout2018-02-07 20:03:18
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation4,905,925,506
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,938,037
net_rshares9,241,576,782
author_curate_reward""
vote details (1)
@ms10398 ·
$0.16
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
👍  
properties (23)
authorms10398
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t172312273z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-01-30 17:23:12
last_update2018-01-30 17:23:12
depth1
children0
last_payout2018-02-06 17:23:12
cashout_time1969-12-31 23:59:59
total_payout_value0.144 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation27,572,487,973,390
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,619,616
net_rshares23,553,913,162
author_curate_reward""
vote details (1)
@notalone · (edited)
Wow saya baru mengetahui hal ini , terimakasih @mahdiyari saya akan mengikuti selalu perkembangan terbaru dari postingan anda
properties (22)
authornotalone
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180201t042900160z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-01 04:29:12
last_update2018-02-01 04:30:15
depth1
children0
last_payout2018-02-08 04:29:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation806,212,003
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,031,752
net_rshares0
@nuridin ·
$0.06
Well done... I've signed up in steemauto few weeks ago, but actually starting using it since yesterday for the first time. I used the manual curation service which was very smooth and easy to you. But I wanted to ask you about the auto follow / follower service, is it off now?
👍  
properties (23)
authornuridin
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t170910787z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 17:09:12
last_update2018-01-30 17:09:12
depth1
children0
last_payout2018-02-06 17:09:12
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length277
author_reputation755,093,792,969
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,616,885
net_rshares9,421,565,265
author_curate_reward""
vote details (1)
@scarl ·
$0.06
thanks for informations
👍  
properties (23)
authorscarl
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t181043212z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 17:10:45
last_update2018-01-30 17:10:45
depth1
children0
last_payout2018-02-06 17:10:45
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation150,186,713,893
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,617,195
net_rshares9,421,565,265
author_curate_reward""
vote details (1)
@skwth ·
$0.06
this a good news for us also thanks for informing about this.
👍  ,
properties (23)
authorskwth
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t170541493z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 17:05:45
last_update2018-01-30 17:05:45
depth1
children0
last_payout2018-02-06 17:05:45
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation234,844,397,110
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,616,243
net_rshares9,955,251,687
author_curate_reward""
vote details (2)
@utopian-io ·
$0.06
### Hey @mahdiyari I am @utopian-io. I have just upvoted you!
#### Achievements
- WOW WOW WOW People loved what you did here. GREAT JOB!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
👍  
properties (23)
authorutopian-io
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180131t003858143z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-01-31 00:38:57
last_update2018-01-31 00:38:57
depth1
children0
last_payout2018-02-07 00:38:57
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,064
author_reputation152,955,367,999,756
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,707,050
net_rshares9,348,716,950
author_curate_reward""
vote details (1)
@walid.larbi ·
$0.06
Awesome my brother @mahdiyari always tells us a lot. We learn from you always do not skimp on us information. I follow all that is new about you. Thank you
👍  ,
properties (23)
authorwalid.larbi
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180131t002930180z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-01-31 00:29:33
last_update2018-01-31 00:29:33
depth1
children0
last_payout2018-02-07 00:29:33
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation311,267,597,896
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,705,256
net_rshares9,858,763,506
author_curate_reward""
vote details (2)
@xerohour ·
$0.06
Wow you are doing great, so many recent updates - thank you for sharing and keep improving the steemit community with your development!
👍  
properties (23)
authorxerohour
permlinkre-mahdiyari-updated-fanbase-claiming-rewards-and-upvoting-comments-on-steemauto-20180130t203802482z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-30 20:38:06
last_update2018-01-30 20:38:06
depth1
children0
last_payout2018-02-06 20:38:06
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation104,435,944,156
root_title"Updated fanbase, claiming rewards and upvoting comments on Steemauto"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,659,104
net_rshares9,424,030,469
author_curate_reward""
vote details (1)