<center> </center> Updated some codes on back-end and front-end of steemauto.com ## Features added: <center> </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> </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> </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">×</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/>
author | mahdiyari | ||||||
---|---|---|---|---|---|---|---|
permlink | important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com | ||||||
category | utopian-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}} | ||||||
created | 2018-02-02 14:43:30 | ||||||
last_update | 2018-02-02 15:39:45 | ||||||
depth | 0 | ||||||
children | 54 | ||||||
last_payout | 2018-02-09 14:43:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 79.788 HBD | ||||||
curator_payout_value | 29.976 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 7,603 | ||||||
author_reputation | 199,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_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 34,416,476 | ||||||
net_rshares | 21,342,899,798,502 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steem-samiam | 0 | 86,642,282,686 | 100% | ||
dana-edwards | 0 | 895,021,608,371 | 85.55% | ||
teamsteem | 0 | 172,195,083,996 | 1% | ||
arzy | 0 | 212,778,811 | 100% | ||
xdark21 | 0 | 9,144,706,660 | 100% | ||
spikykevin | 0 | 7,063,719,784 | 100% | ||
olyup | 0 | 13,982,674,082 | 37% | ||
bitland | 0 | 29,663,861,527 | 100% | ||
candyshop | 0 | 458,690,963 | 100% | ||
bitmaxt | 0 | 468,912,246 | 100% | ||
olesh | 0 | 1,201,230,506 | 100% | ||
shivohum2015 | 0 | 560,745,891 | 2% | ||
defango | 0 | 64,433,060,579 | 33.33% | ||
skylineking88 | 0 | 2,580,950,897 | 100% | ||
carterx7 | 0 | 99,335,627,353 | 100% | ||
mashup | 0 | 4,944,944,821 | 100% | ||
haphazard-hstead | 0 | 151,221,011,544 | 100% | ||
vannour | 0 | 26,995,097,270 | 100% | ||
steemworld | 0 | 45,361,318,556 | 100% | ||
techmaster | 0 | 2,100,262,035 | 10% | ||
hopehuggs | 0 | 469,806,721,583 | 100% | ||
thepassenger | 0 | 16,097,344,594 | 100% | ||
khalilalfamahera | 0 | 3,192,424,245 | 100% | ||
saleg25 | 0 | 5,217,107,783 | 10% | ||
askari | 0 | 103,106,859,750 | 100% | ||
theodosis63 | 0 | 1,528,775,985 | 100% | ||
raja | 0 | 271,096,951 | 1% | ||
enlight100 | 0 | 268,557,235 | 100% | ||
justinashby | 0 | 567,759,667 | 100% | ||
sixexgames | 0 | 7,022,046,343 | 100% | ||
anwarabdullah | 0 | 5,352,193,510 | 85.55% | ||
plamenm | 0 | 1,237,479,410 | 100% | ||
macbaren | 0 | 33,510,558,334 | 10% | ||
c0ff33a | 0 | 45,719,427,314 | 25% | ||
teuku.reza | 0 | 761,717,231 | 50% | ||
hanjo42 | 0 | 1,477,394,373 | 100% | ||
freedomexists | 0 | 5,430,945,447 | 85.55% | ||
onlyonce | 0 | 595,842,097 | 100% | ||
rencong | 0 | 579,948,214 | 100% | ||
bendany | 0 | 694,440,671 | 100% | ||
szokerobert | 0 | 8,156,978,539 | 100% | ||
dirkzett-english | 0 | 382,720,084,076 | 100% | ||
cheapogroovo | 0 | 1,962,651,575 | 100% | ||
waldfee | 0 | 10,024,717,170 | 100% | ||
jacalf | 0 | 569,667,522 | 100% | ||
shinidanitv | 0 | 21,349,543,280 | 85.55% | ||
btcbillionaires | 0 | 614,503,785 | 100% | ||
thethreehugs | 0 | 7,205,421,090 | 100% | ||
opportunity4u | 0 | 614,860,000 | 100% | ||
dakster | 0 | 4,321,680,575 | 100% | ||
mkt | 0 | 36,938,908,576 | 75% | ||
cryptoriddler | 0 | 18,095,539,408 | 100% | ||
coffeetime | 0 | 34,060,866,932 | 85.55% | ||
peacegeneration | 0 | 894,869,282 | 100% | ||
amiramnoam | 0 | 21,981,311,983 | 1% | ||
droucil | 0 | 2,779,651,838 | 10% | ||
robinhaney | 0 | 26,924,265,809 | 50% | ||
bitcoinflood | 0 | 169,671,713,029 | 100% | ||
kenhudoy | 0 | 7,204,490,700 | 100% | ||
xdark23 | 0 | 1,011,193,533 | 100% | ||
mahdiyari | 0 | 462,318,743,459 | 100% | ||
bmj | 0 | 8,146,623,217 | 25% | ||
martinhadameme | 0 | 873,189,012 | 100% | ||
iodoorclubmunich | 0 | 828,176,851 | 100% | ||
sanks7 | 0 | 6,190,175,232 | 100% | ||
walkinharmony | 0 | 17,028,448,883 | 45% | ||
irfanullah | 0 | 1,930,247,900 | 5% | ||
lebekons | 0 | 35,230,306,022 | 86% | ||
surajkumarsharma | 0 | 602,935,103 | 100% | ||
abdullahmushtaq | 0 | 649,347,658 | 100% | ||
reko | 0 | 165,976,893,128 | 50% | ||
rndness222 | 0 | 234,016,575,173 | 100% | ||
duckmast3r | 0 | 348,396,223 | 1% | ||
whd | 0 | 36,624,326,237 | 50% | ||
reseller | 0 | 42,364,270,560 | 100% | ||
marianaceleste | 0 | 1,213,083,010 | 100% | ||
jamiz | 0 | 2,944,438,301 | 100% | ||
revlo | 0 | 510,037,855 | 100% | ||
dysc0rd | 0 | 191,572,480 | 100% | ||
wdougwatson | 0 | 3,296,664,672 | 15% | ||
d-pend | 0 | 3,634,573,119,879 | 100% | ||
samotonakatoshi | 0 | 2,686,048,607 | 100% | ||
jbfa | 0 | 74,962,772 | 10% | ||
akiyoshispartan | 0 | 1,094,011,303 | 100% | ||
violetmed | 0 | 59,028,513,311 | 25% | ||
yvonneinoregon | 0 | 70,730,175 | 5% | ||
george-topalov | 0 | 9,404,952,105 | 85.55% | ||
blackmagic | 0 | 770,786,360 | 20% | ||
prosirius | 0 | 121,808,960,609 | 100% | ||
saesdehonos | 0 | 742,087,621 | 100% | ||
zakariashikder | 0 | 178,151,911 | 1% | ||
gambit.coin | 0 | 1,176,314,039 | 100% | ||
btcsam | 0 | 266,262,129 | 100% | ||
chrone | 0 | 15,491,549,503 | 85% | ||
briggsy | 0 | 129,862,833,912 | 100% | ||
jeffery-awesome | 0 | 548,240,436 | 100% | ||
kingjan | 0 | 1,201,009,927 | 100% | ||
quantumdragon | 0 | 614,150,580 | 100% | ||
mtkhan | 0 | 614,490,630 | 100% | ||
lukakorba | 0 | 28,804,371,758 | 80% | ||
talalofficial | 0 | 4,258,516,109 | 100% | ||
jjprac | 0 | 959,754,456 | 100% | ||
elbleess | 0 | 1,764,948,070 | 50% | ||
katteasis | 0 | 18,662,125,047 | 25% | ||
thebitcoinparty | 0 | 32,073,454,540 | 85.55% | ||
twigg | 0 | 16,308,236,098 | 100% | ||
danizaharie | 0 | 39,703,634,089 | 10% | ||
floprime | 0 | 2,456,942,636 | 100% | ||
zonguin | 0 | 60,741,531 | 0.55% | ||
gifsxxxnsfw | 0 | 617,757,328 | 100% | ||
shollstun | 0 | 602,213,009 | 100% | ||
krpawarssc | 0 | 614,667,684 | 100% | ||
siyulaters | 0 | 615,024,136 | 100% | ||
kamilason | 0 | 557,773,669 | 100% | ||
endee | 0 | 1,657,810,426 | 100% | ||
supriya1993 | 0 | 3,172,613,420 | 100% | ||
jnart | 0 | 6,062,073,413 | 100% | ||
letsmakes | 0 | 613,906,520 | 100% | ||
chetanpadliya | 0 | 35,785,063,200 | 100% | ||
teks | 0 | 11,559,293,970 | 85.55% | ||
stoneheart | 0 | 628,403,029 | 100% | ||
amitsharma | 0 | 11,562,132,103 | 15% | ||
rushikesh23 | 0 | 1,053,262,769 | 100% | ||
mahmuddin | 0 | 252,602,375 | 100% | ||
tesaganewton | 0 | 6,060,999,642 | 20% | ||
angrysage | 0 | 4,727,414,806 | 20% | ||
maxabit | 0 | 3,694,049,519 | 100% | ||
latinos | 0 | 614,503,785 | 100% | ||
nxah | 0 | 656,035,115 | 100% | ||
avesa | 0 | 41,963,166,419 | 70% | ||
calebkelly | 0 | 382,015,165 | 100% | ||
raydersteemit | 0 | 547,432,966 | 100% | ||
andreistalker | 0 | 305,501,179 | 100% | ||
tosmartak | 0 | 630,276,141 | 100% | ||
sagor24 | 0 | 639,985,138 | 100% | ||
odibezeking | 0 | 215,238,037 | 35% | ||
aftabkhan10 | 0 | 4,663,154,952 | 30% | ||
sonali5 | 0 | 563,275,496 | 100% | ||
syahrilone | 0 | 494,378,082 | 100% | ||
medicbtom | 0 | 1,597,862,214 | 100% | ||
intellectualsoul | 0 | 1,085,659,776 | 100% | ||
hariman | 0 | 460,438,260 | 100% | ||
mitthradiumn | 0 | 86,136,252,816 | 100% | ||
knightwarrior | 0 | 4,735,590,149 | 100% | ||
munawar1235 | 0 | 231,030,479,255 | 100% | ||
nigeldarren | 0 | 897,078,331 | 100% | ||
onegin | 0 | 617,189,532 | 100% | ||
cryptowarrior88 | 0 | 20,380,686,322 | 85.55% | ||
nopire | 0 | 583,817,470 | 100% | ||
stoodkev | 0 | 168,899,159,653 | 100% | ||
igider | 0 | 6,208,235,964 | 100% | ||
shariaislam | 0 | 407,752,272 | 100% | ||
steeminfobot | 0 | 2,075,488,747 | 100% | ||
transcript-junky | 0 | 11,478,023,752 | 100% | ||
pagoda | 0 | 4,299,117,607 | 100% | ||
randystiefer | 0 | 6,286,275,374 | 100% | ||
crokkon | 0 | 9,631,770,823 | 50% | ||
tomkh | 0 | 615,320,000 | 100% | ||
safrims | 0 | 276,542,969 | 100% | ||
zizuflorin | 0 | 46,909,291,034 | 40% | ||
valorforfreedom | 0 | 407,284,243,382 | 100% | ||
rolexino | 0 | 530,412,547 | 85.55% | ||
raoyan18 | 0 | 606,197,486 | 100% | ||
drfunk13 | 0 | 410,451,300 | 70% | ||
cryptocoiners | 0 | 1,930,603,326 | 100% | ||
hafijbd | 0 | 604,910,463 | 100% | ||
funkie68 | 0 | 2,826,498,637 | 2% | ||
boatsports90 | 0 | 5,346,520,613 | 30% | ||
harryp3 | 0 | 1,921,529,066 | 100% | ||
safamostaafa | 0 | 583,272,900 | 100% | ||
yazanstorm | 0 | 339,857,925 | 100% | ||
tuckerjtruman | 0 | 6,140,647,863 | 85.55% | ||
aboeluosr | 0 | 5,441,040,746 | 100% | ||
damzxyno | 0 | 1,159,569,848 | 100% | ||
walidchabir | 0 | 894,061,242 | 100% | ||
yassine11 | 0 | 303,820,676 | 100% | ||
n4zriofficial | 0 | 3,167,848,650 | 100% | ||
sohel7421 | 0 | 3,949,417,008 | 100% | ||
hamidaansary | 0 | 1,356,832,582 | 100% | ||
ashikbiswas01 | 0 | 4,057,775,581 | 100% | ||
etherealcreation | 0 | 606,414,183 | 100% | ||
sabiransary | 0 | 797,190,447 | 85.55% | ||
sakilansary | 0 | 2,469,178,273 | 100% | ||
amanat1993 | 0 | 6,108,733,302 | 100% | ||
abdelhamidtsouli | 0 | 1,485,908,221 | 100% | ||
bipolar | 0 | 2,781,009,031 | 70% | ||
zolindvalp | 0 | 564,255,815 | 100% | ||
arifmunandar72 | 0 | 0 | 100% | ||
abdulmalikkhan | 0 | 613,912,052 | 100% | ||
prettyrose | 0 | 992,505,380 | 10% | ||
rsrestinga | 0 | 892,284,500 | 100% | ||
mrs.roy | 0 | 614,786,644 | 100% | ||
wayniac30 | 0 | 298,631,203 | 100% | ||
suheri | 0 | 324,735,292 | 100% | ||
videogeek | 0 | 187,035,250 | 10% | ||
nomadics | 0 | 287,688,466 | 1% | ||
s10 | 0 | 234,725,561 | 100% | ||
oucan | 0 | 392,851,419 | 100% | ||
youssefb | 0 | 613,751,367 | 100% | ||
marinesp | 0 | 811,071,156 | 100% | ||
calimeatwagon | 0 | 1,675,226,082 | 100% | ||
steemit-earn | 0 | 903,842,800 | 100% | ||
a-a-lifemix | 0 | 6,161,991,470 | 100% | ||
salahchiva | 0 | 12,300,878,023 | 10% | ||
ahmadtahir | 0 | 1,903,540,866 | 100% | ||
businessman12 | 0 | 593,277,446 | 100% | ||
gringo211985 | 0 | 8,332,195,558 | 100% | ||
arenmlg | 0 | 1,426,683,606 | 100% | ||
ahsan4 | 0 | 594,612,873 | 100% | ||
quazonx | 0 | 617,549,245 | 100% | ||
pitboy | 0 | 1,263,448,064 | 100% | ||
diaehamzawi | 0 | 926,451,068 | 100% | ||
fatkat | 0 | 153,913,088,546 | 70% | ||
ikonik | 0 | 556,799,927 | 100% | ||
steemit-bot | 0 | 3,569,050,234 | 100% | ||
stanvic | 0 | 783,261,851 | 100% | ||
haryanis | 0 | 609,761,740 | 100% | ||
omar14x | 0 | 613,770,292 | 100% | ||
brittuf | 0 | 14,689,643,037 | 10% | ||
purohumor | 0 | 615,722,326 | 100% | ||
leejhoops | 0 | 409,187,800 | 70% | ||
lucyford | 0 | 408,645,017 | 70% | ||
christianwindley | 0 | 408,191,456 | 70% | ||
amazingtech100 | 0 | 609,596,964 | 100% | ||
promosteem | 0 | 20,437,026,598 | 100% | ||
unitedstate | 0 | 456,742,800 | 100% | ||
steem-plus | 0 | 13,484,094,837 | 100% | ||
sumisristi | 0 | 582,673,354 | 100% | ||
hrovat66 | 0 | 160,588,287 | 100% | ||
jesusj1 | 0 | 3,505,076,036 | 100% | ||
whaproject | 0 | 122,511,056 | 50% | ||
teukuhafizhmuly | 0 | 368,526,807 | 100% | ||
ryankofi | 0 | 867,863,253 | 100% | ||
hunnykaushal | 0 | 615,320,000 | 100% | ||
hasitpbhatt | 0 | 429,730,521 | 80% | ||
spacetrucker | 0 | 62,858,894 | 2% | ||
siv | 0 | 2,468,541,920 | 1% | ||
nature.indonesia | 0 | 614,073,739 | 100% | ||
crypto570 | 0 | 585,857,626 | 100% | ||
sandeei | 0 | 540,411,887 | 100% | ||
syavash | 0 | 614,385,432 | 100% | ||
timeall | 0 | 2,993,039,774 | 100% | ||
peak.endrule | 0 | 1,878,222,633 | 100% | ||
revan746 | 0 | 1,053,483,494 | 3% | ||
coolguy123 | 0 | 6,474,123,688 | 2% | ||
pouya7 | 0 | 617,574,965 | 100% | ||
joao-cacador | 0 | 5,149,710,423 | 100% | ||
jist | 0 | 14,286,862,254 | 75% | ||
snook | 0 | 18,083,158,383 | 85.55% | ||
sahda | 0 | 571,472,434 | 100% | ||
agusalim86 | 0 | 193,362,915 | 100% | ||
bestsapolok2 | 0 | 619,241,538 | 100% | ||
lucygarrod | 0 | 12,061,984,334 | 100% | ||
utopian-io | 0 | 11,122,790,521,773 | 7.36% | ||
reshmira | 0 | 613,754,140 | 100% | ||
ihtiht | 0 | 6,919,381,055 | 100% | ||
mahasal | 0 | 546,221,607 | 100% | ||
yanosh01 | 0 | 8,408,962,966 | 50% | ||
moscato | 0 | 1,572,093,492 | 30% | ||
nazmul82 | 0 | 129,987,675 | 10% | ||
rahim2012 | 0 | 1,002,307,524 | 100% | ||
buzzingsushant | 0 | 617,733,458 | 100% | ||
khaseem184 | 0 | 614,951,882 | 100% | ||
yadyasir | 0 | 573,929,638 | 100% | ||
nehomar | 0 | 1,150,455,394 | 1% | ||
steveconnor | 0 | 4,224,262,577 | 25% | ||
tedtv | 0 | 328,640,598 | 100% | ||
besthelal03 | 0 | 524,733,854 | 100% | ||
astafar | 0 | 401,990,928 | 100% | ||
bestmspulok1 | 0 | 579,695,836 | 100% | ||
bestmdfisal01 | 0 | 616,340,207 | 100% | ||
yudiana | 0 | 98,202,884 | 20% | ||
ivone-cacador | 0 | 618,449,080 | 100% | ||
tujan | 0 | 607,559,306 | 100% | ||
tariksaran | 0 | 616,577,609 | 100% | ||
xex | 0 | 617,321,895 | 100% | ||
gorafarid | 0 | 2,377,021,533 | 100% | ||
abtin | 0 | 1,229,826,339 | 100% | ||
kpg | 0 | 616,712,133 | 100% | ||
ekushya | 0 | 2,440,852,572 | 100% | ||
romio1 | 0 | 355,123,268 | 100% | ||
steemcafe | 0 | 1,920,632,613 | 20% | ||
beautifulday | 0 | 109,647,007 | 10% | ||
justindaviesart | 0 | 361,716,547 | 100% | ||
steemauto | 0 | 496,488,098 | 100% | ||
robertthomas | 0 | 63,236,353 | 10% | ||
arthurwatson | 0 | 61,532,000 | 10% | ||
pinkayesh | 0 | 483,996,132 | 100% | ||
nehakhan | 0 | 514,935,785 | 100% | ||
kupi | 0 | 223,673,878 | 100% | ||
maryhansen | 0 | 157,874,807 | 10% | ||
nancystinchcomb | 0 | 61,532,000 | 10% | ||
fortir | 0 | 751,313,560 | 100% | ||
skwth | 0 | 343,916,318 | 100% | ||
noyon696 | 0 | 1,550,014,690 | 100% | ||
tstinfo | 0 | 7,485,944,686 | 100% | ||
rohu03 | 0 | 3,363,187,195 | 100% | ||
hassanbenali | 0 | 803,161,770 | 100% | ||
westonmills | 0 | 202,405,325 | 10% | ||
sagheer46 | 0 | 616,586,321 | 100% | ||
xennotium | 0 | 475,946,599 | 100% | ||
hrishikesh | 0 | 260,441,012 | 100% | ||
lowlylutfur | 0 | 1,278,125,634 | 100% | ||
absn | 0 | 641,097,690 | 100% | ||
quinnpeterson | 0 | 796,245,768 | 100% | ||
naideth | 0 | 776,317,626 | 100% | ||
bestsohag1 | 0 | 613,773,058 | 100% | ||
xettrinabin | 0 | 603,919,667 | 100% | ||
avinashchowdary4 | 0 | 577,864,760 | 100% | ||
kcherukuri | 0 | 389,994,653 | 100% | ||
totyahmed731993 | 0 | 4,052,268,652 | 100% | ||
antorbd | 0 | 604,526,161 | 100% | ||
farukcom | 0 | 1,848,109,738 | 5% | ||
grintsch | 0 | 613,831,393 | 100% | ||
eliasahmed | 0 | 613,754,140 | 100% | ||
ocupation | 0 | 2,859,750,006 | 100% | ||
mathewtherry | 0 | 194,816,401 | 10% | ||
nirobrahman | 0 | 310,087,574 | 100% | ||
akazad | 0 | 475,775,669 | 80% | ||
jvsmsjeevitesh | 0 | 609,126,378 | 100% | ||
the-icon | 0 | 636,361,913 | 100% | ||
krimka | 0 | 614,466,312 | 100% | ||
lotteryfy | 0 | 1,063,852,656 | 100% | ||
mahtabuddin | 0 | 604,434,472 | 100% | ||
maddymaster | 0 | 614,404,587 | 100% | ||
gabrielchm | 0 | 569,496,235 | 100% | ||
asgar | 0 | 540,926,577 | 100% | ||
amity123 | 0 | 1,455,098,872 | 100% | ||
proofmaster | 0 | 479,560,792 | 100% | ||
realinfo | 0 | 12,053,258,399 | 100% | ||
superduper3 | 0 | 606,286,385 | 100% | ||
nazmul.islam | 0 | 448,022,445 | 100% | ||
steemchiqui | 0 | 562,063,943 | 100% | ||
loneminder | 0 | 498,409,200 | 100% | ||
mdsalahuddin | 0 | 457,405,773 | 100% | ||
adiliasteem | 0 | 588,845,112 | 100% | ||
silviosteem | 0 | 517,419,683 | 100% | ||
zzdenis | 0 | 1,145,873,912 | 10% | ||
digi5952 | 0 | 1,204,982,037 | 100% | ||
ogure | 0 | 581,701,250 | 100% | ||
mikel2la1 | 0 | 6,185,899,630 | 100% | ||
tonmoyks | 0 | 443,353,923 | 100% | ||
qammarch | 0 | 609,490,036 | 100% | ||
hafizawais | 0 | 574,049,093 | 100% | ||
sadbin | 0 | 61,650,735 | 10% | ||
steembe | 0 | 1,404,863,749 | 100% | ||
neemanbhat | 0 | 927,851,125 | 100% | ||
mosarraf | 0 | 575,088,250 | 100% | ||
mahedi080 | 0 | 308,007,777 | 100% | ||
skornher | 0 | 1,949,456,297 | 100% | ||
shahjad5974 | 0 | 605,786,971 | 100% | ||
karimsteem | 0 | 500,512,016 | 100% | ||
manyasli | 0 | 2,161,903,520 | 100% | ||
christineirene | 0 | 2,450,622,387 | 10% | ||
suntiger | 0 | 554,209,807 | 100% | ||
onyemacourage | 0 | 1,319,311,379 | 10% | ||
nafisacom | 0 | 743,655,261 | 5% | ||
thrinadh | 0 | 614,084,997 | 100% | ||
bibekstha75 | 0 | 457,265,463 | 100% | ||
hardhouse | 0 | 72,265,509 | 10% | ||
etilda | 0 | 1,609,020,552 | 100% | ||
sohailahmed | 0 | 2,273,171,316 | 100% | ||
investor7 | 0 | 615,812,058 | 100% | ||
mycryptoverse | 0 | 3,932,555,304 | 100% | ||
ericjordan | 0 | 5,444,858,393 | 100% | ||
crescendoofpeace | 0 | 752,828,047 | 100% | ||
ikramellahi | 0 | 594,611,211 | 100% | ||
arshi | 0 | 5,180,599,541 | 100% | ||
chayon | 0 | 616,227,451 | 100% | ||
jpphotography | 0 | 1,607,942,281 | 6% | ||
andreeamta | 0 | 604,606,051 | 100% | ||
huslein.slash | 0 | 1,267,746,318 | 100% | ||
drmax | 0 | 614,073,739 | 100% | ||
artbyclark | 0 | 4,179,944,772 | 100% | ||
cryptocomic | 0 | 614,592,538 | 100% | ||
seal7 | 0 | 6,762,802,458 | 100% | ||
meechit | 0 | 1,055,181,375 | 100% | ||
hagstrom | 0 | 620,681,702 | 100% | ||
akumar | 0 | 1,695,377,986 | 100% | ||
ledjo1991 | 0 | 1,267,759,721 | 100% | ||
ivymalifred | 0 | 607,749,836 | 100% | ||
safwan10000 | 0 | 565,130,967 | 100% | ||
aaronnguyen | 0 | 1,138,884,891 | 100% | ||
mike11 | 0 | 1,709,061,128 | 100% | ||
blue.panda | 0 | 59,697,504 | 1.75% | ||
badriadi83 | 0 | 135,202,446 | 100% | ||
yurche | 0 | 1,325,582,800 | 100% | ||
chotho | 0 | 1,078,089,258 | 100% | ||
hooiyewlim | 0 | 989,506,912 | 100% | ||
phgnomo | 0 | 2,417,973,765 | 100% | ||
pario | 0 | 1,046,559,707 | 100% | ||
biomanu | 0 | 841,125,049 | 100% | ||
criptoasesoria | 0 | 598,611,413 | 100% | ||
punjolife | 0 | 1,338,326,440 | 100% | ||
mvrr007 | 0 | 3,091,744,226 | 100% | ||
chanjunior99 | 0 | 528,181,717 | 100% | ||
maliksajad | 0 | 614,873,592 | 100% | ||
krissy330 | 0 | 228,230,004 | 10% | ||
sedik | 0 | 610,237,250 | 100% | ||
airdroptakibi | 0 | 2,413,359,798 | 100% | ||
emicazal | 0 | 454,211,391 | 100% | ||
hashray | 0 | 617,133,078 | 100% | ||
peterkkim96 | 0 | 1,523,807,438 | 100% | ||
thetitan | 0 | 601,457,500 | 100% | ||
lukecreed | 0 | 441,973,042 | 100% | ||
zlatkamrs | 0 | 613,662,759 | 100% | ||
silentpartnerio | 0 | 175,088,551 | 33.33% | ||
asadullah101 | 0 | 200,521,659 | 100% | ||
lovetdy | 0 | 303,889,251 | 100% | ||
bobsthinking | 0 | 1,157,218,561 | 100% | ||
kamrul.islam | 0 | 492,107,268 | 100% | ||
mikefromtheuk | 0 | 64,636,440 | 100% | ||
spiritualmax | 0 | 710,965,723 | 1% | ||
jamesmovic | 0 | 1,353,350,487 | 100% | ||
ayenanda | 0 | 449,437,428 | 100% | ||
proffgodswill | 0 | 58,529,397 | 10% | ||
atare | 0 | 475,692,084 | 100% | ||
adriankrion | 0 | 4,759,636,586 | 100% | ||
josejirafa | 0 | 974,323,510 | 100% | ||
saidelbouchri | 0 | 634,180,774 | 100% | ||
vikwaitforittor | 0 | 576,500,245 | 100% | ||
fiderlet | 0 | 477,334,176 | 100% | ||
vawaitforitnja | 0 | 613,776,315 | 100% | ||
learnguitar | 0 | 6,895,825,994 | 1% | ||
steem4depoor | 0 | 9,927,958,511 | 10% | ||
stanjames | 0 | 607,597,544 | 100% | ||
cryptowani | 0 | 3,635,427,377 | 100% | ||
ozzie1995 | 0 | 2,775,543,798 | 100% | ||
epic-fail | 0 | 3,174,960,047 | 100% | ||
steemcategary56 | 0 | 613,799,177 | 100% | ||
animad | 0 | 297,550,419 | 100% | ||
neekalert | 0 | 478,769,895 | 100% | ||
tofik2002 | 0 | 616,417,081 | 100% | ||
faiez | 0 | 613,892,372 | 100% | ||
manzurul | 0 | 614,669,821 | 100% | ||
drjessemeyer | 0 | 1,088,056,826 | 100% | ||
socialmediaseo | 0 | 874,144,807 | 100% | ||
jjay | 0 | 642,817,025 | 100% | ||
nuridin | 0 | 1,966,344,100 | 10% | ||
muscleroast.com | 0 | 9,446,884,448 | 85.55% | ||
shakeelptc1234 | 0 | 819,026,769 | 100% | ||
revilationer | 0 | 2,115,778,506 | 100% | ||
abid104911 | 0 | 921,332,138 | 100% | ||
haarshan36 | 0 | 335,390,210 | 100% | ||
tibz | 0 | 0 | 100% | ||
clonlost | 0 | 492,543,938 | 100% | ||
embesilikat | 0 | 55,436,065 | 10% | ||
shaharyarbaig | 0 | 614,863,057 | 100% | ||
riovanes | 0 | 631,011,341 | 100% | ||
mdnafis | 0 | 1,403,183,137 | 100% | ||
jiashin | 0 | 2,035,210,091 | 100% | ||
see5staar | 0 | 2,095,084,770 | 100% | ||
dk853311 | 0 | 642,319,530 | 100% | ||
cloudenq | 0 | 411,956,200 | 100% | ||
juliennytm | 0 | 459,280,448 | 100% | ||
durianwalker | 0 | 706,750,832 | 100% | ||
zoeyvalliant | 0 | 1,336,645,266 | 100% | ||
atmzl92 | 0 | 616,251,826 | 100% | ||
ultraspace | 0 | 594,760,391 | 100% | ||
vaansteam | 0 | 4,105,226,293 | 20% | ||
neneandy | 0 | 8,198,467,782 | 100% | ||
jaydip06 | 0 | 321,078,074 | 100% | ||
theislander | 0 | 614,715,428 | 100% | ||
pujangga | 0 | 346,908,503 | 100% | ||
kousarabbas | 0 | 613,740,429 | 100% | ||
farman58 | 0 | 613,818,838 | 100% | ||
gangplankhg | 0 | 71,342,519 | 33.33% | ||
aamirqazi | 0 | 79,876,620 | 100% | ||
usmanjutt | 0 | 555,402,663 | 100% | ||
gangplankhq | 0 | 83,134,080 | 33.33% | ||
ghazy | 0 | 607,771,664 | 100% | ||
ronaldo7 | 0 | 616,845,563 | 100% | ||
zack-koleksi | 0 | 5,324,486,437 | 50% | ||
franklinolas | 0 | 535,759,736 | 100% | ||
indrajeet | 0 | 255,870,679 | 100% | ||
angelfidel | 0 | 478,380,052 | 100% | ||
mashiliyanage | 0 | 1,022,988,664 | 100% | ||
ichrak | 0 | 570,914,737 | 100% | ||
saikolola | 0 | 451,101,257 | 100% | ||
rikki-ch | 0 | 908,268,302 | 100% | ||
amirjaved | 0 | 615,187,712 | 100% | ||
katy24 | 0 | 536,061,723 | 100% | ||
dexabyte | 0 | 615,868,892 | 100% | ||
techlife | 0 | 1,315,994,914 | 100% | ||
khusairi | 0 | 453,483,025 | 100% | ||
shizzy | 0 | 356,096,887 | 100% | ||
tomixdante | 0 | 357,062,450 | 100% | ||
cool08 | 0 | 488,735,149 | 100% | ||
abdullah2017 | 0 | 147,299,651 | 100% | ||
evilardy | 0 | 615,708,131 | 100% | ||
viktur007 | 0 | 614,663,805 | 100% | ||
sheilamae | 0 | 614,168,148 | 100% | ||
naf | 0 | 476,076,725 | 100% | ||
kamalkhann | 0 | 98,534,276 | 100% | ||
amazingearth | 0 | 316,407,778 | 100% | ||
entrepreneur916 | 0 | 14,563,457,137 | 100% | ||
elparsie | 0 | 466,606,518 | 100% | ||
rnmn1517 | 0 | 576,055,313 | 100% | ||
netm | 0 | 666,021,137 | 100% | ||
anupupadhaya | 0 | 604,575,048 | 100% | ||
kamilala125 | 0 | 427,707,788 | 100% | ||
kamiafridi | 0 | 471,471,024 | 100% | ||
mudasserejaz | 0 | 614,255,124 | 100% | ||
orlandumike | 0 | 1,967,551,350 | 100% | ||
oussamasteem | 0 | 592,374,305 | 100% | ||
bisma | 0 | 459,865,365 | 100% | ||
marverick984 | 0 | 1,293,398,044 | 100% | ||
technicalbero | 0 | 524,750,441 | 100% | ||
dretimax | 0 | 472,825,341 | 100% | ||
zipplyo | 0 | 269,827,140 | 100% | ||
lostinthewoods | 0 | 3,242,401,192 | 100% | ||
mdnazmulhasan | 0 | 1,021,603,095 | 100% | ||
boryenka | 0 | 614,384,021 | 100% | ||
levieuxours | 0 | 534,069,220 | 100% | ||
carol1990 | 0 | 202,891,424 | 100% | ||
kellancoin | 0 | 595,511,808 | 100% | ||
lovebite | 0 | 608,840,335 | 100% | ||
svkrulze | 0 | 609,267,473 | 100% | ||
moonunit | 0 | 2,170,669,152 | 100% | ||
chibikko-snap | 0 | 272,435,083 | 100% | ||
sharkawy | 0 | 604,545,097 | 100% | ||
dometech | 0 | 1,553,501,337 | 100% | ||
mirzaasad | 0 | 615,686,811 | 100% | ||
udgu | 0 | 463,678,081 | 100% | ||
gaboo12 | 0 | 601,609,078 | 100% | ||
onlineguru78 | 0 | 606,158,305 | 100% | ||
malenna | 0 | 592,368,614 | 100% | ||
khairolandini | 0 | 113,736,190 | 100% | ||
gabrielarondon | 0 | 543,284,812 | 100% | ||
howtosteem | 0 | 4,252,132,950 | 100% | ||
saahir | 0 | 1,686,440,002 | 100% | ||
historylover | 0 | 573,785,157 | 100% | ||
rahma97 | 0 | 613,886,814 | 100% | ||
woking | 0 | 523,826,796 | 100% | ||
charleswealth | 0 | 500,385,737 | 100% | ||
knthalo | 0 | 884,487,828 | 100% | ||
masoodahmed | 0 | 460,875,000 | 100% | ||
read3986 | 0 | 593,063,682 | 100% | ||
flozockt | 0 | 421,773,656 | 100% | ||
ale6grande | 0 | 426,547,677 | 100% | ||
stephanie.tzvek | 0 | 592,900,430 | 100% | ||
jawad19845 | 0 | 280,825,589 | 100% | ||
firstsite | 0 | 820,029,313 | 100% | ||
jeng-e | 0 | 546,241,185 | 100% | ||
sjomeath | 0 | 200,727,308 | 100% | ||
huma077 | 0 | 614,257,941 | 100% | ||
nours | 0 | 613,886,814 | 100% | ||
samsoo | 0 | 613,889,670 | 100% | ||
just-smile | 0 | 3,980,190,572 | 100% | ||
cicilibicili | 0 | 613,745,962 | 100% | ||
hustleking | 0 | 2,486,380,067 | 10% | ||
dzi | 0 | 512,586,031 | 100% | ||
cavannaugh | 0 | 597,524,775 | 100% | ||
danielcares | 0 | 435,813,805 | 100% | ||
realsteemian | 0 | 476,843,499 | 100% | ||
barbod | 0 | 614,480,281 | 100% | ||
jasonroy1 | 0 | 614,494,914 | 100% | ||
wildthot | 0 | 519,539,962 | 100% | ||
nayif | 0 | 558,519,317 | 100% | ||
funeveryday | 0 | 480,363,544 | 100% | ||
underwaterwoman | 0 | 546,498,730 | 100% | ||
ajaxalot | 0 | 242,980,483 | 1% | ||
arslan9998 | 0 | 613,693,477 | 100% | ||
sanjo1986 | 0 | 10,083,723,858 | 85.55% | ||
chaker | 0 | 573,865,335 | 100% | ||
chobs | 0 | 752,085,324 | 100% | ||
sweet17 | 0 | 598,665,784 | 100% | ||
steemman1 | 0 | 617,799,698 | 100% | ||
nfctc | 0 | 509,754,963 | 100% | ||
tanweeralam | 0 | 465,972,497 | 100% | ||
romialfian01 | 0 | 596,036,890 | 100% | ||
linterio | 0 | 557,695,308 | 100% | ||
steemmuz | 0 | 536,412,434 | 100% | ||
hasyimi | 0 | 575,335,579 | 100% | ||
dontlosehope | 0 | 613,751,367 | 100% | ||
kamikhan | 0 | 553,030,535 | 100% | ||
splashy | 0 | 399,081,301 | 100% | ||
golamkibria7872 | 0 | 613,768,027 | 100% | ||
antorchajohnny | 0 | 270,369,366 | 100% | ||
drtube | 0 | 614,474,833 | 100% | ||
rickriosgarr | 0 | 541,563,862 | 100% | ||
danysumatra | 0 | 411,182,082 | 100% | ||
ryanhildreth | 0 | 607,313,332 | 100% | ||
lovelyboy64 | 0 | 454,178,063 | 100% | ||
racem | 0 | 605,861,614 | 100% | ||
saym1971 | 0 | 279,269,510 | 100% | ||
hazeltree | 0 | 484,046,809 | 100% | ||
cryptoscout | 0 | 387,334,166 | 100% | ||
andimywapblog12 | 0 | 605,112,265 | 100% | ||
imchandansah | 0 | 613,704,600 | 100% | ||
funb | 0 | 151,782,994 | 100% | ||
aaqibzkhan | 0 | 581,606,102 | 100% | ||
rizvy | 0 | 175,614,964 | 100% | ||
jvssdrevanth | 0 | 549,723,137 | 100% | ||
kamibro125 | 0 | 433,377,265 | 100% | ||
sujan180 | 0 | 458,476,483 | 85.55% | ||
vhmcrypto | 0 | 261,193,828 | 100% | ||
ahmad1997 | 0 | 614,473,199 | 100% | ||
hatu | 0 | 575,988,481 | 100% | ||
radenmk39 | 0 | 583,066,433 | 100% | ||
elmadriles | 0 | 584,338,113 | 100% | ||
khadimhussain | 0 | 299,608,255 | 100% | ||
awais33 | 0 | 615,086,941 | 100% | ||
criptokingko | 0 | 450,716,265 | 100% | ||
rumii | 0 | 617,225,950 | 100% | ||
codingnick | 0 | 521,866,127 | 100% | ||
arif019 | 0 | 596,237,319 | 100% | ||
hulyaa | 0 | 596,852,690 | 100% | ||
sadiasadi | 0 | 495,111,977 | 100% | ||
generalkenobi | 0 | 615,741,668 | 100% | ||
kaanhan | 0 | 553,909,630 | 100% | ||
shivared | 0 | 411,262,537 | 100% | ||
abuzar1 | 0 | 564,990,044 | 100% | ||
sogaz | 0 | 512,443,341 | 100% | ||
zeeshana | 0 | 593,181,047 | 100% | ||
boost1971 | 0 | 307,639,899 | 100% | ||
princetitan | 0 | 585,576,523 | 100% | ||
sandravibes | 0 | 553,432,461 | 100% | ||
mistermartes | 0 | 473,238,593 | 100% | ||
blastik | 0 | 258,078,575 | 100% | ||
isgledysduarte | 0 | 593,402,415 | 100% | ||
steemviral | 0 | 617,091,940 | 100% | ||
cdshaw | 0 | 535,338,930 | 100% | ||
muhammadrizki01 | 0 | 546,880,406 | 100% | ||
irfanafridi | 0 | 522,788,376 | 100% | ||
legin | 0 | 335,713,841 | 100% | ||
umairshehzad | 0 | 463,390,680 | 100% | ||
syahwalba | 0 | 384,223,969 | 100% | ||
abuhasan | 0 | 517,118,828 | 100% | ||
lavinas | 0 | 571,877,265 | 100% | ||
chamou | 0 | 601,611,877 | 100% | ||
haloufa | 0 | 601,611,877 | 100% | ||
anam01 | 0 | 533,856,866 | 100% | ||
juliusseaser | 0 | 614,875,527 | 100% | ||
asrizal | 0 | 449,639,372 | 100% | ||
tarak97 | 0 | 589,892,076 | 100% | ||
danil999 | 0 | 116,772,698 | 100% | ||
shaique.ahmed | 0 | 614,470,210 | 100% | ||
reserve04 | 0 | 331,406,369 | 100% | ||
disonreign | 0 | 353,013,894 | 100% | ||
shielajing | 0 | 494,454,547 | 100% | ||
madpotters | 0 | 464,782,440 | 100% | ||
buzzenx | 0 | 599,107,219 | 100% | ||
kazimbayatli | 0 | 605,251,907 | 100% | ||
mystiquemolly | 0 | 531,515,594 | 100% | ||
steembackfree | 0 | 605,251,838 | 100% | ||
sayfulbahri | 0 | 283,916,809 | 85.55% | ||
uzair.khan | 0 | 375,243,722 | 100% | ||
hamzahammou | 0 | 614,673,427 | 100% | ||
lightningbolt | 0 | 182,583,430 | 100% | ||
alphasteem | 0 | 338,407,895 | 100% | ||
pawix | 0 | 587,677,093 | 100% | ||
zayanfaruk | 0 | 110,677,978 | 100% | ||
yarleni | 0 | 301,430,417 | 100% | ||
sptelevision2018 | 0 | 292,300,129 | 100% | ||
amittyagi2288 | 0 | 565,015,061 | 100% | ||
dekteng | 0 | 571,892,253 | 100% | ||
ardhealaras | 0 | 614,468,374 | 100% | ||
mukta9988 | 0 | 319,142,144 | 100% | ||
harkadam2506 | 0 | 322,830,561 | 100% | ||
sergey3333 | 0 | 503,863,968 | 100% | ||
soma2018 | 0 | 405,075,902 | 100% | ||
hossam20696 | 0 | 512,539,752 | 100% | ||
aqeelahmed18k | 0 | 190,485,121 | 100% | ||
florenced | 0 | 616,514,097 | 100% | ||
kbakadave | 0 | 89,152,234 | 100% | ||
steem-booster | 0 | 316,070,629 | 100% | ||
ashraful1998 | 0 | 615,450,150 | 100% | ||
kotelinio | 0 | 396,463,840 | 100% | ||
ranasaddam | 0 | 614,468,024 | 100% | ||
sirgatodaniel | 0 | 581,600,325 | 100% | ||
mslifesteem | 0 | 569,259,633 | 100% | ||
safrizal9 | 0 | 593,198,514 | 100% | ||
mdkaufman21 | 0 | 86,134,517 | 100% | ||
mistacute | 0 | 524,805,462 | 100% | ||
sharkii | 0 | 546,876,312 | 100% | ||
phbr | 0 | 343,157,419 | 100% | ||
branimir.mihalic | 0 | 524,696,991 | 100% | ||
newinfo24hours | 0 | 439,344,112 | 100% | ||
topstoriez | 0 | 518,613,009 | 100% | ||
memecenter | 0 | 117,943,285 | 100% | ||
top10ranker | 0 | 344,422,391 | 100% | ||
raton0119 | 0 | 325,667,559 | 100% | ||
smash-ter | 0 | 485,913,523 | 100% | ||
dthompson88 | 0 | 516,838,798 | 100% | ||
damidan | 0 | 614,463,915 | 100% | ||
ericphan | 0 | 592,957,339 | 100% | ||
a-0-labon | 0 | 585,582,013 | 100% | ||
a-0-mita | 0 | 552,717,714 | 100% | ||
laurawright | 0 | 522,293,452 | 100% | ||
murhadi9 | 0 | 273,435,984 | 100% | ||
mdnazmul | 0 | 310,303,754 | 100% | ||
toslim22 | 0 | 473,136,403 | 100% | ||
noorulhuddamemon | 0 | 298,014,469 | 100% | ||
rayhan98 | 0 | 614,462,814 | 100% | ||
matheushgas | 0 | 614,462,768 | 100% | ||
kenzmann | 0 | 614,462,764 | 100% | ||
triplehenri | 0 | 614,462,761 | 100% | ||
yckifoundation | 0 | 175,121,874 | 100% | ||
psirek | 0 | 614,462,709 | 100% | ||
madyalhas | 0 | 540,727,151 | 100% | ||
oscarelys | 0 | 445,485,430 | 100% | ||
huwaid | 0 | 580,667,202 | 100% | ||
alaminsa61 | 0 | 614,462,646 | 100% | ||
robearded | 0 | 599,101,077 | 100% | ||
mikecryptoking | 0 | 181,266,479 | 100% | ||
rockerarms | 0 | 614,462,633 | 100% | ||
desmondcutie | 0 | 513,076,290 | 100% | ||
conradjohn | 0 | 596,028,730 | 100% | ||
meernay | 0 | 522,293,202 | 100% | ||
inamotata | 0 | 384,039,115 | 100% | ||
ayman23 | 0 | 599,100,992 | 100% | ||
cryptowolfpack | 0 | 261,146,584 | 100% | ||
braaiboy | 0 | 534,582,384 | 100% | ||
c3zar | 0 | 605,245,558 | 100% | ||
bitcointip | 0 | 251,636,904 | 100% | ||
ali.khan | 0 | 371,749,766 | 100% | ||
yabaleft | 0 | 614,462,422 | 100% | ||
chadgarber | 0 | 165,839,088 | 100% | ||
morlon | 0 | 614,462,321 | 100% | ||
interrupted | 0 | 476,208,175 | 100% | ||
mita | 0 | 565,305,183 | 100% | ||
shaneslater70 | 0 | 76,807,766 | 100% | ||
samuelnn | 0 | 562,232,833 | 100% | ||
rivaldi | 0 | 411,689,597 | 100% | ||
magbilas | 0 | 580,666,286 | 100% | ||
rezydentspaniel | 0 | 546,870,743 | 100% | ||
hassanbelly | 0 | 525,364,364 | 100% | ||
nadi89 | 0 | 556,087,234 | 100% | ||
klinton20 | 0 | 307,230,493 | 100% | ||
chuuuckie | 0 | 524,127,237 | 100% | ||
a-9698 | 0 | 122,759,913 | 100% | ||
ridhawahyuananda | 0 | 258,073,163 | 100% | ||
jobijoseph | 0 | 614,459,732 | 100% | ||
brandelchy | 0 | 614,455,719 | 100% | ||
jobsua2018 | 0 | 537,648,691 | 100% | ||
thatblackgirl | 0 | 485,419,887 | 100% | ||
achyars90 | 0 | 463,913,129 | 100% | ||
aniefiok9 | 0 | 0 | 100% | ||
teslimef | 0 | 0 | 100% | ||
oliens | 0 | 0 | 100% | ||
lalkurd | 0 | 0 | 100% | ||
rizkan97 | 0 | 0 | 100% | ||
nahin9 | 0 | 0 | 100% | ||
xlogan | 0 | 0 | 100% |
thank you
author | abtin |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517663504032z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemfollower/0.01"} |
created | 2018-02-03 13:11:48 |
last_update | 2018-02-03 13:11:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 13:11:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 127,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,640,827 |
net_rshares | 0 |
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
author | adnanrabbani |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t161603293z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 16:16:03 |
last_update | 2018-02-02 16:16:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 16:16:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | 93,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,434,941 |
net_rshares | 0 |
Nice addition, thanks for the updates dude
author | aftabkhan10 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t145253733z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 14:52:54 |
last_update | 2018-02-02 14:52:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:52:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 67,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,418,367 |
net_rshares | 0 |
Very good I see it
author | barbod |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t080150242z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-03 08:01:54 |
last_update | 2018-02-03 08:01:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 08:01:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 10,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,588,700 |
net_rshares | 0 |
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?
author | bennettitalia |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180222t214057871z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-02-22 21:40:57 |
last_update | 2018-02-22 21:40:57 |
depth | 1 |
children | 5 |
last_payout | 2018-03-01 21:40:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 336 |
author_reputation | 32,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,702,644 |
net_rshares | 0 |
curation trail will not upvote trail posts, you will upvote other's posts which curie or openmic upvoted that.
author | mahdiyari |
---|---|
permlink | re-bennettitalia-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180223t084308159z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-23 08:43:09 |
last_update | 2018-02-23 08:43:09 |
depth | 2 |
children | 4 |
last_payout | 2018-03-02 08:43:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 199,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,815,413 |
net_rshares | 3,480,456,981 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bennettitalia | 0 | 3,480,456,981 | 100% |
exactly. The posts which Open Mic is upvoting are not getting upvotes from me :/
author | bennettitalia |
---|---|
permlink | re-mahdiyari-re-bennettitalia-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180223t160546677z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-23 16:05:45 |
last_update | 2018-02-23 16:05:45 |
depth | 3 |
children | 3 |
last_payout | 2018-03-02 16:05:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 32,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,901,509 |
net_rshares | 0 |
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!!
author | bmj |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180206t084221528z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-06 08:42:21 |
last_update | 2018-02-06 08:42:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 08:42:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 244 |
author_reputation | 20,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,351,828 |
net_rshares | 0 |
Thank you for sharing
author | chanjunior99 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t150109301z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 15:01:12 |
last_update | 2018-02-02 15:01:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 15:01:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 153,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,419,995 |
net_rshares | 0 |
Thanks to that
author | cool08 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180204t155440002z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-04 15:54:45 |
last_update | 2018-02-04 15:54:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-11 15:54:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 69,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,918,817 |
net_rshares | 0 |
steemitauto is like busy.org?
author | diya28 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t145134885z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 14:51:54 |
last_update | 2018-02-02 14:53:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:51:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,418,162 |
net_rshares | 0 |
good info....everybody will be get help from it
author | eliasahmed |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t155914829z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 15:59:33 |
last_update | 2018-02-02 15:59:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 15:59:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 281,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,431,599 |
net_rshares | 0 |
thank you @mahdiyari for update informasion
author | elparsie |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t142050046z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-02-03 14:21:00 |
last_update | 2018-02-03 14:21:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 14:21:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 881,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,654,775 |
net_rshares | 0 |
Thanks for sharing i will add new changing
author | embesilikat |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t155331420z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 14:53:30 |
last_update | 2018-02-02 14:53:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:53:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 991,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,418,486 |
net_rshares | 0 |
thanks for information
author | gorafarid |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517647984348z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemfollower/0.01"} |
created | 2018-02-03 08:53:06 |
last_update | 2018-02-03 08:53:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 08:53:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 16,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,596,939 |
net_rshares | 0 |
Good
author | hagstrom |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t083807812z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-03 08:38:12 |
last_update | 2018-02-03 08:38:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 08:38:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 3,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,594,528 |
net_rshares | 0 |
good article thank you for sharing
author | hassanbenali |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t144437205z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 14:44:30 |
last_update | 2018-02-02 14:44:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:44:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,416,683 |
net_rshares | 0 |
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
author | hikmahfajar |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517602276004z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemfollower/0.01"} |
created | 2018-02-02 20:11:18 |
last_update | 2018-02-02 20:11:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 20:11:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 15,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,478,821 |
net_rshares | 0 |
is the site down @mahdiyari?
author | jacoblayan |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t055126905z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-02-03 04:23:06 |
last_update | 2018-02-03 04:23:06 |
depth | 1 |
children | 1 |
last_payout | 2018-02-10 04:23:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 7,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,555,603 |
net_rshares | 0 |
fixed.
author | mahdiyari |
---|---|
permlink | re-jacoblayan-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t084700693z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-03 08:47:00 |
last_update | 2018-02-03 08:47:00 |
depth | 2 |
children | 0 |
last_payout | 2018-02-10 08:47:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 199,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,595,935 |
net_rshares | 0 |
Thanks. Im all signed up.
author | jazzresin |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180313t092507859z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-13 09:25:06 |
last_update | 2018-03-13 09:25:06 |
depth | 1 |
children | 0 |
last_payout | 2018-03-20 09:25:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 7,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 44,099,686 |
net_rshares | 0 |
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%.
author | jga |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180212t121628162z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari","curie","qurator"],"app":"steemit/0.1"} |
created | 2018-02-12 12:16:30 |
last_update | 2018-02-12 12:16:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-19 12:16:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 309 |
author_reputation | 76,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,922,142 |
net_rshares | 0 |
Nice features.
author | kabibitak |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t144519753z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 14:47:06 |
last_update | 2018-02-02 14:47:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:47:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,417,193 |
net_rshares | 0 |
Thanks for the information, I will change the settings of my profile.
author | kamuhuzuru |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t144502097z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 14:45:06 |
last_update | 2018-02-02 14:45:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:45:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 3,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,416,803 |
net_rshares | 918,443,940 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kamuhuzuru | 0 | 918,443,940 | 100% |
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?
author | kennyskitchen |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180331t154111649z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-31 15:41:15 |
last_update | 2018-03-31 15:41:15 |
depth | 1 |
children | 1 |
last_payout | 2018-04-07 15:41:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 213 |
author_reputation | 538,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 47,639,982 |
net_rshares | 0 |
you will lose posts which published in that time.
author | mahdiyari |
---|---|
permlink | re-kennyskitchen-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180331t171312692z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-31 17:13:15 |
last_update | 2018-03-31 17:13:15 |
depth | 2 |
children | 0 |
last_payout | 2018-04-07 17:13:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 199,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 47,653,677 |
net_rshares | 0 |
thank you so much
author | lavinas |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t155023415z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 14:50:21 |
last_update | 2018-02-02 14:50:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:50:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 501,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,417,874 |
net_rshares | 0 |
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)**
author | ms10398 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t153955547z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-02 15:40:03 |
last_update | 2018-02-02 15:40:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 15:40:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.520 HBD |
curator_payout_value | 0.172 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 27,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,427,661 |
net_rshares | 108,644,904,712 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 108,644,904,712 | 25% |
Thank you @mahdiyari for your amazing projects!
author | munawar1235 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t181752461z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-02-02 18:17:54 |
last_update | 2018-02-02 18:17:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 18:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.344 HBD |
curator_payout_value | 0.106 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 86,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,458,292 |
net_rshares | 71,142,640,469 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fatkat | 0 | 41,121,322,961 | 100% | ||
learnguitar | 0 | 30,021,317,508 | 100% |
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) 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://steemit.com/@helpie)</center>
author | musicvoter |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180321t123935148z |
category | utopian-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"} |
created | 2018-03-21 12:39:36 |
last_update | 2018-03-21 12:39:36 |
depth | 1 |
children | 0 |
last_payout | 2018-03-28 12:39:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,290 |
author_reputation | 44,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,737,391 |
net_rshares | 0 |
 Hi @mahdiyari. The site is currently down. When will goes up again?
