create account

[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com by mahdiyari

View this thread on: hive.blogpeakd.comecency.com
· @mahdiyari · (edited)
$109.76
[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com
<center>![steemauto.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1517580244/zpfzxljyjd2ofukyox8a.png)
</center>
Updated some codes on back-end and front-end of steemauto.com
## Features added:
<center>![Capture.PNG](https://res.cloudinary.com/hpiynhbhq/image/upload/v1517582317/akhmfx3vafthgb59oe4q.png)
</center>
1- Voting power limit:  
Now you can set a limit on your voting power. If your voting power went lower than that limit, all of your upvotes will be paused.  
This limit by default for all users is 70%. Please login to your dashboard in steemauto and change that limit.  
<center>![Capture.PNG](https://res.cloudinary.com/hpiynhbhq/image/upload/v1517582495/ioenh4w3ilfen2pdokzg.png)
</center>  
2- Scaling in the curation trail:  
Now you can see 2 options in the settings of each trail.  
Scale and Fixed voting weight.  
Fixed option works like past. This option will upvote with exact voting weight which you configured.
But, Scale option is different. streemian users can understand this option better.  
an example for scaling: Let's say you followed trail A with 20% voting weight. When user A upvotes any post by 50% voting weight, you will upvote that post with 10% (20% of 50%) voting weight.   
<center>![Capture.PNG](https://res.cloudinary.com/hpiynhbhq/image/upload/v1517582582/natt7amzu0zeii1kfdgr.png)
</center>  
3- Searching in the fanbase:  
Now, same as curation trail, you can search in the fanbase for specific user if exists in the fanbase.  
At least one account should follow a fan to become available for search.

4- Settings:  
Settings changed for curation trail page. After clicking on settings now you will see a popup.  

### Commits:
[1](https://github.com/mahdiyari/steemauto/commit/7b9a1c9f3a8220fb8fd988e5b3b6c5adb888eec8), [2](https://github.com/mahdiyari/steemauto/commit/c113d957f58170b0cd76f7aa47a4546453d4cef4), [3](https://github.com/mahdiyari/steemauto/commit/c562ddd146064192059cf9b9de15f37362890ee0), [4](https://github.com/mahdiyari/steemauto/commit/9f3646bbdf820d99a37002c11b48130973d2c7f5), [5](https://github.com/mahdiyari/steemauto/commit/6f09239463c347536287757e57ba8f70205cb57e), [6](https://github.com/mahdiyari/steemauto/commit/cac04adc2732845c88aecbc604d6483f7cf1bdb6), [7](https://github.com/mahdiyari/steemauto/commit/170b8c71ad447bf680fb0f2967ccc4d67ac6340a), [8](https://github.com/mahdiyari/steemauto/commit/00f9a554a507c59d8115808a2580196c16d49516)

You don't need to understand these codes.
## Some codes:
```
...
...
// Check voting power limit
function checkpowerlimit(voter,author,permlink,weight){
	con.query('SELECT `current_power`,`limit_power` FROM `users` WHERE `user`="'+voter+'"', function (error, results, fields) {
		for(i in results){
			var powernow = results[i].current_power;
			var powerlimit = results[i].limit_power;
			if(powernow > powerlimit){
				upvote(voter,author,permlink,weight);
			}else{
				console.log('power is under limit user '+voter);
			}
		}
	});
	
	return 1;
}
...
...
```
***
```
...
...
var weight = results[i].weight;
var aftermin = results[i].aftermin;
var votingway = results[i].votingway;
if(votingway == 1){
weight = parseInt((weight/10000)*fweight); 
// scaling voting weight
}
...
...
```
***
```
...
...
								<!-- Settings -->
								
								<div class="modal fade" id="myModal<? echo $b['user']; ?>" role="dialog">
									<div class="modal-dialog">

									<!-- Modal content-->
										<div class="modal-content">
											<div class="modal-header">
												<button type="button" class="close" data-dismiss="modal">&times;</button>
												<h4 class="modal-title">Settings: @<? echo $b['user']; ?></h4>
											</div>
											<div class="modal-body">
												<!-- body -->
												<div style="text-align:left; display:; padding:20px;" id="set<? echo $k; ?>" class="col-md-12">
													<form onsubmit="settings('<? echo $b['user']; ?>'); return false;">
														<b style="color:orange;">Read <a target="_blank" href="/faq.php">FAQ</a> before editing.</b><br><br>
														<div class="form-group" style="border:1px solid #ddd; padding:5px;">
															<strong>Settings for Trailer: <a href="https://steemit.com/@<? echo $b['user']; ?>" target="_blank">@<? echo $b['user']; ?></a></strong>
															<br><br>
															<div class="form-check" style="margin-bottom:5px;">
																<input class="form-check-input" type="checkbox" value="" id="enable<? echo $b['user']; ?>" <? if($n['enable']){echo 'checked';} ?>>
																<label style="color:#2b0808;" class="form-check-label" id="enabling" for="defaultCheck1">
																	Enable (uncheck for disabling)
																</label>
															</div>
															<div class="form-group" style="border:1px solid #ddd; padding:5px;">
																<label>Voting weight (%): (Default is 50%)</label>
																<input id="weight<? echo $b['user']; ?>" placeholder="Voting weight" name="weight" type="number" class="form-control" value="<? echo $n['weight']/100; ?>" step="0.01" min="0" max="100">
																
																<div class="form-check">
																	<label style="color:#2b0808;" class="form-check-label">
																		<input class="form-check-input" type="radio" name="votingway<? echo $b['user']; ?>" id="votingway" value="1" <? if($n['votingway'] == 1){echo 'checked';} ?>>
																		Scale voting weight (default)
																	</label>
																</div>
																<div class="form-check">
																	<label style="color:#2b0808;" class="form-check-label">
																		<input class="form-check-input" type="radio" name="votingway<? echo $b['user']; ?>" id="votingway" value="2" <? if($n['votingway'] == 2){echo 'checked';} ?>>
																		Fixed voting weight
																	</label>
																</div>
															</div>
															
															
															<label>Time to wait before voting (minutes): (Default is 0)</label>
															<input id="aftermin<? echo $b['user']; ?>" value="<? echo $n['aftermin']; ?>" placeholder="Upvoting After X Minutes." name="aftermin" type="number" class="form-control" step="1" min="0" max="30">
															
															
															
															<input style="margin-top:10px;"value="Save Settings" type="submit" class="btn btn-primary">
														</div>
													</form>
												</div>
											</div>
											<div style="border-top:0;" class="modal-footer">
												<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
											</div>
										</div>

									</div>
								</div>
								<script>
								$(document).ready(function(){
									$('#myModal<? echo $b['user']; ?>').appendTo("body");
								});
								</script>
...
...
```
***
### 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.  
For more information about steemauto check this post: [Steemauto - free and unlimited auto upvote and auto posting service](https://steemit.com/steemauto/@steemauto/steemauto-com-free-and-unlimited-auto-upvote-and-auto-posting-service)  
***  
Regards,  
Steem witness,  
Mahdi Yari,  
2018-02-02

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@mahdiyari/important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 681 others
properties (23)
authormahdiyari
permlinkimportant-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com
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","steem","steemdev","dev"],"users":["steemauto"],"links":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1517580244/zpfzxljyjd2ofukyox8a.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517582317/akhmfx3vafthgb59oe4q.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517582495/ioenh4w3ilfen2pdokzg.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517582582/natt7amzu0zeii1kfdgr.png","https://github.com/mahdiyari/steemauto/commit/7b9a1c9f3a8220fb8fd988e5b3b6c5adb888eec8","https://github.com/mahdiyari/steemauto/commit/c113d957f58170b0cd76f7aa47a4546453d4cef4","https://github.com/mahdiyari/steemauto/commit/c562ddd146064192059cf9b9de15f37362890ee0","https://github.com/mahdiyari/steemauto/commit/9f3646bbdf820d99a37002c11b48130973d2c7f5","https://github.com/mahdiyari/steemauto/commit/6f09239463c347536287757e57ba8f70205cb57e","https://github.com/mahdiyari/steemauto/commit/cac04adc2732845c88aecbc604d6483f7cf1bdb6","https://github.com/mahdiyari/steemauto/commit/170b8c71ad447bf680fb0f2967ccc4d67ac6340a","https://github.com/mahdiyari/steemauto/commit/00f9a554a507c59d8115808a2580196c16d49516","https://steemit.com/steemauto/@steemauto/steemauto-com-free-and-unlimited-auto-upvote-and-auto-posting-service"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1517580244/zpfzxljyjd2ofukyox8a.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517582317/akhmfx3vafthgb59oe4q.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517582495/ioenh4w3ilfen2pdokzg.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517582582/natt7amzu0zeii1kfdgr.png"],"moderator":{"account":"ms10398","time":"2018-02-02T15:39:46.842Z","reviewed":true,"pending":false,"flagged":false}}
created2018-02-02 14:43:30
last_update2018-02-02 15:39:45
depth0
children54
last_payout2018-02-09 14:43:30
cashout_time1969-12-31 23:59:59
total_payout_value79.788 HBD
curator_payout_value29.976 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,603
author_reputation199,864,818,197,856
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,416,476
net_rshares21,342,899,798,502
author_curate_reward""
vote details (745)
@abtin ·
thank you
properties (22)
authorabtin
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517663504032z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemfollower/0.01"}
created2018-02-03 13:11:48
last_update2018-02-03 13:11:48
depth1
children0
last_payout2018-02-10 13:11:48
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_length9
author_reputation127,760,849,193
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,640,827
net_rshares0
@adnanrabbani ·
Amazing developments friend and very much needed too, with the help of voting power limit now we able to control our voting power in much better way, thanks for making steemauto better and better for us, Stay blessed
properties (22)
authoradnanrabbani
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t161603293z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 16:16:03
last_update2018-02-02 16:16:03
depth1
children0
last_payout2018-02-09 16:16:03
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_length216
author_reputation93,370,785,737,224
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,434,941
net_rshares0
@aftabkhan10 ·
Nice addition, thanks for the updates dude
properties (22)
authoraftabkhan10
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t145253733z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 14:52:54
last_update2018-02-02 14:52:54
depth1
children0
last_payout2018-02-09 14:52:54
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_length42
author_reputation67,607,529,862,002
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,418,367
net_rshares0
@barbod ·
Very good 
I see it
properties (22)
authorbarbod
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t080150242z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-03 08:01:54
last_update2018-02-03 08:01:54
depth1
children0
last_payout2018-02-10 08:01:54
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_reputation10,074,457,965
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,588,700
net_rshares0
@bennettitalia ·
Hi @mahdiyari! I love the idea of Steem Auto and would really like it to work, but I'm having some tech difficulties... I signed up for two curation trails, Open Mic and Curie, but my votes aren't showing up on either of them. I did send an email from the site but wanted to contact on Steemit as well. I'm wondering if I missed a step?
properties (22)
authorbennettitalia
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180222t214057871z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-22 21:40:57
last_update2018-02-22 21:40:57
depth1
children5
last_payout2018-03-01 21:40:57
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_length336
author_reputation32,795,488,146,096
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,702,644
net_rshares0
@mahdiyari ·
curation trail will not upvote trail posts, you will upvote other's posts which curie or openmic upvoted that.
👍  
properties (23)
authormahdiyari
permlinkre-bennettitalia-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180223t084308159z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-23 08:43:09
last_update2018-02-23 08:43:09
depth2
children4
last_payout2018-03-02 08:43:09
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_length110
author_reputation199,864,818,197,856
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,815,413
net_rshares3,480,456,981
author_curate_reward""
vote details (1)
@bennettitalia ·
exactly. The posts which Open Mic is upvoting are not getting upvotes from me :/
properties (22)
authorbennettitalia
permlinkre-mahdiyari-re-bennettitalia-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180223t160546677z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-23 16:05:45
last_update2018-02-23 16:05:45
depth3
children3
last_payout2018-03-02 16:05:45
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_length80
author_reputation32,795,488,146,096
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,901,509
net_rshares0
@bmj ·
steemauto is looking really good. You've done a great job here.

The only thing I would like is the ability to follow a curation trail, and not vote for my own posts.. basically if author is me then don't vote.

Other than that, great job man!!
properties (22)
authorbmj
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180206t084221528z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-06 08:42:21
last_update2018-02-06 08:42:21
depth1
children0
last_payout2018-02-13 08:42:21
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_length244
author_reputation20,531,053,043,833
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,351,828
net_rshares0
@chanjunior99 ·
Thank you for sharing
properties (22)
authorchanjunior99
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t150109301z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 15:01:12
last_update2018-02-02 15:01:12
depth1
children0
last_payout2018-02-09 15:01: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_length21
author_reputation153,446,433,868
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,419,995
net_rshares0
@cool08 ·
Thanks to that
properties (22)
authorcool08
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180204t155440002z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-04 15:54:45
last_update2018-02-04 15:54:45
depth1
children0
last_payout2018-02-11 15:54:45
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_length14
author_reputation69,041,628,905,358
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,918,817
net_rshares0
@diya28 · (edited)
steemitauto is like busy.org?
properties (22)
authordiya28
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t145134885z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 14:51:54
last_update2018-02-02 14:53:00
depth1
children0
last_payout2018-02-09 14:51:54
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_length29
author_reputation1,661,130,029,399
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,418,162
net_rshares0
@eliasahmed ·
good info....everybody will be get help from it
properties (22)
authoreliasahmed
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t155914829z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 15:59:33
last_update2018-02-02 15:59:33
depth1
children0
last_payout2018-02-09 15:59:33
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_length47
author_reputation281,707,870,385
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,431,599
net_rshares0
@elparsie ·
thank you @mahdiyari for update informasion
properties (22)
authorelparsie
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t142050046z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-03 14:21:00
last_update2018-02-03 14:21:00
depth1
children0
last_payout2018-02-10 14:21: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_length43
author_reputation881,073,978,956
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,654,775
net_rshares0
@embesilikat ·
Thanks for sharing i will add new changing
properties (22)
authorembesilikat
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t155331420z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 14:53:30
last_update2018-02-02 14:53:30
depth1
children0
last_payout2018-02-09 14:53:30
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_length42
author_reputation991,538,331,169
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,418,486
net_rshares0
@gorafarid ·
thanks for information
properties (22)
authorgorafarid
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517647984348z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemfollower/0.01"}
created2018-02-03 08:53:06
last_update2018-02-03 08:53:06
depth1
children0
last_payout2018-02-10 08:53: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_length22
author_reputation16,201,861,421,122
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,596,939
net_rshares0
@hagstrom ·
Good
properties (22)
authorhagstrom
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t083807812z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-03 08:38:12
last_update2018-02-03 08:38:12
depth1
children0
last_payout2018-02-10 08:38: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_length4
author_reputation3,461,530,512,001
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,594,528
net_rshares0
@hassanbenali ·
good article
 thank you for sharing
properties (22)
authorhassanbenali
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t144437205z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 14:44:30
last_update2018-02-02 14:44:30
depth1
children0
last_payout2018-02-09 14:44:30
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_length35
author_reputation-297,165,678,580
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,416,683
net_rshares0
@hikmahfajar ·
https://steemit.com/walkwithme/@hikmahfajar/take-a-closer-look-at-the-city-of-lhokseumawe-with-its-several-monuments-lihatlah-lebih-dekat-kota-lhokseumawe-dengan-beberapa-ec7fa0ed2caf3
properties (22)
authorhikmahfajar
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517602276004z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemfollower/0.01"}
created2018-02-02 20:11:18
last_update2018-02-02 20:11:18
depth1
children0
last_payout2018-02-09 20:11: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_length184
author_reputation15,937,524,351
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,478,821
net_rshares0
@jacoblayan ·
is the site down @mahdiyari?
properties (22)
authorjacoblayan
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t055126905z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-03 04:23:06
last_update2018-02-03 04:23:06
depth1
children1
last_payout2018-02-10 04:23: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_length28
author_reputation7,430,767,069,565
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,555,603
net_rshares0
@mahdiyari ·
fixed.
properties (22)
authormahdiyari
permlinkre-jacoblayan-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t084700693z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-03 08:47:00
last_update2018-02-03 08:47:00
depth2
children0
last_payout2018-02-10 08:47: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_length6
author_reputation199,864,818,197,856
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,595,935
net_rshares0
@jazzresin ·
Thanks. Im all signed up.
properties (22)
authorjazzresin
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180313t092507859z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-13 09:25:06
last_update2018-03-13 09:25:06
depth1
children0
last_payout2018-03-20 09:25: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_reputation7,752,236,810,872
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,099,686
net_rshares0
@jga ·
Hi @mahdiyari, I have a suggestion: Different level of remaining VOTING POWER:

I have @curie in the trail, and @qurator in the fan base. **I want to upvote all the posts of @qurator no matter my voting power**. However I only want to enter the curation trail of @curie if my voting power is greater than 90%.
properties (22)
authorjga
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180212t121628162z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari","curie","qurator"],"app":"steemit/0.1"}
created2018-02-12 12:16:30
last_update2018-02-12 12:16:30
depth1
children0
last_payout2018-02-19 12:16:30
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_length309
author_reputation76,172,796,162,312
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,922,142
net_rshares0
@kabibitak ·
Nice features.
properties (22)
authorkabibitak
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t144519753z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 14:47:06
last_update2018-02-02 14:47:06
depth1
children0
last_payout2018-02-09 14:47: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_length14
author_reputation1,532,118,490,134
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,417,193
net_rshares0
@kamuhuzuru ·
Thanks for the information, I will change the settings of my profile.
👍  
properties (23)
authorkamuhuzuru
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t144502097z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 14:45:06
last_update2018-02-02 14:45:06
depth1
children0
last_payout2018-02-09 14:45: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_length69
author_reputation3,987,750,002,756
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,416,803
net_rshares918,443,940
author_curate_reward""
vote details (1)
@kennyskitchen ·
When using the fanbase, if I fall under the minimum VP that I've set, will it stack the posts from while it's paused to be upvoted later, or are the ones between the pausing and when it restarts basically skipped?
properties (22)
authorkennyskitchen
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180331t154111649z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-31 15:41:15
last_update2018-03-31 15:41:15
depth1
children1
last_payout2018-04-07 15:41:15
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_length213
author_reputation538,197,906,318,536
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,639,982
net_rshares0
@mahdiyari ·
you will lose posts which published in that time.
properties (22)
authormahdiyari
permlinkre-kennyskitchen-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180331t171312692z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-31 17:13:15
last_update2018-03-31 17:13:15
depth2
children0
last_payout2018-04-07 17:13:15
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_length49
author_reputation199,864,818,197,856
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,653,677
net_rshares0
@lavinas ·
thank you so much
properties (22)
authorlavinas
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t155023415z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 14:50:21
last_update2018-02-02 14:50:21
depth1
children0
last_payout2018-02-09 14:50:21
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_length17
author_reputation501,355,752,324
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,417,874
net_rshares0
@ms10398 ·
$0.69
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-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t153955547z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-02 15:40:03
last_update2018-02-02 15:40:03
depth1
children0
last_payout2018-02-09 15:40:03
cashout_time1969-12-31 23:59:59
total_payout_value0.520 HBD
curator_payout_value0.172 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation27,572,487,973,390
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,427,661
net_rshares108,644,904,712
author_curate_reward""
vote details (1)
@munawar1235 ·
$0.45
Thank you @mahdiyari for your amazing projects!
👍  ,
properties (23)
authormunawar1235
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t181752461z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-02 18:17:54
last_update2018-02-02 18:17:54
depth1
children0
last_payout2018-02-09 18:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.344 HBD
curator_payout_value0.106 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation86,522,918,923,810
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,458,292
net_rshares71,142,640,469
author_curate_reward""
vote details (2)
@musicvoter ·
Hi there.

First of all I wanted to say thank you for such an awesome tool! SteemAuto is amazing!

I wasn't sure if there was a way to get hold of you for technical support or to see the "system status" as I have been having some issues with my curation trail in the last 24 hours.

There are 72 people following the trail and normally nearly all of them end up upvoting the posts that I upvote but in the last 24 hours it has only been a small number.

I have checked some accounts and they are not below the 70% limit.

If you are on Discord or somewhere the please let me know so I don't have to bother you via a comment.

Thank you!

<center>[![](https://www.atomcollectorrecords.com/beta/images/musicvoter.jpg)](https://www.AtomCollectorRecords.com)


To find out how I decide who to up vote please [READ THIS](https://steemit.com/music/@musicvoter/how-to-get-upvotes-from-musicvoter)</center>

<hr>

Do you want to ***EARN CURATION REWARDS AUTOMATICALLY*** and help independent musicians?
 [HERE'S HOW](https://steemit.com/openmic/@musicvoter/no-time-to-upvote-manually-here-s-how-to-get-curation-rewards-by-following-the-musicvoter-curation-trail)

<hr>

<center>[![](https://www.atomcollectorrecords.com/beta/images/Helpienaut_post_banner.png)](https://steemit.com/@helpie)</center>
properties (22)
authormusicvoter
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180321t123935148z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"image":["https://www.atomcollectorrecords.com/beta/images/musicvoter.jpg","https://www.atomcollectorrecords.com/beta/images/Helpienaut_post_banner.png"],"links":["https://www.AtomCollectorRecords.com","https://steemit.com/music/@musicvoter/how-to-get-upvotes-from-musicvoter","https://steemit.com/openmic/@musicvoter/no-time-to-upvote-manually-here-s-how-to-get-curation-rewards-by-following-the-musicvoter-curation-trail","https://steemit.com/@helpie"],"app":"steemit/0.1"}
created2018-03-21 12:39:36
last_update2018-03-21 12:39:36
depth1
children0
last_payout2018-03-28 12:39:36
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_length1,290
author_reputation44,808,031,768,476
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,737,391
net_rshares0
@n4zriofficial · (edited)
![Untitled.png](https://steemitimages.com/DQmd9wZiZrd9r2e7RK9YVjTQyKw1RpY8KLycXRvGtF3gmHU/Untitled.png)

Hi @mahdiyari. The site is currently down. When will goes up again?
properties (22)
authorn4zriofficial
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t050852449z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"image":["https://steemitimages.com/DQmd9wZiZrd9r2e7RK9YVjTQyKw1RpY8KLycXRvGtF3gmHU/Untitled.png"],"app":"steemit/0.1"}
created2018-02-03 05:08:54
last_update2018-02-03 05:09:24
depth1
children3
last_payout2018-02-10 05:08:54
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_length172
author_reputation1,254,705,796,017
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,562,803
net_rshares0
@mahdiyari ·
already fixed.
thanks for report.
properties (22)
authormahdiyari
permlinkre-n4zriofficial-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t084530592z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-03 08:45:30
last_update2018-02-03 08:45:30
depth2
children0
last_payout2018-02-10 08:45:30
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_length33
author_reputation199,864,818,197,856
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,595,692
net_rshares0
@thabiggdogg ·
Was just about to say something about that. It's been down for like 2 hours for me too. Maybe he is updating something for it.
properties (22)
authorthabiggdogg
permlinkre-n4zriofficial-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t054823935z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-03 05:48:30
last_update2018-02-03 05:48:30
depth2
children1
last_payout2018-02-10 05:48:30
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_length126
author_reputation4,043,763,574,256
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,568,868
net_rshares0
@n4zriofficial ·
I see. Then we should wait.
properties (22)
authorn4zriofficial
permlinkre-thabiggdogg-re-n4zriofficial-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t074310068z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-03 07:43:12
last_update2018-02-03 07:43:12
depth3
children0
last_payout2018-02-10 07:43: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_length27
author_reputation1,254,705,796,017
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,585,790
net_rshares0
@nickwalshblog ·
Thanks just joined steemauto
properties (22)
authornickwalshblog
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t145001478z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 14:49:57
last_update2018-02-02 14:49:57
depth1
children0
last_payout2018-02-09 14:49:57
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_length28
author_reputation78,926,741,251
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,417,783
net_rshares0
@notconvinced · (edited)
I just read a post where a member using Steemauto had the service upvoting random posts with their PPK that they would never have upvote themselves. Is this a known bug? Here's the post, https://steemit.com/steemauto/@gmuxx/revoked-access-to-streemian-and-changed-to-steemauto-not-happy
properties (22)
authornotconvinced
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t164517779z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/steemauto/@gmuxx/revoked-access-to-streemian-and-changed-to-steemauto-not-happy"],"app":"steemit/0.1"}
created2018-02-02 16:45:21
last_update2018-02-02 16:46:12
depth1
children1
last_payout2018-02-09 16:45:21
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_length286
author_reputation13,951,843,600,985
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries
0.
accountminnowsupport
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,440,572
net_rshares0
@mahdiyari ·
already answered to that post 14 hours ago and still no reply!
properties (22)
authormahdiyari
permlinkre-notconvinced-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t185035743z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 18:50:36
last_update2018-02-02 18:50:36
depth2
children0
last_payout2018-02-09 18:50:36
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_length62
author_reputation199,864,818,197,856
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,464,417
net_rshares0
@numanahmed ·
dear  @mahdiyari  your post is a  beautiful ... i love your all post....&  I look forward to your purchase every day,..thank you so very much for sharing......
properties (22)
authornumanahmed
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t015642825z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-03 01:56:51
last_update2018-02-03 01:56:51
depth1
children0
last_payout2018-02-10 01:56:51
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_length159
author_reputation356,081,742,115
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,533,652
net_rshares0
@ocupation ·
Every day we witness somethin new on platform, kinda nice to be part of it
 :))
properties (22)
authorocupation
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t144658595z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 14:46:57
last_update2018-02-02 14:46:57
depth1
children0
last_payout2018-02-09 14:46:57
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_length79
author_reputation114,873,328,375,322
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,417,172
net_rshares0
@pouya7 ·
thank you friend
properties (22)
authorpouya7
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517664574006z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemfollower/0.01"}
created2018-02-03 13:29:36
last_update2018-02-03 13:29:36
depth1
children0
last_payout2018-02-10 13:29:36
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_length16
author_reputation108,691,262,555
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,644,325
net_rshares0
@rasel1234 ·
very nice post dear @mahdiyari   I love your post,,this is a valuable post for us,,
properties (22)
authorrasel1234
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t154832325z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-02 15:48:42
last_update2018-02-02 15:48:42
depth1
children0
last_payout2018-02-09 15:48:42
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_length83
author_reputation107,696,836,345
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,429,415
net_rshares0
@realsteemian ·
Hi @mahdiyari
I need your help because it's the 2nd day when I go to steemfollower for my daily upvoting a message ( your daily limit reached come back tomorrow) displayed. 
Kindly help me how can I fix this problem
Thanx a million in advance
properties (22)
authorrealsteemian
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t003257994z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-03 00:33:21
last_update2018-02-03 00:33:21
depth1
children1
last_payout2018-02-10 00:33:21
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_length242
author_reputation1,116,334,122,205
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,521,209
net_rshares0
@mahdiyari ·
fixed.
properties (22)
authormahdiyari
permlinkre-realsteemian-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t084558284z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-03 08:45:57
last_update2018-02-03 08:45:57
depth2
children0
last_payout2018-02-10 08:45:57
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_length6
author_reputation199,864,818,197,856
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,595,764
net_rshares0
@realsteemian ·
Amazing feature.
properties (22)
authorrealsteemian
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t153128301z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-03 15:31:51
last_update2018-02-03 15:31:51
depth1
children0
last_payout2018-02-10 15:31:51
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_length16
author_reputation1,116,334,122,205
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,668,775
net_rshares0
@rizvy ·
@rizvy
properties (22)
authorrizvy
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517666532234z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemfollower/0.01"}
created2018-02-03 14:02:12
last_update2018-02-03 14:02:12
depth1
children0
last_payout2018-02-10 14:02: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_length6
author_reputation9,872,190,974
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,650,728
net_rshares0
@rnmn1517 ·
Informative post! Thank You @mahdiyari
properties (22)
authorrnmn1517
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180204t153250467z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-04 15:32:54
last_update2018-02-04 15:32:54
depth1
children0
last_payout2018-02-11 15:32:54
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_length38
author_reputation167,307,172,303
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,914,528
net_rshares0
@skwth ·
thanks for this informative post.can we change setting our profile??
properties (22)
authorskwth
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t160703683z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-02 16:07:09
last_update2018-02-02 16:07:09
depth1
children0
last_payout2018-02-09 16:07:09
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_length68
author_reputation234,844,397,110
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,433,161
net_rshares0
@tesselart · (edited)
Nice one man. You might not realise it but you basically made an open source alternative to Patreon here. It may not work based on time (i.e. x dollars per month) but taking the average number of posts of a given user someone follows one can set a desired voting power and auto vote their posts to give them guaranteed income (well as far as you can guarantee I suppose).

The scheduling could be improved though, I've scheduled something today and it posted it 4 minutes after it was supposed to. It was pretty weird, like the counter showed -340 seconds and the like. It would be better if the scheduler worked by date and time rather than set hours in advance. Also is there some software limitation that makes it 100 hours in advance maximum? Some people have their stuff planned out a month in advance (especially when it comes to collaborations with set release dates and the like). Does the scheduling work only when I'm logged in and have the SteemAuto page open or does it work always? Because that's kind of the point of scheduling, to do it when you're away from the computer (for instance AutoSteem doesn't publish when you haven't got the page running in the browser, which tbh defeats the purpose of a scheduler).

Sorry if it's off topic lol
properties (22)
authortesselart
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180204t055240069z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-04 05:52:42
last_update2018-02-04 06:07:39
depth1
children0
last_payout2018-02-11 05:52:42
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_length1,256
author_reputation7,121,089,886,851
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,811,949
net_rshares0
@ttinytony1989 ·
This is so helpful. I just joined thanks to this owner :)
properties (22)
authorttinytony1989
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180205t130503072z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-05 13:05:03
last_update2018-02-05 13:05:03
depth1
children0
last_payout2018-02-12 13:05:03
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_length57
author_reputation5,425,241,485
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,142,045
net_rshares0
@utopian-io ·
### 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 (22)
authorutopian-io
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t140600701z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-03 14:06:00
last_update2018-02-03 14:06:00
depth1
children0
last_payout2018-02-10 14:06: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_length1,064
author_reputation152,955,367,999,756
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,651,566
net_rshares0
@walid.larbi ·
Thank you for your information. We always learn from you my new brother @mahdiyari
properties (22)
authorwalid.larbi
permlinkre-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t223402374z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-02-02 22:34:06
last_update2018-02-02 22:34:06
depth1
children0
last_payout2018-02-09 22:34: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_length82
author_reputation311,267,597,896
root_title"[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,503,052
net_rshares0