author | n4zriofficial |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t050852449z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"image":["https://steemitimages.com/DQmd9wZiZrd9r2e7RK9YVjTQyKw1RpY8KLycXRvGtF3gmHU/Untitled.png"],"app":"steemit/0.1"} |
created | 2018-02-03 05:08:54 |
last_update | 2018-02-03 05:09:24 |
depth | 1 |
children | 3 |
last_payout | 2018-02-10 05:08:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,562,803 |
net_rshares | 0 |
already fixed. thanks for report.
author | mahdiyari |
---|---|
permlink | re-n4zriofficial-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t084530592z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-03 08:45:30 |
last_update | 2018-02-03 08:45:30 |
depth | 2 |
children | 0 |
last_payout | 2018-02-10 08:45:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 199,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,595,692 |
net_rshares | 0 |
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.
author | thabiggdogg |
---|---|
permlink | re-n4zriofficial-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t054823935z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-03 05:48:30 |
last_update | 2018-02-03 05:48:30 |
depth | 2 |
children | 1 |
last_payout | 2018-02-10 05:48:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 4,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,568,868 |
net_rshares | 0 |
I see. Then we should wait.
author | n4zriofficial |
---|---|
permlink | re-thabiggdogg-re-n4zriofficial-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t074310068z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-03 07:43:12 |
last_update | 2018-02-03 07:43:12 |
depth | 3 |
children | 0 |
last_payout | 2018-02-10 07:43:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,585,790 |
net_rshares | 0 |
Thanks just joined steemauto
author | nickwalshblog |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t145001478z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 14:49:57 |
last_update | 2018-02-02 14:49:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:49:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 78,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,417,783 |
net_rshares | 0 |
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
author | notconvinced | ||||||
---|---|---|---|---|---|---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t164517779z | ||||||
category | utopian-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"} | ||||||
created | 2018-02-02 16:45:21 | ||||||
last_update | 2018-02-02 16:46:12 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-02-09 16:45:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 286 | ||||||
author_reputation | 13,951,843,600,985 | ||||||
root_title | "[Important] Added voting power limit, scaling in curation trail and search function in fanbase at steemauto.com" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 34,440,572 | ||||||
net_rshares | 0 |
already answered to that post 14 hours ago and still no reply!
author | mahdiyari |
---|---|
permlink | re-notconvinced-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t185035743z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 18:50:36 |
last_update | 2018-02-02 18:50:36 |
depth | 2 |
children | 0 |
last_payout | 2018-02-09 18:50:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 199,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,464,417 |
net_rshares | 0 |
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......
author | numanahmed |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t015642825z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-02-03 01:56:51 |
last_update | 2018-02-03 01:56:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 01:56:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 159 |
author_reputation | 356,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,533,652 |
net_rshares | 0 |
Every day we witness somethin new on platform, kinda nice to be part of it :))
author | ocupation |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t144658595z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 14:46:57 |
last_update | 2018-02-02 14:46:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:46:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 114,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,417,172 |
net_rshares | 0 |
thank you friend
author | pouya7 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517664574006z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemfollower/0.01"} |
created | 2018-02-03 13:29:36 |
last_update | 2018-02-03 13:29:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 13:29:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 108,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,644,325 |
net_rshares | 0 |
very nice post dear @mahdiyari I love your post,,this is a valuable post for us,,
author | rasel1234 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t154832325z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-02-02 15:48:42 |
last_update | 2018-02-02 15:48:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 15:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 107,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,429,415 |
net_rshares | 0 |
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
author | realsteemian |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t003257994z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-02-03 00:33:21 |
last_update | 2018-02-03 00:33:21 |
depth | 1 |
children | 1 |
last_payout | 2018-02-10 00:33:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 242 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,521,209 |
net_rshares | 0 |
fixed.
author | mahdiyari |
---|---|
permlink | re-realsteemian-re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t084558284z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-03 08:45:57 |
last_update | 2018-02-03 08:45:57 |
depth | 2 |
children | 0 |
last_payout | 2018-02-10 08:45:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 199,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,595,764 |
net_rshares | 0 |
Amazing feature.
author | realsteemian |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t153128301z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-03 15:31:51 |
last_update | 2018-02-03 15:31:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 15:31:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,668,775 |
net_rshares | 0 |
@rizvy
author | rizvy |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-1517666532234z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemfollower/0.01"} |
created | 2018-02-03 14:02:12 |
last_update | 2018-02-03 14:02:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 14:02:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 9,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,650,728 |
net_rshares | 0 |
Informative post! Thank You @mahdiyari
author | rnmn1517 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180204t153250467z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-02-04 15:32:54 |
last_update | 2018-02-04 15:32:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-11 15:32:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 167,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,914,528 |
net_rshares | 0 |
thanks for this informative post.can we change setting our profile??
author | skwth |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t160703683z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-02 16:07:09 |
last_update | 2018-02-02 16:07:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 16:07:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 234,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,433,161 |
net_rshares | 0 |
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
author | tesselart |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180204t055240069z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-04 05:52:42 |
last_update | 2018-02-04 06:07:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-11 05:52:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,256 |
author_reputation | 7,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,811,949 |
net_rshares | 0 |
This is so helpful. I just joined thanks to this owner :)
author | ttinytony1989 |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180205t130503072z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-05 13:05:03 |
last_update | 2018-02-05 13:05:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-12 13:05:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 5,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,142,045 |
net_rshares | 0 |
### 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> [](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**
author | utopian-io |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180203t140600701z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-03 14:06:00 |
last_update | 2018-02-03 14:06:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 14:06:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,064 |
author_reputation | 152,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,651,566 |
net_rshares | 0 |
Thank you for your information. We always learn from you my new brother @mahdiyari
author | walid.larbi |
---|---|
permlink | re-mahdiyari-important-added-voting-power-limit-scaling-in-curation-trail-and-search-function-in-fanbase-at-steemauto-com-20180202t223402374z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-02-02 22:34:06 |
last_update | 2018-02-02 22:34:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 22:34:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 311,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,503,052 |
net_rshares | 0 |