<center></center> [GitHub](https://github.com/mahdiyari/steemauto) [PR](https://github.com/mahdiyari/steemauto/pull/29) #### Summary We had a bad week! Our main server got an advanced DDoS attack! Our websites and our main RPC node went down! ... and now, after a few days, the main features are up! #### Explanation <center> <sub>source: pixabay.com</sub></center> After noticing that our server is under high DDoS attack, I paused that server and moved all data to another server. I started websites and features (curation trail, fanbase, and etc) on our backup server and backup RPC node! We experienced some new errors (related to libraries like steem-js and dsteem)! I tried almost any method to fix these problems, and I got nothing in the result! Today I decided to develop our customized methods to interact with steem blockchain instead of using steem-js and dsteem (thanks to the developers of these tools;) ) Our backup RPC node is appbase (v0.19.10) and needs new configurations to interact with that server directly without any middleware like [Jussi](https://github.com/steemit/jussi) (for example Jussi is installed on https://api.steemit.com to interact with appbases) <center> <sub>source: pixabay.com</sub></center> I started [this Pull Request](https://github.com/mahdiyari/steemauto/pull/29) for fixing common issues we had in these days. Right now, must of the tasks completed and I'm working on the remaining tasks. I will add more tasks to the list (if needed) to solve completely RPC node errors which are happening because of the high load of Steemauto! #### Clarification During these problems, all critical data was safe! (actually, we don't have such critical data in our servers) I bought another server (256GB RAM) and I moved websites and backend apps to that server. Also, I started a local RPC node (v0.19.5) which is reliable than appbase (v0.19.10) for our use case! Now, all the main services (curation trail, fanbase, schedule posts, and etc ) should work without any downtime. Enjoy using our free and unlimited services. *** #### Development I started by adding streaming methods, which are the important part of Steemauto. We should stream all latest blocks to detect recent upvotes by trails and recent posts by fans! Our recent method for streaming blocks was from steem-js which can be paused after any network error! <center>.png) <sub>source: pixabay.com</sub></center> By adding our customized methods for streaming blocks (block numbers and block operations) streaming methods will not fail, in any case with help of our `call()` method, the streaming methods will try to stream the latest block. ``` const streamBlockNumber = async (cb) => { let lastBlock = 0 setInterval(async () => { const result = await call( config.steemd, 'condenser_api.get_dynamic_global_properties', [] ) if (result && result.head_block_number && !isNaN(result.head_block_number)) { if (result.head_block_number > lastBlock) { lastBlock = result.head_block_number cb(lastBlock) } } }, 500) } ``` We used a `call()` method to make jsonrpc 2.0 calls directly to the our appbase. This `call` method will just return the result or null! by ignoring errors in the `call` method, we can easily retry another call by checking just returned result. This is our `call()` method: ``` const call = async (steemd, method, params) => { try { const body = JSON.stringify({ id: 0, jsonrpc: '2.0', method, params }) const res = await fetch( steemd, { method: 'POST', body } ) if (res.ok) { const result = await res.json() return result.result } else { return null } } catch (e) { return null } } ``` Maybe it is not a good solution to ignore errors, but in our use case, this is the best solution! If the main node was down, we can add some extra code to change `config.steemd` and use another RPC node. (maybe in another contribution) Then, we used these methods inside our apps instead of libraries like steem-js and dsteem. By using these methods, our apps are working very well! (community confirmed) Also, we exported similar parts of our apps to the extra files to reduce duplicate codes. For example, broadcasting upvotes and checking the voting power limit are the most used parts in all apps. (still is not implemented in the apps) Now, we can expect a better Steematuo! Steem on and support Steemauto with your upvotes, resteems, donations, and witness votes ;) <center> <sub>source: pixabay.com</sub></center> Thanks for your great support *** This post is submitted to the https://utopian.io Regards, 2018-07-30
author | mahdiyari |
---|---|
permlink | steemauto-and-its-problems-solved |
category | utopian-io |
json_metadata | {"tags":["utopian-io","development","steemauto","update","fix"],"image":["https://cdn.steemitimages.com/DQmSGoS5BwZvVrWrR1TfbPCSJ31pRbJhDANhyBtgGuHoqw3/steemauto_bitpizza.gif","https://cdn.steemitimages.com/DQmfKQTon5aqch35HVaCT3K8n77gbKYVjZRcyrDcTLH91cJ/despaired-2261021_640.jpg","https://cdn.steemitimages.com/DQmTgAN6iM5uSTAfruT3AABHRTaJmPat9uVj7oKa91oqWaw/children-593313_640.jpg","https://cdn.steemitimages.com/DQmaRCpFvRyEHXtf1Ko6vnWH69qgWZM4cbLMA8djCuDHsJm/programming-1873854_640%20(1).png","https://cdn.steemitimages.com/DQmZZgyGST1Tq9wWk4jrr5TJwDBQLiZ8z7BxwzXfFTroKcx/team-3373638_640.jpg"],"links":["https://github.com/mahdiyari/steemauto","https://github.com/mahdiyari/steemauto/pull/29","https://github.com/steemit/jussi","https://api.steemit.com","https://utopian.io"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-07-29 21:42:12 |
last_update | 2018-07-29 21:42:12 |
depth | 0 |
children | 32 |
last_payout | 2018-08-05 21:42:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 107.141 HBD |
curator_payout_value | 32.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,379 |
author_reputation | 199,864,818,197,856 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,436,080 |
net_rshares | 81,792,040,461,262 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dana-edwards | 0 | 22,581,929,578 | 85.55% | ||
ivan-perez-anies | 0 | 12,064,084,003 | 10% | ||
carlos-cabeza | 0 | 766,611,226 | 10% | ||
flemingfarm | 0 | 41,253,506,524 | 100% | ||
cryptoctopus | 0 | 5,255,655,796,088 | 99% | ||
lola-carola | 0 | 1,019,373,906 | 2.97% | ||
acidyo | 0 | 2,781,041,383,321 | 20% | ||
arzy | 0 | 182,012,947 | 100% | ||
grandpere | 0 | 180,026,849,462 | 49.5% | ||
neopatriarch | 0 | 4,686,286,168 | 10% | ||
bryanj4 | 0 | 301,848,624,373 | 100% | ||
edrivegom | 0 | 1,101,175,853 | 15% | ||
jeffjagoe | 0 | 2,077,031,590 | 5% | ||
raymondspeaks | 0 | 7,469,001,308 | 49.5% | ||
cryptojoy.com | 0 | 94,447,310 | 49.5% | ||
joythewanderer | 0 | 17,286,164,511 | 4% | ||
joshglen | 0 | 1,304,018,982 | 99% | ||
remlaps | 0 | 0 | 100% | ||
nickskywalker | 0 | 23,576,798,922 | 77% | ||
d3nv3r | 0 | 164,626,295 | 37.5% | ||
zemex | 0 | 2,317,005,739 | 100% | ||
anarcist69 | 0 | 1,210,590,838 | 49.5% | ||
oliverstoney | 0 | 187,415,672 | 37.5% | ||
freyman | 0 | 12,301,256,312 | 100% | ||
stevescriber | 0 | 175,867,747 | 49.5% | ||
defango | 0 | 12,320,342,086 | 33.33% | ||
anarcho-andrei | 0 | 12,671,958,070 | 29.7% | ||
cause-no-harm | 0 | 81,833,151 | 49.5% | ||
sextant | 0 | 253,048,285 | 37.5% | ||
ats-david | 0 | 1,799,008,870,983 | 100% | ||
novacadian | 0 | 6,643,730,293 | 50% | ||
wakeupnd | 0 | 6,066,027,753 | 5% | ||
bluehorseshoe | 0 | 18,083,705,118 | 49.5% | ||
carterx7 | 0 | 281,578,090,105 | 100% | ||
whoib | 0 | 2,213,985,954 | 79.2% | ||
siniceku | 0 | 100,570,151 | 100% | ||
bosjaya | 0 | 475,639,064 | 15% | ||
syahhiran | 0 | 2,400,871,118 | 100% | ||
dresden | 0 | 18,703,035,869 | 10% | ||
achiron | 0 | 28,112,530,412 | 100% | ||
alexisvalera | 0 | 952,555,091 | 10% | ||
roguewriter | 0 | 353,933,435 | 49.5% | ||
supergoodliving | 0 | 168,392,059,818 | 100% | ||
dashfit | 0 | 9,298,289,782 | 49.5% | ||
starrkravenmaf | 0 | 16,563,101,229 | 99% | ||
kristine | 0 | 575,473,619 | 49.5% | ||
commenthunter | 0 | 89,573,728 | 37.5% | ||
hoboway | 0 | 637,022,112 | 49.5% | ||
aniestudio | 0 | 6,304,260,310 | 10% | ||
humanearl | 0 | 321,737,504 | 2% | ||
taskmanager | 0 | 2,446,042,245 | 56.25% | ||
assus | 0 | 241,298,434 | 10% | ||
khalilalfamahera | 0 | 1,093,511,942 | 100% | ||
pedrovillegas96 | 0 | 3,924,166,036 | 74.25% | ||
lovemetouchme2 | 0 | 19,947,536,615 | 11% | ||
blockchaincat | 0 | 927,697,966 | 100% | ||
dresden1 | 0 | 295,098,262 | 10% | ||
dresden2 | 0 | 296,047,021 | 10% | ||
dresden3 | 0 | 295,459,727 | 10% | ||
santinhos | 0 | 1,708,316,632 | 100% | ||
askari | 0 | 142,866,081,594 | 100% | ||
marieta88 | 0 | 582,586,887 | 10% | ||
firesteem | 0 | 14,645,619,785 | 100% | ||
gefa | 0 | 1,386,395,029 | 100% | ||
serlanvet | 0 | 123,395,457 | 10% | ||
razpor | 0 | 1,684,036,361 | 100% | ||
theghost1980 | 0 | 15,819,174,383 | 49.5% | ||
mendezand | 0 | 623,947,676 | 19.8% | ||
enlight100 | 0 | 75,096,269 | 54.45% | ||
shermanedwards | 0 | 153,903,707 | 10% | ||
lilwallay | 0 | 67,641,464 | 49.5% | ||
jgpro | 0 | 431,297,517 | 49.5% | ||
jduarte | 0 | 2,890,537,960 | 10% | ||
chukwuebuka | 0 | 126,135,513 | 100% | ||
torkot | 0 | 3,016,582,522 | 10% | ||
prizeportal | 0 | 116,430,666 | 37.5% | ||
flyingcam | 0 | 2,381,985,220 | 99% | ||
anwarabdullah | 0 | 2,827,223,395 | 100% | ||
oscarps | 0 | 2,060,162,326 | 10% | ||
pbock | 0 | 1,013,996,803 | 9.9% | ||
dyancuex | 0 | 1,176,880,177 | 49.5% | ||
xanadu | 0 | 716,238,791 | 49.5% | ||
toniesteem | 0 | 1,345,250,194 | 49.5% | ||
ljpaez | 0 | 386,056,640 | 9.9% | ||
humoalex | 0 | 129,500,859 | 10% | ||
siucatti | 0 | 170,930,497 | 10% | ||
hanjo42 | 0 | 764,644,731 | 49.5% | ||
michelios | 0 | 9,740,628,983 | 14.85% | ||
michaelmerritt | 0 | 100,242,725 | 49.5% | ||
vickaboleyn | 0 | 575,334,799 | 10% | ||
geeadams | 0 | 397,401,758 | 49.5% | ||
herfie | 0 | 173,877,120 | 49.5% | ||
moksamol | 0 | 17,778,181,338 | 49.5% | ||
getrichordie | 0 | 4,307,694,592 | 49.5% | ||
bloggingforbeans | 0 | 35,034,553,206 | 100% | ||
teachblogger | 0 | 7,621,267,191 | 50% | ||
vitkolesnik | 0 | 22,715,678,016 | 50% | ||
redpill | 0 | 6,149,575,945 | 99% | ||
jacalf | 0 | 832,984,726 | 99% | ||
andyjaypowell | 0 | 8,863,096,446 | 5% | ||
lotfiuser | 0 | 391,640,629 | 49.5% | ||
clacrax | 0 | 509,380,083 | 10% | ||
bargolis | 0 | 758,900,614 | 5% | ||
jraysteem | 0 | 3,634,097,015 | 50% | ||
suerisue | 0 | 83,374,908,768 | 49.5% | ||
world-travel-pro | 0 | 8,786,906,921 | 5% | ||
oscarcc89 | 0 | 1,232,458,791 | 10% | ||
thethreehugs | 0 | 20,759,208,305 | 85.55% | ||
ardian27 | 0 | 305,069,576 | 50% | ||
sureshnsnet | 0 | 382,114,160 | 49.5% | ||
rishadhaque | 0 | 262,987,253 | 49.5% | ||
saifullahskp | 0 | 1,653,883,455 | 9% | ||
fahri | 0 | 231,759,410 | 40% | ||
katiuskagomez | 0 | 186,062,475 | 10% | ||
galberto | 0 | 383,697,946 | 10% | ||
malicered | 0 | 74,541,496,097 | 99% | ||
juancar347 | 0 | 2,700,680,872 | 10% | ||
flauwy | 0 | 14,750,954,509 | 20% | ||
coquiunlimited | 0 | 344,293,506 | 17% | ||
pvtrickheaton | 0 | 299,285,771 | 49.5% | ||
bitcoinflood | 0 | 21,732,131,197 | 5% | ||
twistychips | 0 | 84,665,180 | 4.95% | ||
brumest | 0 | 986,340,746 | 5% | ||
yogesh121 | 0 | 244,934,743 | 100% | ||
kisom1 | 0 | 290,710,009 | 49.5% | ||
steemanator | 0 | 560,846,068 | 99% | ||
hadimemories | 0 | 116,707,603 | 2% | ||
smartgeek | 0 | 480,370,053 | 99% | ||
mahdiyari | 0 | 135,145,253,001 | 1% | ||
friesennerz | 0 | 2,246,385,736 | 49.5% | ||
frederichs | 0 | 1,489,732,302 | 100% | ||
chrispy99 | 0 | 260,452,164 | 1% | ||
drakos | 0 | 856,167,157,373 | 40% | ||
rnunez09 | 0 | 156,779,728 | 10% | ||
sanks7 | 0 | 7,055,042,493 | 100% | ||
professorbromide | 0 | 8,871,096,820 | 100% | ||
armonia | 0 | 258,096,447 | 10% | ||
othniel | 0 | 357,077,792 | 49.5% | ||
kenanqhd | 0 | 9,044,024,116 | 14% | ||
green07 | 0 | 5,423,997,662 | 100% | ||
beyondthecrypto | 0 | 3,551,729,290 | 49.5% | ||
faluthi01 | 0 | 141,471,632 | 9.9% | ||
rival | 0 | 1,175,215,102 | 1% | ||
rndness222 | 0 | 11,458,065,652 | 5% | ||
pyrslx | 0 | 556,769,195 | 99% | ||
duckmast3r | 0 | 928,075,932 | 2% | ||
sheikhsalman | 0 | 582,755,295 | 100% | ||
traderr | 0 | 783,758,866 | 5% | ||
netuoso | 0 | 220,937,010,523 | 99% | ||
reseller | 0 | 32,608,014,911 | 100% | ||
decomoescribir | 0 | 4,330,899,394 | 10% | ||
dragoreznov | 0 | 610,950,199 | 100% | ||
zacherybinx | 0 | 1,018,342,528 | 99% | ||
dysc0rd | 0 | 394,620,195 | 99% | ||
taliakerch | 0 | 8,281,273,101 | 10% | ||
d-pend | 0 | 354,269,362,079 | 11% | ||
aleli | 0 | 219,307,728 | 10% | ||
ficciones | 0 | 142,454,743 | 10% | ||
simnrodrguez | 0 | 3,498,593,408 | 10% | ||
makrotheblack | 0 | 5,785,673,458 | 100% | ||
trenz | 0 | 994,156,991 | 10% | ||
neiraurdaneta | 0 | 516,171,381 | 10% | ||
mcoinz79 | 0 | 1,612,983,409 | 5% | ||
toofasteddie | 0 | 32,980,807,207 | 40% | ||
jbfa | 0 | 100,691,905 | 9.9% | ||
stefanycaldera | 0 | 66,556,680 | 10% | ||
ajdohmen | 0 | 7,618,913,638 | 100% | ||
violetmed | 0 | 177,631,293,768 | 50% | ||
fenola | 0 | 192,183,747 | 100% | ||
dojeda | 0 | 500,746,348 | 10% | ||
marpa | 0 | 3,417,136,443 | 10% | ||
blackmagic | 0 | 434,759,338 | 9.9% | ||
funnyfaces | 0 | 3,145,446,366 | 100% | ||
gps7530 | 0 | 180,322,189 | 49.5% | ||
goga | 0 | 173,065,987 | 99% | ||
sujitsawant | 0 | 10,815,951,345 | 100% | ||
nomad0712 | 0 | 424,092,386 | 99% | ||
oudekaas | 0 | 29,406,659,021 | 49.5% | ||
yenipaola | 0 | 266,484,152 | 10% | ||
gambit.coin | 0 | 1,046,735,740 | 100% | ||
kristal24 | 0 | 328,741,985 | 10% | ||
gooze | 0 | 7,688,311,425 | 100% | ||
ita-soa | 0 | 230,665,462 | 100% | ||
msageer | 0 | 154,035,787 | 49.5% | ||
gurujames | 0 | 586,365,242 | 100% | ||
bloodless | 0 | 568,032,178 | 99% | ||
theivipulpal | 0 | 184,134,436 | 100% | ||
rahesi | 0 | 261,870,084 | 10% | ||
altdelay | 0 | 158,236,444 | 10% | ||
luciancovaci | 0 | 1,351,328,009 | 49% | ||
amymya | 0 | 161,705,771 | 0.4% | ||
abnerpantoja | 0 | 989,280,369 | 10% | ||
juicypop | 0 | 1,319,797,559 | 25% | ||
mseuno | 0 | 536,409,332 | 99% | ||
psicomar | 0 | 291,384,422 | 10% | ||
valentinagrv | 0 | 213,736,833 | 10% | ||
hellosusu | 0 | 485,683,837 | 99% | ||
jadusab | 0 | 608,241,539 | 100% | ||
andrewgrove | 0 | 520,307,661 | 100% | ||
tamaradean | 0 | 529,435,866 | 100% | ||
mangobaaz | 0 | 575,073,859 | 100% | ||
haji | 0 | 178,176,300 | 5% | ||
baladod | 0 | 134,370,138 | 21.78% | ||
twigg | 0 | 1,521,524,770 | 100% | ||
poetarojo | 0 | 1,654,852,739 | 10% | ||
drmaizo | 0 | 559,201,407 | 10% | ||
mhel | 0 | 852,639,666 | 19.8% | ||
gregory.latinier | 0 | 36,201,697,404 | 100% | ||
patriciareyes | 0 | 206,450,502 | 49.5% | ||
jarendesta | 0 | 215,677,145,245 | 49.5% | ||
farin007 | 0 | 881,935,465 | 100% | ||
zenkly | 0 | 1,330,840,815 | 10% | ||
patriciangela | 0 | 274,625,407 | 99% | ||
siyulaters | 0 | 611,030,833 | 100% | ||
colmedwardsphoto | 0 | 5,651,957,608 | 99% | ||
bourrbakia | 0 | 156,683,299 | 10% | ||
yulmarasantos | 0 | 106,137,562 | 10% | ||
endee | 0 | 1,337,685,315 | 100% | ||
darius86 | 0 | 105,177,264 | 10% | ||
yimiipsa | 0 | 157,345,696 | 10% | ||
elinderzambrano | 0 | 461,933,128 | 10% | ||
bitcoinsandgravy | 0 | 3,910,770,624 | 100% | ||
valedictorian | 0 | 575,070,875 | 100% | ||
eni198881 | 0 | 64,191,289 | 100% | ||
sanderdieryck | 0 | 886,983,300 | 49.5% | ||
pavonj | 0 | 1,048,633,387 | 100% | ||
oniraphaeleu | 0 | 62,060,244 | 100% | ||
zulfikar-fx | 0 | 121,595,418 | 5% | ||
angrysage | 0 | 11,816,301,738 | 100% | ||
fujiwara | 0 | 195,777,952 | 99% | ||
mabraper | 0 | 465,182,070 | 100% | ||
tomcruse | 0 | 295,413,775 | 49.5% | ||
life.goals | 0 | 468,688,491 | 99% | ||
dipom98 | 0 | 671,820,728 | 100% | ||
nurhasib | 0 | 174,366,210 | 50% | ||
theleapingkoala | 0 | 11,414,078,023 | 50% | ||
drewzshots | 0 | 337,488,862 | 99% | ||
ilhampratama | 0 | 1,868,410,208 | 50% | ||
vander | 0 | 45,465,998,843 | 100% | ||
odibezeking | 0 | 119,565,222 | 49.5% | ||
dream.trip | 0 | 178,680,471 | 2.97% | ||
emergehealthier | 0 | 13,701,869,485 | 30% | ||
danielakreher | 0 | 184,752,359 | 29.7% | ||
mustika | 0 | 262,703,967 | 49.5% | ||
shippou95 | 0 | 862,573,408 | 49.5% | ||
viralfever | 0 | 277,585,232 | 49.5% | ||
chey | 0 | 3,253,150,527 | 20% | ||
hamzatuliqbal | 0 | 519,307,669 | 100% | ||
nafees126 | 0 | 566,703,232 | 100% | ||
medicbtom | 0 | 238,700,096 | 100% | ||
bleyker | 0 | 426,140,482 | 99% | ||
wuzupin | 0 | 293,494,633 | 49.5% | ||
gusvzla | 0 | 474,546,264 | 10% | ||
jcmansah | 0 | 76,214,189 | 12.37% | ||
budifatria | 0 | 99,689,969 | 49.5% | ||
alokkamboj | 0 | 608,120,983 | 100% | ||
cryptowarrior88 | 0 | 16,095,684,216 | 85.55% | ||
risckylu | 0 | 304,537,241 | 10% | ||
drkuldipmengi | 0 | 885,006,246 | 100% | ||
ekkah | 0 | 927,658,367 | 100% | ||
rizalmahrez | 0 | 559,452,923 | 99% | ||
bhim | 0 | 198,014,473 | 100% | ||
biplob12 | 0 | 298,804,177 | 49.5% | ||
steeminfobot | 0 | 1,033,173,774 | 100% | ||
transcript-junky | 0 | 48,905,620,734 | 100% | ||
sai001 | 0 | 609,248,132 | 100% | ||
redouanemez | 0 | 1,037,131,864 | 5% | ||
reekadoh | 0 | 234,623,132 | 100% | ||
oneazania | 0 | 5,122,299,280 | 100% | ||
kaizag | 0 | 428,712,334 | 10% | ||
salim001 | 0 | 100,398,529 | 49.5% | ||
bradfordtennyson | 0 | 74,133,611,238 | 85.55% | ||
arjun9 | 0 | 2,848,889,464 | 100% | ||
olayemzeecool | 0 | 291,920,455 | 49.5% | ||
safril21 | 0 | 295,366,236 | 49.5% | ||
jhanmervz | 0 | 389,584,294 | 49.5% | ||
majidawan | 0 | 621,035,857 | 100% | ||
zizuflorin | 0 | 4,255,667,182 | 10% | ||
valorforfreedom | 0 | 1,136,041,320 | 1% | ||
zullyscott | 0 | 164,115,763 | 10% | ||
molamola | 0 | 94,007,778 | 100% | ||
sukro | 0 | 321,104,147 | 100% | ||
steemwija | 0 | 3,373,019,703 | 99% | ||
torico | 0 | 3,049,616,688 | 5% | ||
kittenpics | 0 | 82,539,345 | 24.75% | ||
steemit-bank | 0 | 789,645,839 | 100% | ||
dragonflyarrow | 0 | 433,352,875 | 10% | ||
payelmia | 0 | 8,143,007,181 | 100% | ||
miguelfiguera | 0 | 290,121,115 | 10% | ||
gaminghd | 0 | 975,454,430 | 5% | ||
veenang | 0 | 3,916,035,832 | 25% | ||
cesinfenianos | 0 | 392,306,599 | 10% | ||
circleoffriends | 0 | 711,628,902 | 49.5% | ||
unfixable | 0 | 10,401,471,741 | 85.55% | ||
joe.public | 0 | 7,255,294,754 | 100% | ||
brandongiesing | 0 | 113,710,430 | 49.5% | ||
zanoni | 0 | 4,684,846,743 | 100% | ||
zulhamtrc | 0 | 538,277,446 | 100% | ||
hillaryaa | 0 | 578,302,487 | 49.5% | ||
ckbahdon | 0 | 441,881,012 | 49.5% | ||
oscardavid | 0 | 298,455,600 | 49.5% | ||
ace69 | 0 | 1,573,885,598 | 49.5% | ||
pepiflowers | 0 | 245,082,144 | 10% | ||
memorysports | 0 | 109,635,356 | 20% | ||
zafarynl | 0 | 916,576,805 | 100% | ||
iqbal84 | 0 | 246,267,454 | 49.5% | ||
flountown | 0 | 311,443,652 | 9.9% | ||
rakoo | 0 | 415,553,635 | 100% | ||
erikkun28 | 0 | 256,056,807 | 49.5% | ||
derekvonzarovich | 0 | 1,235,534,863 | 49.5% | ||
snowstorm231 | 0 | 267,567,476 | 74.25% | ||
minloulou | 0 | 800,996,965 | 100% | ||
nomadics | 0 | 21,662,086,545 | 100% | ||
collennes | 0 | 431,998,823 | 99% | ||
afrikablr | 0 | 1,871,746,594 | 100% | ||
gotgame | 0 | 849,697,266 | 49.5% | ||
critic-on | 0 | 319,850,769 | 10% | ||
zafarishafiq | 0 | 591,140,850 | 100% | ||
preetisingh1993 | 0 | 415,657,314 | 49.5% | ||
steemfuad | 0 | 106,593,273 | 100% | ||
ygriffiny | 0 | 181,725,480 | 99% | ||
krevasilis | 0 | 348,441,749 | 100% | ||
kike313 | 0 | 234,140,024 | 49.5% | ||
poodai | 0 | 4,861,522,311 | 49.5% | ||
jacobkaled | 0 | 227,469,888 | 49.5% | ||
csmedia | 0 | 2,580,194,403 | 100% | ||
meno | 0 | 6,128,935,991 | 45% | ||
mrstrange | 0 | 125,928,478 | 10% | ||
cryptocommand | 0 | 7,493,445,537 | 49.5% | ||
markmorbidity | 0 | 200,374,612 | 49.5% | ||
bobtucks | 0 | 255,905,028 | 49.5% | ||
vibelita | 0 | 210,047,656 | 35% | ||
yassinajbala | 0 | 1,503,682,379 | 100% | ||
yazannew | 0 | 574,831,573 | 100% | ||
cmbugua | 0 | 213,407,765 | 49.5% | ||
fatkat | 0 | 2,379,536,407 | 100% | ||
rloriaux | 0 | 616,296,421 | 100% | ||
samdman | 0 | 213,482,205 | 49.5% | ||
blockgators | 0 | 237,877,679 | 5% | ||
gank | 0 | 79,890,139,316 | 100% | ||
radhitmeldita | 0 | 539,917,633 | 100% | ||
jrawsthorne | 0 | 8,636,692,010 | 100% | ||
steemit-bot | 0 | 25,021,607,306 | 100% | ||
mart101 | 0 | 427,794,668 | 99% | ||
peaceandwar | 0 | 15,137,064,729 | 49.5% | ||
maaz23 | 0 | 1,697,162,611 | 100% | ||
silasvogt | 0 | 267,949,539 | 50% | ||
boyasyie | 0 | 147,230,152 | 5% | ||
loshcat | 0 | 2,985,074,742 | 100% | ||
sst | 0 | 1,516,791,062 | 100% | ||
kiaazad | 0 | 35,916,300,160 | 100% | ||
gardeningabc | 0 | 4,160,445,480 | 99% | ||
joendegz | 0 | 1,843,450,553 | 49.5% | ||
hrovat66 | 0 | 252,296,204 | 49.5% | ||
jesusj1 | 0 | 873,288,015 | 49.5% | ||
dedeleyman | 0 | 383,882,452 | 75% | ||
raidal01 | 0 | 243,755,816 | 100% | ||
kimchi-king | 0 | 1,369,647,972 | 49.5% | ||
zulfan88 | 0 | 319,360,450 | 49.5% | ||
untaljames | 0 | 1,095,480,496 | 69.3% | ||
siv | 0 | 69,758,892,867 | 20% | ||
nature.indonesia | 0 | 610,208,112 | 100% | ||
moises-moran | 0 | 462,077,177 | 10% | ||
rawdawg | 0 | 18,403,970,897 | 100% | ||
achmadyani | 0 | 1,601,933,812 | 100% | ||
gauttam | 0 | 224,757,971 | 9.9% | ||
peak.endrule | 0 | 222,510,513 | 100% | ||
hasim5164 | 0 | 268,726,501 | 49.5% | ||
alfajri78 | 0 | 78,107,621 | 5% | ||
veganroma | 0 | 1,221,883,229 | 5% | ||
g2wnlove | 0 | 152,480,578 | 24.75% | ||
war-tp | 0 | 831,085,315 | 100% | ||
normbond | 0 | 559,326,903 | 99% | ||
sammarkjames | 0 | 71,934,865 | 99% | ||
jist | 0 | 1,495,445,071 | 6% | ||
rabby20 | 0 | 508,305,959 | 100% | ||
alcy | 0 | 2,571,940,884 | 49.5% | ||
abiq | 0 | 539,166,744 | 100% | ||
mwaqar786 | 0 | 545,462,989 | 100% | ||
sharlienkah | 0 | 300,815,116 | 50% | ||
miaplexuscaleb | 0 | 581,347,962 | 100% | ||
photosdaily | 0 | 202,562,889 | 49.5% | ||
utopian-io | 0 | 65,563,315,032,843 | 43% | ||
mdsaifultop | 0 | 286,505,999 | 49.5% | ||
ptcmyanmar | 0 | 1,898,446,639 | 100% | ||
moscato | 0 | 3,999,189,621 | 30% | ||
palashbiswas | 0 | 587,717,461 | 100% | ||
underworld24 | 0 | 292,243,302 | 49.5% | ||
silverlining1 | 0 | 274,242,326 | 49.5% | ||
funstuff | 0 | 197,426,144 | 49.5% | ||
gabrielamosqueda | 0 | 85,565,657 | 10% | ||
vipins | 0 | 2,547,371,370 | 100% | ||
doctortrillo | 0 | 62,160,624 | 10% | ||
pipo092281 | 0 | 296,038,961 | 49.5% | ||
mariu.espinoza | 0 | 74,067,483 | 10% | ||
umarmughal | 0 | 608,288,848 | 100% | ||
onyfest | 0 | 723,086,652 | 50% | ||
dbddv01 | 0 | 185,677,356 | 19.8% | ||
yudiana | 0 | 121,773,058 | 20% | ||
kimaben | 0 | 504,179,518 | 24.75% | ||
jhiecortez | 0 | 638,981,412 | 100% | ||
poesiaempirica | 0 | 91,645,113 | 10% | ||
mzuami | 0 | 216,066,258 | 100% | ||
jetto | 0 | 298,160,552 | 49.5% | ||
shhrhzad77 | 0 | 542,603,422 | 100% | ||
ayasha | 0 | 1,882,601,092 | 50% | ||
ghostiee | 0 | 881,711,472 | 49.5% | ||
tanialarios | 0 | 88,255,224 | 14.85% | ||
engineeringfeed | 0 | 286,887,113 | 49.5% | ||
joseacabrerav | 0 | 144,541,586 | 10% | ||
smitop | 0 | 551,866,326 | 100% | ||
abrahman5 | 0 | 295,757,355 | 49.5% | ||
fajarharapan | 0 | 485,816,279 | 100% | ||
eleonardo | 0 | 372,401,272 | 9.9% | ||
zerin.tahmid | 0 | 292,061,718 | 49.5% | ||
noyon696 | 0 | 984,195,348 | 49.5% | ||
vsrsatish | 0 | 608,078,027 | 100% | ||
laboh | 0 | 642,919,702 | 100% | ||
zohaib715 | 0 | 418,504,951 | 49.5% | ||
fidel66 | 0 | 282,946,130 | 49.5% | ||
klizo | 0 | 416,956,848 | 49.5% | ||
irawatismk | 0 | 541,203,103 | 100% | ||
pechichemena | 0 | 855,755,934 | 5% | ||
humaira | 0 | 149,239,332 | 49.5% | ||
crypto-wisdom | 0 | 0 | 100% | ||
naideth | 0 | 227,566,964 | 20% | ||
dpalash124 | 0 | 2,050,477,110 | 49.5% | ||
wallacecarranza | 0 | 201,428,831 | 49.5% | ||
kapurejay | 0 | 610,247,798 | 100% | ||
iqbalteampoison | 0 | 540,736,973 | 100% | ||
abbykane | 0 | 121,971,216 | 19.8% | ||
farukcom | 0 | 1,025,901,651 | 5% | ||
grintsch | 0 | 689,768,251 | 100% | ||
rksagar | 0 | 471,159,249 | 100% | ||
studytext | 0 | 288,947,557 | 49.5% | ||
saharia | 0 | 291,898,072 | 49.5% | ||
mesafe | 0 | 68,668,733 | 0.99% | ||
steem100 | 0 | 609,133,357 | 100% | ||
itchyfeetdonica | 0 | 2,811,660,212 | 19.8% | ||
ladybirdec | 0 | 361,969,317 | 100% | ||
kwabena1995 | 0 | 134,473,538 | 24.75% | ||
coindzs | 0 | 172,339,451 | 100% | ||
xanderslee | 0 | 5,797,613,438 | 100% | ||
buti95 | 0 | 278,504,518 | 49.5% | ||
sufiun | 0 | 408,406,200 | 100% | ||
chullbull | 0 | 287,049,753 | 49.5% | ||
salvao | 0 | 360,793,225 | 10% | ||
rcshad0w | 0 | 3,067,527,120 | 49.5% | ||
aman2017 | 0 | 2,859,595,741 | 100% | ||
leverager | 0 | 545,402,207 | 100% | ||
spite77 | 0 | 176,265,205 | 10% | ||
enjoyy | 0 | 775,781,734 | 49.5% | ||
fabiocola | 0 | 848,036,121 | 99% | ||
markusgruber | 0 | 298,229,670 | 49.5% | ||
spark92 | 0 | 174,717,131 | 49.5% | ||
iaberius | 0 | 238,849,108 | 10% | ||
hoothoot | 0 | 464,999,077 | 99% | ||
jahangirwifii | 0 | 5,792,079,352 | 10% | ||
hasan086 | 0 | 620,597,182 | 49.5% | ||
rojinstha13 | 0 | 296,339,939 | 49.5% | ||
ucanis | 0 | 8,106,786,765 | 100% | ||
richeros | 0 | 77,881,037 | 1.98% | ||
handfree42 | 0 | 355,750,775 | 100% | ||
ilovekrys | 0 | 290,715,985 | 49.5% | ||
andisantos | 0 | 518,399,390 | 49.5% | ||
shakailove | 0 | 7,933,902,975 | 100% | ||
sundararaj | 0 | 506,074,745 | 100% | ||
thrinadh | 0 | 608,749,652 | 100% | ||
enjoyinglife | 0 | 1,436,302,707 | 1.2% | ||
sachiewerk | 0 | 213,855,913 | 49.5% | ||
bibekstha75 | 0 | 282,242,367 | 99% | ||
owaishassankhan | 0 | 261,893,118 | 49.5% | ||
sohailahmed | 0 | 7,117,239,225 | 49.5% | ||
crescendoofpeace | 0 | 551,963,274 | 10% | ||
bluehearted | 0 | 211,445,130 | 49.5% | ||
wilins | 0 | 324,502,601 | 10% | ||
ikramellahi | 0 | 592,078,686 | 100% | ||
thedolphin | 0 | 1,414,967,086 | 29.7% | ||
ik33541 | 0 | 610,878,565 | 100% | ||
grosslead | 0 | 565,400,107 | 100% | ||
argentoescribe | 0 | 557,327,020 | 99% | ||
godlovermel25 | 0 | 64,259,790 | 49.5% | ||
tomatom | 0 | 978,621,197 | 49.5% | ||
dihan | 0 | 927,394,778 | 100% | ||
harkushi | 0 | 292,501,861 | 49.5% | ||
michaelangello | 0 | 97,798,937 | 49.5% | ||
detromix87 | 0 | 473,745,029 | 100% | ||
akumar | 0 | 1,404,422,145 | 49.5% | ||
duranc | 0 | 278,060,041 | 99% | ||
azzelarab | 0 | 580,711,629 | 100% | ||
safwan10000 | 0 | 604,142,373 | 100% | ||
mike11 | 0 | 6,384,164,392 | 100% | ||
e-gaucho | 0 | 501,562,162 | 99% | ||
iwanderela | 0 | 761,684,595 | 5% | ||
travelcontinuous | 0 | 72,441,981 | 10% | ||
chotho | 0 | 4,425,578,905 | 100% | ||
rayboma | 0 | 398,535,674 | 70% | ||
jumijerus | 0 | 427,753,494 | 75% | ||
pario | 0 | 5,438,398,013 | 100% | ||
biomanu | 0 | 5,259,922,800 | 100% | ||
punjolife | 0 | 4,650,924,506 | 100% | ||
xisxie | 0 | 398,439,472 | 70% | ||
hermansanchezg | 0 | 168,037,200 | 49.5% | ||
fayamba | 0 | 136,867,813 | 24.75% | ||
nellita66 | 0 | 179,766,199 | 49.5% | ||
altionsan | 0 | 235,328,693 | 45% | ||
goalgetter | 0 | 253,194,460 | 49.5% | ||
krissy330 | 0 | 114,371,856 | 10% | ||
adncabrera | 0 | 220,946,224 | 10% | ||
gaozben | 0 | 238,432,403 | 49.5% | ||
catalincernat | 0 | 3,554,862,149 | 29.7% | ||
cordeta | 0 | 353,095,605 | 10% | ||
camillius | 0 | 488,735,499 | 49.5% | ||
monoindustrias | 0 | 205,173,749 | 99% | ||
ariffashraff | 0 | 120,765,411 | 49.5% | ||
silentpartnerio | 0 | 204,442,422 | 33.33% | ||
salahudeen | 0 | 277,887,454 | 55% | ||
creatrixity | 0 | 1,336,760,863 | 49.5% | ||
amosbastian | 0 | 45,059,739,837 | 78.18% | ||
ocn | 0 | 573,858,057 | 100% | ||
nahupuku | 0 | 252,086,224 | 10% | ||
johannfrare | 0 | 162,695,095 | 10% | ||
not-a-gamer | 0 | 1,314,735,548 | 100% | ||
bobsthinking | 0 | 981,646,276 | 49.5% | ||
mkmk | 0 | 545,270,120 | 49.5% | ||
smanuels | 0 | 137,057,060 | 49.5% | ||
jamesmovic | 0 | 6,310,527,826 | 100% | ||
layanmarissa | 0 | 241,674,908 | 49.5% | ||
garudas | 0 | 305,764,374 | 50% | ||
atare | 0 | 69,494,597 | 9.9% | ||
thinkingmind | 0 | 4,531,999,459 | 100% | ||
irisworld | 0 | 212,836,611 | 49.5% | ||
daeshawn | 0 | 193,635,295 | 10% | ||
bold42 | 0 | 250,427,030 | 50% | ||
learnguitar | 0 | 268,608,804 | 100% | ||
biffybirdcam | 0 | 2,902,265,481 | 24.75% | ||
bitcoin.news | 0 | 126,512,558 | 49.5% | ||
terrenox1 | 0 | 583,923,254 | 100% | ||
yusmi | 0 | 64,676,265 | 3% | ||
spsoofbaf | 0 | 564,320,930 | 100% | ||
vinakim | 0 | 478,264,882 | 100% | ||
khalsa | 0 | 520,143,816 | 100% | ||
dolphinscute | 0 | 297,598,174 | 49.5% | ||
dennis041713 | 0 | 496,154,318 | 100% | ||
bangkarnen | 0 | 576,706,289 | 100% | ||
thescholarlyowl | 0 | 745,733,031 | 49.5% | ||
exif | 0 | 617,696,609 | 100% | ||
adventuroussoul | 0 | 7,675,154,450 | 10% | ||
jhonnydiaz | 0 | 91,332,768 | 14.85% | ||
osmania | 0 | 36,741,660,105 | 100% | ||
chejonte | 0 | 195,135,412 | 10% | ||
tissuesurgeon | 0 | 64,239,465 | 12.37% | ||
osobiggie | 0 | 91,442,173 | 5% | ||
ismailrafael | 0 | 1,670,633,110 | 100% | ||
aoe | 0 | 320,219,787 | 100% | ||
belemo | 0 | 16,047,595,629 | 100% | ||
jjay | 0 | 552,888,050 | 66% | ||
thecreatorx | 0 | 422,940,145 | 99% | ||
patricklancaster | 0 | 6,724,570,575 | 49.5% | ||
culgin | 0 | 37,846,341,868 | 100% | ||
andrelion | 0 | 169,042,021 | 100% | ||
mrxplicit | 0 | 1,439,848,884 | 100% | ||
freerolll | 0 | 396,596,034 | 100% | ||
peppermint24 | 0 | 1,211,661,156 | 1.05% | ||
cryptospreads | 0 | 296,430,369 | 49.5% | ||
patatesyiyen | 0 | 81,722,479 | 12.37% | ||
deveshsinghtomar | 0 | 298,426,483 | 49.5% | ||
fullcoverbetting | 0 | 20,261,042,979 | 50% | ||
ultraspace | 0 | 2,939,732,751 | 100% | ||
workin2005 | 0 | 2,707,178,431 | 9% | ||
pareshnakar | 0 | 416,337,448 | 99% | ||
pauloliverpino | 0 | 293,455,066 | 49.5% | ||
baixiian | 0 | 539,276,749 | 100% | ||
haseebkhan13 | 0 | 295,064,735 | 49.5% | ||
ghevangelist | 0 | 609,470,266 | 100% | ||
gandalfthewhite | 0 | 862,433,377 | 100% | ||
strings | 0 | 1,039,323,894 | 49.5% | ||
gangplankhg | 0 | 82,412,909 | 33.33% | ||
gangplankhq | 0 | 97,719,006 | 33.33% | ||
teevmoore | 0 | 2,539,074,435 | 5% | ||
fher | 0 | 426,506,631 | 99% | ||
bazooka | 0 | 183,052,176 | 29.7% | ||
theturk | 0 | 121,261,520 | 24.75% | ||
pboss123 | 0 | 446,739,377 | 49.5% | ||
cheesom | 0 | 351,916,329 | 49.5% | ||
ttinytony1989 | 0 | 299,193,453 | 49.5% | ||
indrajeet | 0 | 142,377,711 | 49.5% | ||
lesshorrible | 0 | 7,653,978,667 | 49.5% | ||
emirfirlar | 0 | 4,154,112,722 | 100% | ||
kvngcreamy | 0 | 559,009,029 | 99% | ||
logan9852 | 0 | 3,781,923,238 | 100% | ||
aljoursantillan | 0 | 409,918,123 | 100% | ||
techlife | 0 | 4,777,157,604 | 100% | ||
creatisa | 0 | 628,359,582 | 99% | ||
jinxizhen | 0 | 429,554,154 | 100% | ||
andrewclk | 0 | 295,235,394 | 49.5% | ||
greenvago | 0 | 15,081,775,780 | 99% | ||
mishamardiah | 0 | 539,462,070 | 100% | ||
rionpistorius | 0 | 121,382,983 | 49.5% | ||
andrea97 | 0 | 487,242,168 | 49.5% | ||
jan.kretschmer | 0 | 1,651,422,108 | 49.5% | ||
michealkey | 0 | 465,620,567 | 49.5% | ||
bishoppeter1 | 0 | 137,499,179 | 20% | ||
jalal125j | 0 | 295,175,151 | 50% | ||
motlhamme | 0 | 390,943,360 | 100% | ||
agyapong | 0 | 183,498,394 | 49.5% | ||
rachmaddarmawan | 0 | 124,926,411 | 5% | ||
yadah04 | 0 | 2,976,162,520 | 49.5% | ||
heajin | 0 | 125,499,453 | 24.75% | ||
alexabsolute | 0 | 1,184,492,916 | 10% | ||
lemony-cricket | 0 | 81,486,125,520 | 100% | ||
babaj | 0 | 360,062,459 | 99% | ||
leguidecrypto | 0 | 522,667,236 | 5% | ||
majalahsahabat | 0 | 61,043,220 | 10% | ||
niko3d | 0 | 2,292,538,843 | 49.5% | ||
cryptosludge | 0 | 29,469,961,978 | 69.3% | ||
rjguerra | 0 | 206,084,526 | 10% | ||
ian19 | 0 | 1,114,325,764 | 100% | ||
kamilala125 | 0 | 317,505,225 | 99% | ||
snowgoat | 0 | 481,765,340 | 99% | ||
saifannur-mzy | 0 | 296,622,988 | 49.5% | ||
pelephotography | 0 | 603,394,501 | 99% | ||
kaking | 0 | 257,186,971 | 49.5% | ||
darltasie | 0 | 557,180,708 | 99% | ||
wardatulaini | 0 | 463,030,975 | 100% | ||
neeqi | 0 | 831,439,156 | 6% | ||
marcon | 0 | 8,816,423,279 | 100% | ||
openmind3000 | 0 | 514,816,292 | 10% | ||
cryptojb | 0 | 501,910,621 | 100% | ||
modernmclaire | 0 | 274,067,946 | 49.5% | ||
carol1990 | 0 | 427,677,213 | 99% | ||
ryl | 0 | 340,322,105 | 49.5% | ||
oduduokopide | 0 | 290,322,543 | 49.5% | ||
neversaynever | 0 | 1,490,400,691 | 100% | ||
felixgarciap | 0 | 597,135,768 | 50% | ||
aperterikk | 0 | 1,142,872,298 | 20% | ||
steemassistant | 0 | 538,670,145 | 99% | ||
awilix | 0 | 111,394,849 | 37.5% | ||
warmcracklesound | 0 | 1,156,925,218 | 49.5% | ||
caitycat | 0 | 1,879,373,777 | 49.5% | ||
breezieblack | 0 | 213,623,341 | 49.5% | ||
squares | 0 | 2,248,421,808 | 99% | ||
gio6 | 0 | 743,819,588 | 49.5% | ||
mohdtahir121 | 0 | 602,419,258 | 100% | ||
rittens | 0 | 427,441,011 | 49.5% | ||
foodtaster | 0 | 1,663,089,296 | 100% | ||
gakimov | 0 | 672,340,831 | 100% | ||
bellarulox | 0 | 215,892,907 | 50% | ||
fireguardian | 0 | 316,157,547 | 10% | ||
zeleiracordero | 0 | 123,578,146 | 10% | ||
loydjayme25 | 0 | 231,094,819 | 49.5% | ||
yosuandoni | 0 | 264,246,636 | 10% | ||
segunreus | 0 | 2,449,008,060 | 100% | ||
hmctrasher | 0 | 1,206,562,786 | 29.7% | ||
hasnawati | 0 | 540,727,475 | 100% | ||
emilysengmein | 0 | 550,431,076 | 99% | ||
binarycounter | 0 | 538,170,377 | 99% | ||
sylinda | 0 | 229,037,228 | 49.5% | ||
sheldrick5 | 0 | 2,041,568,624 | 49.5% | ||
haggislove | 0 | 296,361,811 | 49.5% | ||
freshenstine | 0 | 213,828,062 | 49.5% | ||
kingsman2 | 0 | 301,198,389 | 49.5% | ||
value2 | 0 | 255,704,135 | 49.5% | ||
victoriakorol | 0 | 391,833,558 | 49.5% | ||
flozockt | 0 | 268,464,794 | 100% | ||
marlyncabrera | 0 | 158,736,066 | 10% | ||
mikeblize | 0 | 536,647,076 | 99% | ||
fjoddel | 0 | 292,192,725 | 49.5% | ||
bernardalejandro | 0 | 425,075,344 | 99% | ||
fuhreresu | 0 | 551,624,425 | 100% | ||
lokiamfire | 0 | 285,864,858 | 49.5% | ||
tailslide | 0 | 507,195,091 | 100% | ||
sn0w-fox | 0 | 481,397,728 | 49.5% | ||
polbot | 0 | 230,841,350 | 100% | ||
beladro | 0 | 2,162,120,061 | 49.5% | ||
lovetouch | 0 | 296,202,977 | 49.5% | ||
cryptobols | 0 | 15,558,894,796 | 100% | ||
antigenx | 0 | 11,864,614,009 | 39.6% | ||
benleemusic | 0 | 15,209,373,327 | 5% | ||
happymichael | 0 | 516,787,555 | 20% | ||
cartel | 0 | 467,098,052 | 10% | ||
jbrrd | 0 | 340,225,952 | 15% | ||
crowbarmama | 0 | 380,826,494 | 4% | ||
akpos | 0 | 6,008,914,424 | 100% | ||
penjahit | 0 | 116,261,070 | 5% | ||
yellthway | 0 | 190,068,654 | 49.5% | ||
ehtishamjadoon | 0 | 268,605,053 | 49.5% | ||
christianunger | 0 | 2,653,719,591 | 49.5% | ||
h0rn3t | 0 | 541,260,997 | 99% | ||
mariogiancini | 0 | 426,652,128 | 74.25% | ||
viajeradelrio | 0 | 308,426,522 | 70% | ||
cy23 | 0 | 553,629,537 | 100% | ||
medical-hall | 0 | 385,658,352 | 69.3% | ||
ablaire | 0 | 1,384,678,850 | 69.3% | ||
metalhero | 0 | 293,353,879 | 49.5% | ||
basir92 | 0 | 290,457,379 | 49.5% | ||
rheyss08 | 0 | 289,565,357 | 49.5% | ||
tanweeralam | 0 | 602,081,211 | 100% | ||
exzorltg | 0 | 142,542,888 | 6% | ||
julianalpanta | 0 | 290,198,712 | 49.5% | ||
sampath94 | 0 | 259,415,919 | 49.5% | ||
figuringoutsrn | 0 | 366,455,311 | 99% | ||
runningproject | 0 | 12,170,535,234 | 100% | ||
tuumar | 0 | 380,199,759 | 100% | ||
armguinan | 0 | 238,173,219 | 50% | ||
annamighty | 0 | 229,340,636 | 49.5% | ||
steemtogether | 0 | 137,670,178 | 10% | ||
sitiaishah | 0 | 5,449,521,388 | 100% | ||
henrysblog | 0 | 121,778,250 | 19.8% | ||
cryptoniumabhi | 0 | 4,405,330,497 | 100% | ||
victorivera | 0 | 515,636,900 | 99% | ||
benjaspa | 0 | 295,432,226 | 49.5% | ||
polashsen | 0 | 488,921,926 | 100% | ||
hera-b | 0 | 590,647,497 | 100% | ||
balcon07 | 0 | 649,970,371 | 100% | ||
wrpx | 0 | 725,318,842 | 49.5% | ||
hafidhiati92 | 0 | 538,980,406 | 100% | ||
fai.zul | 0 | 293,795,707 | 49.5% | ||
nightdragon | 0 | 537,391,002 | 49.5% | ||
frozia | 0 | 296,165,353 | 49.5% | ||
shawnycx | 0 | 538,553,764 | 99% | ||
kulin12 | 0 | 275,266,274 | 49.5% | ||
originalmrspice | 0 | 7,397,333,092 | 10% | ||
loolooasuna | 0 | 1,299,409,883 | 49.5% | ||
mahmuliadi | 0 | 267,961,634 | 49.5% | ||
kim24 | 0 | 484,591,265 | 100% | ||
aronexxon | 0 | 81,457,613 | 49.5% | ||
atjehsteemit | 0 | 818,129,160 | 49.5% | ||
vlogger56 | 0 | 228,566,556 | 49.5% | ||
lilkufalli | 0 | 298,136,812 | 49.5% | ||
choku | 0 | 296,680,398 | 49.5% | ||
ulfiatu.akiya | 0 | 475,775,062 | 100% | ||
teutonium | 0 | 14,559,053,500 | 100% | ||
jopjk | 0 | 476,303,473 | 99% | ||
arellanoyan | 0 | 289,338,288 | 99% | ||
digitokash | 0 | 362,000,643 | 6% | ||
andrespire | 0 | 61,021,520 | 10% | ||
ashmodz | 0 | 415,694,885 | 1% | ||
anyes2013 | 0 | 1,631,268,486 | 49.5% | ||
oadissin | 0 | 70,790,511 | 49.5% | ||
jims | 0 | 495,543,420 | 99% | ||
estherekanem | 0 | 438,934,441 | 99% | ||
angeluswins | 0 | 427,592,910 | 79.2% | ||
carloseduardogil | 0 | 182,817,536 | 29.7% | ||
ldanielgmz | 0 | 259,002,851 | 49.5% | ||
nickiechua | 0 | 288,960,874 | 49.5% | ||
legin | 0 | 1,338,394,945 | 100% | ||
upyinnyarthutha | 0 | 374,879,363 | 49.5% | ||
monwalker | 0 | 296,688,669 | 49.5% | ||
tranghuyen | 0 | 396,661,035 | 49.5% | ||
zombieslayer | 0 | 213,124,679 | 49.5% | ||
abuhasan | 0 | 298,893,699 | 49.5% | ||
the-doubled | 0 | 290,044,114 | 49.5% | ||
nopenotagain | 0 | 682,737,710 | 49.5% | ||
anam01 | 0 | 201,260,947 | 100% | ||
mirna98 | 0 | 213,958,212 | 49.5% | ||
annassatu | 0 | 422,846,997 | 70% | ||
cryptogeee | 0 | 277,647,697 | 49.5% | ||
mahassan | 0 | 502,383,652 | 100% | ||
sonofgod87 | 0 | 237,347,543 | 49.5% | ||
thesambafest | 0 | 116,646,850 | 49.5% | ||
patlu | 0 | 602,439,452 | 20% | ||
dmitriysar | 0 | 584,290,347 | 100% | ||
mchandra | 0 | 1,224,284,615 | 4.95% | ||
e-troubled | 0 | 534,650,498 | 99% | ||
beni96 | 0 | 290,728,051 | 49.5% | ||
amico | 0 | 860,708,936 | 100% | ||
mahendran7418 | 0 | 298,418,530 | 49.5% | ||
yarinergonzalez | 0 | 427,065,544 | 84.15% | ||
bos-giok | 0 | 213,016,177 | 49.5% | ||
scottshots | 0 | 586,520,907 | 3% | ||
sunshinebear | 0 | 1,008,692,616 | 49.5% | ||
zeshanjaved | 0 | 262,254,391 | 49.5% | ||
gustanak | 0 | 289,095,354 | 49.5% | ||
jeffmcmullen | 0 | 575,141,907 | 8% | ||
judicar | 0 | 611,753,522 | 100% | ||
neopch | 0 | 1,637,985,448 | 10% | ||
josevallera | 0 | 222,583,632 | 10% | ||
jaicyjarc | 0 | 221,966,259 | 49.5% | ||
tesselart | 0 | 3,589,822,823 | 50% | ||
yarleni | 0 | 608,940,006 | 100% | ||
rikilb | 0 | 237,863,927 | 49.5% | ||
paulo380 | 0 | 609,202,028 | 100% | ||
cicisaja | 0 | 3,228,564,897 | 100% | ||
azharmaulana | 0 | 228,971,400 | 49.5% | ||
toyosiartdiy | 0 | 277,174,390 | 49.5% | ||
bushu | 0 | 299,617,271 | 49.5% | ||
dedesuryani | 0 | 154,195,197 | 49.5% | ||
hrhabib | 0 | 612,103,681 | 100% | ||
linguist | 0 | 60,855,514 | 10% | ||
kutrulaju | 0 | 236,912,285 | 49.5% | ||
d00k13 | 0 | 256,718,663 | 1% | ||
har5h | 0 | 296,729,156 | 49.5% | ||
fruitarianism | 0 | 9,241,299,015 | 49.5% | ||
elizabeth-more | 0 | 496,495,300 | 100% | ||
josecca | 0 | 291,750,479 | 49.5% | ||
jabodetabek | 0 | 210,323,925 | 49.5% | ||
chillingotter | 0 | 88,364,260 | 2.5% | ||
leviathan101 | 0 | 557,377,386 | 99% | ||
oguylmz | 0 | 290,509,056 | 49.5% | ||
hobish | 0 | 182,512,326 | 29.7% | ||
sirmiraculous | 0 | 758,779,666 | 100% | ||
donjyde | 0 | 289,250,265 | 49.5% | ||
ippai | 0 | 189,865,503 | 49.5% | ||
novabluegoji | 0 | 278,227,000 | 49.5% | ||
showoverview | 0 | 348,404,544 | 49.5% | ||
asrizalmustafa | 0 | 433,845,555 | 100% | ||
ancapbarbie | 0 | 233,176,004 | 50% | ||
nonsqtr | 0 | 479,411,212 | 49.5% | ||
agusriandi | 0 | 298,861,931 | 49.5% | ||
morph3us | 0 | 284,192,657 | 49.5% | ||
glorimar | 0 | 205,559,017 | 49.5% | ||
moustapha0606 | 0 | 587,732,212 | 100% | ||
bittrex12 | 0 | 162,506,930 | 49.5% | ||
virgo27 | 0 | 1,152,776,426 | 100% | ||
masoudgh69 | 0 | 2,081,173,984 | 80% | ||
crispycoinboys | 0 | 378,200,987 | 4.95% | ||
carloniere | 0 | 341,480,731 | 99% | ||
bit6in | 0 | 580,681,191 | 100% | ||
muzzlealem | 0 | 119,312,121 | 19.8% | ||
mujiarreza | 0 | 259,284,966 | 49.5% | ||
mrgranville | 0 | 486,437,093 | 99% | ||
mohamedsabry | 0 | 193,830,450 | 49.5% | ||
faisal08 | 0 | 245,855,269 | 49.5% | ||
roalkege | 0 | 191,839,017 | 49.5% | ||
ardaar | 0 | 195,659,223 | 100% | ||
asqalan | 0 | 298,890,802 | 49.5% | ||
spycenter | 0 | 288,897,207 | 49.5% | ||
maryjohnson | 0 | 284,371,963 | 49.5% | ||
tfq86 | 0 | 3,389,674,973 | 100% | ||
healthgym | 0 | 560,885,579 | 100% | ||
omairqazi | 0 | 189,825,711 | 49.5% | ||
tanzy | 0 | 259,430,397 | 49.5% | ||
bitmycoin | 0 | 3,399,404,274 | 100% | ||
mylittlestar | 0 | 268,765,224 | 49.5% | ||
hendraman | 0 | 223,467,031 | 100% | ||
yckifoundation | 0 | 323,208,015 | 100% | ||
bdshakib | 0 | 289,654,018 | 49.5% | ||
gabrielperez0411 | 0 | 268,241,297 | 49.5% | ||
sshappydayz | 0 | 1,358,462,624 | 100% | ||
supersteemian | 0 | 562,564,619 | 100% | ||
hornet-on-tour | 0 | 95,585,868 | 5% | ||
darkfuseion | 0 | 238,873,882 | 20% | ||
devangbuch | 0 | 274,735,503 | 49.5% | ||
harris2017 | 0 | 296,022,120 | 49.5% | ||
gisi | 0 | 874,624,973 | 2% | ||
scottychams | 0 | 907,600,795 | 10% | ||
adriamguillen | 0 | 282,770,017 | 49.5% | ||
iamjimmy | 0 | 533,195,057 | 100% | ||
genoner | 0 | 1,778,014,473 | 94.05% | ||
haunting | 0 | 180,453,200 | 49.5% | ||
boristy | 0 | 240,363,675 | 49.5% | ||
darlingomaet | 0 | 293,135,255 | 49.5% | ||
run.vince.run | 0 | 464,575,415 | 50% | ||
mixedmentalarts | 0 | 382,569,767 | 100% | ||
essteem | 0 | 811,895,489 | 100% | ||
abdane | 0 | 182,406,364 | 49.5% | ||
jayo | 0 | 201,285,676 | 49.5% | ||
gadrian | 0 | 18,611,823,727 | 100% | ||
neilrichmond | 0 | 231,176,296 | 49.5% | ||
illuminationst8 | 0 | 1,673,869,559 | 5% | ||
pushpo | 0 | 467,558,689 | 100% | ||
animecollection | 0 | 505,665,025 | 99% | ||
axellhail | 0 | 562,967,590 | 100% | ||
busytime | 0 | 292,053,960 | 49.5% | ||
ulqu3 | 0 | 104,266,181 | 4% | ||
saidaplc | 0 | 466,326,978 | 100% | ||
cryptomint | 0 | 121,789,976 | 20% | ||
haikalisifa | 0 | 279,477,107 | 49.5% | ||
funcontest | 0 | 88,493,492 | 9.9% | ||
arrahman90 | 0 | 305,546,305 | 49.5% | ||
hepeng.chn | 0 | 71,475,602 | 49.5% | ||
lynbabe10 | 0 | 650,318,323 | 100% | ||
hulya.rtk.krsn | 0 | 295,081,988 | 49.5% | ||
chachikho123 | 0 | 258,462,015 | 49.5% | ||
ayoade96 | 0 | 333,345,279 | 100% | ||
lartist-zen | 0 | 231,442,391 | 10% | ||
gifty-e | 0 | 152,025,312 | 49.5% | ||
steemaniax | 0 | 228,763,969 | 49.5% | ||
molikhatun | 0 | 1,635,432,322 | 100% | ||
barutundefteri | 0 | 287,560,681 | 49.5% | ||
steemvests | 0 | 475,457,970 | 100% | ||
rasyib | 0 | 594,670,858 | 100% | ||
capt.kili | 0 | 540,189,746 | 94.05% | ||
good-karme | 0 | 1,074,214,380 | 100% | ||
agrestic | 0 | 495,775,801 | 49.5% | ||
lifesteem | 0 | 215,923,578 | 49.5% | ||
estg1 | 0 | 298,891,348 | 49.5% | ||
jarosalawszafran | 0 | 536,508,634 | 19.8% | ||
mrjokar | 0 | 192,654,566 | 49.5% | ||
apartphilosopher | 0 | 610,870,205 | 100% | ||
charlotteroze | 0 | 143,575,299 | 24.75% | ||
hoscker | 0 | 122,263,312 | 20% | ||
bgmuna | 0 | 469,632,564 | 100% | ||
bravofer | 0 | 286,466,429 | 49.5% | ||
ari16 | 0 | 1,200,727,376 | 49.5% | ||
kumpaiy | 0 | 523,666,418 | 100% | ||
bloghumberto | 0 | 286,280,238 | 49.5% | ||
marianadagraca | 0 | 610,003,808 | 100% | ||
greenville | 0 | 320,558,414 | 100% | ||
jatinder | 0 | 608,841,841 | 100% | ||
ahmad097 | 0 | 232,346,648 | 49.5% | ||
liewps | 0 | 259,740,414 | 49.5% | ||
circlemotogp | 0 | 605,103,391 | 100% | ||
norvicgarcia | 0 | 228,157,469 | 49.5% | ||
good-korma | 0 | 465,726,876 | 100% | ||
mbahtutorial | 0 | 292,394,694 | 49.5% | ||
miralva | 0 | 379,512,733 | 85% | ||
julialee66 | 0 | 131,962,124 | 49.5% | ||
najamsultan | 0 | 608,029,562 | 100% | ||
belvajarandilla | 0 | 247,441,516 | 49.5% | ||
maslowmission | 0 | 83,434,568 | 2% | ||
kelvo | 0 | 170,675,467 | 29.7% | ||
animesukidesu | 0 | 201,204,430 | 49.5% | ||
abyzee | 0 | 418,128,679 | 100% | ||
gutenmorgen | 0 | 1,587,001,783 | 10% | ||
jcobs | 0 | 421,434,971 | 100% | ||
technotroll | 0 | 1,037,050,702 | 49.5% | ||
trustyourpath | 0 | 298,824,586 | 49.5% | ||
mihadan | 0 | 273,664,113 | 50% | ||
khusi12 | 0 | 589,428,817 | 100% | ||
taywilkins | 0 | 299,268,602 | 49.5% | ||
beshooo | 0 | 286,438,476 | 49.5% | ||
camuel | 0 | 532,155,944 | 2% | ||
budika | 0 | 297,354,056 | 49.5% | ||
riandifc | 0 | 210,822,295 | 49.5% | ||
dnews | 0 | 734,910,962 | 1% | ||
gleidyscegarra | 0 | 298,108,212 | 49.5% | ||
steallion | 0 | 6,847,864,464 | 100% | ||
zay-arasi | 0 | 421,213,720 | 100% | ||
sahiba | 0 | 294,992,693 | 49.5% | ||
dlife | 0 | 296,344,705 | 1% | ||
yoitsme | 0 | 141,667,922 | 49.5% | ||
sushant769 | 0 | 67,292,656 | 100% | ||
riazuddin101 | 0 | 483,923,688 | 100% | ||
terry00 | 0 | 258,386,831 | 100% | ||
herdi.steemit | 0 | 274,090,982 | 45% | ||
kaziraselabedin | 0 | 609,806,003 | 100% | ||
missninaholy | 0 | 293,225,436 | 49.5% | ||
wealth4good | 0 | 414,074,884 | 7% | ||
phototutorials | 0 | 298,017,691 | 1% | ||
kaestel | 0 | 238,666,715 | 49.5% | ||
samantha16 | 0 | 293,391,156 | 49.5% | ||
jahidul74 | 0 | 293,758,804 | 49.5% | ||
travelerjoe | 0 | 296,201,286 | 49.5% | ||
occpresents | 0 | 1,270,516,439 | 49.5% | ||
kuberman | 0 | 288,942,481 | 100% | ||
mdeyasin | 0 | 298,018,781 | 49.5% | ||
rodonlegend | 0 | 605,031,044 | 100% | ||
topinon | 0 | 277,249,763 | 50% | ||
lamborin | 0 | 279,768,421 | 50% | ||
thomaskatan | 0 | 1,161,825,403 | 69.3% | ||
rechellomataro | 0 | 292,954,463 | 49.5% | ||
lykia | 0 | 295,808,277 | 49.5% | ||
alexverge | 0 | 537,676,983 | 99% | ||
revolotear | 0 | 61,083,996 | 10% | ||
msearles | 0 | 436,408,532 | 49.5% | ||
deep.blue | 0 | 1,347,163,080 | 99% | ||
rizkiadi | 0 | 275,369,628 | 49.5% | ||
blogyourlife | 0 | 298,922,096 | 49.5% | ||
stefannikolov | 0 | 603,076,800 | 100% | ||
dheaulvani | 0 | 541,657,727 | 100% | ||
justinzidi3 | 0 | 551,270,443 | 100% | ||
dynet | 0 | 277,245,882 | 49.5% | ||
theaudgirl | 0 | 1,719,512,485 | 10% | ||
yeasi23 | 0 | 547,279,551 | 100% | ||
giddensk7 | 0 | 73,243,328 | 12.37% | ||
altcoinpost | 0 | 223,409,016 | 1% | ||
dekna.steem | 0 | 520,164,392 | 100% | ||
k4v2n | 0 | 298,130,549 | 49.5% | ||
mdsalehin | 0 | 596,082,679 | 100% | ||
rubengamer2010 | 0 | 345,041,392 | 80% | ||
sabina10 | 0 | 453,750,931 | 100% | ||
mellissamartz | 0 | 85,574,085 | 14.85% | ||
altogo | 0 | 375,327,105 | 9.9% | ||
ubahal | 0 | 276,727,460 | 50% | ||
opluke | 0 | 286,018,576 | 49.5% | ||
edelay | 0 | 342,089,794 | 60% | ||
primersion | 0 | 962,218,536 | 45% | ||
dhanu1998 | 0 | 432,090,791 | 100% | ||
mirazbd365 | 0 | 299,346,064 | 49.5% | ||
anime.lovers | 0 | 301,281,944 | 49.5% | ||
nanaboateng | 0 | 76,341,448 | 12.37% | ||
jacobzeema | 0 | 245,834,277 | 49.5% | ||
realredimi2 | 0 | 295,100,924 | 49.5% | ||
youraverageguy | 0 | 615,219,098 | 49.5% | ||
caristeem | 0 | 538,514,467 | 100% | ||
paulove | 0 | 296,138,000 | 49.5% | ||
altcoinfantasy | 0 | 186,741,870 | 9.9% | ||
raju1 | 0 | 607,553,662 | 100% | ||
lemcriq | 0 | 458,878,792 | 100% | ||
molang | 0 | 597,560,878 | 100% | ||
haejin-sucks | 0 | 73,777,809 | 49.5% | ||
dinaislamdina | 0 | 295,364,269 | 49.5% | ||
benkweller | 0 | 17,012,004,466 | 9.9% | ||
wide | 0 | 395,642,294 | 100% | ||
ernoldlvb | 0 | 231,274,633 | 100% | ||
i-have-tested | 0 | 532,404,174 | 99% | ||
steemramos | 0 | 127,858,487 | 24.75% | ||
stop40 | 0 | 213,354,509 | 49.5% |
سلام برای اولین بار دارم کامنت فارسی میزارم ایرانی هستی، درسته؟
author | afiii |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180730t114421683z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-30 11:44:21 |
last_update | 2018-07-30 11:44:21 |
depth | 1 |
children | 4 |
last_payout | 2018-08-06 11:44:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 134,272,793,598 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,503,667 |
net_rshares | 28,492,486,958 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 28,492,486,958 | 21% |
Hi, bale
author | mahdiyari |
---|---|
permlink | re-afiii-re-mahdiyari-steemauto-and-its-problems-solved-20180730t115556372z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-30 11:55:57 |
last_update | 2018-07-30 11:55:57 |
depth | 2 |
children | 3 |
last_payout | 2018-08-06 11:55: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 | 8 |
author_reputation | 199,864,818,197,856 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,504,831 |
net_rshares | 0 |
Nice to meet you then. I thought I'm the only one :D Trying to learn about your @steemauto Looks useful Thanks anyways and good luck
author | afiii |
---|---|
permlink | re-mahdiyari-re-afiii-re-mahdiyari-steemauto-and-its-problems-solved-20180730t122135148z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["steemauto"],"app":"steemit/0.1"} |
created | 2018-07-30 12:21:36 |
last_update | 2018-07-30 12:21:36 |
depth | 3 |
children | 2 |
last_payout | 2018-08-06 12:21: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 | 132 |
author_reputation | 134,272,793,598 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,507,359 |
net_rshares | 0 |
Thanks for all your effort, @mahdiyari: I feel you do all with true love, isn't' it? --- A huge hug from @amico! <sub> (Resteemed with joy and love.) </sub>
author | amico |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180731t230047358z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["utopian-io"],"users":["mahdiyari","amico"],"links":["/@mahdiyari","/@amico"],"image":[]} |
created | 2018-07-31 23:00:48 |
last_update | 2018-07-31 23:00:48 |
depth | 1 |
children | 0 |
last_payout | 2018-08-07 23:00:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 158 |
author_reputation | 51,076,240,298,517 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,689,895 |
net_rshares | 21,763,857,808 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
glitterbooster | 0 | 5,569,030,520 | 61% | ||
dustsweeper | 0 | 16,194,827,288 | 1.66% |
Congratulations @mahdiyari! Your post was mentioned in the [Steemit Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20180729) in the following category: * Upvotes - Ranked 5 with 1413 upvotes
author | arcange |
---|---|
permlink | re-steemauto-and-its-problems-solved-20180729t180733000z |
category | utopian-io |
json_metadata | "" |
created | 2018-07-30 16:10:42 |
last_update | 2018-07-30 16:10:42 |
depth | 1 |
children | 0 |
last_payout | 2018-08-06 16:10: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 | 214 |
author_reputation | 1,146,633,668,945,473 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,532,357 |
net_rshares | 11,421,080,136 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 11,421,080,136 | 8% |
wow its great and good news sir.. thanks for share..
author | binoy2018 |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-1532933143582z |
category | utopian-io |
json_metadata | "{\"tags\":[\"utopian-io\"],\"app\":\"steemfollower/0.01\"}" |
created | 2018-07-30 06:46:06 |
last_update | 2018-07-30 06:46:06 |
depth | 1 |
children | 0 |
last_payout | 2018-08-06 06:46:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 82,417,263,926 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,477,116 |
net_rshares | 28,484,387,480 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 28,484,387,480 | 21% |
Hello ! I love your steemauto project, that is really a great development for common steemian. Can you please respond to me in steem.chat. I want to talk to you regarding something else, I think you are a geek, so I want to know something from you.
author | crypto-wisdom |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180814t145555498z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-08-14 14:56:03 |
last_update | 2018-08-14 14:56:03 |
depth | 1 |
children | 0 |
last_payout | 2018-08-21 14:56: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 | 250 |
author_reputation | 11,811,825,859,420 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,173,659 |
net_rshares | 0 |
I’m pretty sure this is the right place to ask. @mahdiyari or @-anyone who can give me a hand. I’d like to set myself to Upvote posts that my wife Upvotes. I don’t see a way to do that on Steemauto, am I missing something? I can follow her and be the first to upvote her posts. Is it possible to set myself up to automatically upvote the posts she Upvotes?
author | dandays |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180815t214735588z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-08-15 21:47:36 |
last_update | 2018-08-15 21:47:36 |
depth | 1 |
children | 0 |
last_payout | 2018-08-22 21:47: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 | 356 |
author_reputation | 253,596,081,930,457 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,317,958 |
net_rshares | 0 |
well done and thank you for your great work @mahdiyari... so the problem resolved and I can see my auto-upvote working gorgeously. keep up the good work
author | dipoabasch | ||||||
---|---|---|---|---|---|---|---|
permlink | re-mahdiyari-2018730t173626326z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","development","steemauto","update","fix"],"app":"esteem/1.0.10-surfer","format":"markdown+html","community":"esteem","encrypted":0} | ||||||
created | 2018-07-30 10:36:30 | ||||||
last_update | 2018-07-30 10:36:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-08-06 10:36:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.034 HBD | ||||||
curator_payout_value | 0.010 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 152 | ||||||
author_reputation | 3,172,316,340,053 | ||||||
root_title | "Steemauto and its problems - Solved!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 66,497,351 | ||||||
net_rshares | 28,760,079,347 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 28,492,486,958 | 21% | ||
pemburubitcoin | 0 | 267,592,389 | 100% |
Thank you for your work! I love Steemauto and Steemfollowes, they are two of my favorite apps.
author | emergehealthier |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-1532904595122z |
category | utopian-io |
json_metadata | "{\"tags\":[\"utopian-io\"],\"app\":\"steemfollower/0.01\"}" |
created | 2018-07-29 22:49:54 |
last_update | 2018-07-29 22:49:54 |
depth | 1 |
children | 0 |
last_payout | 2018-08-05 22:49:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 36,045,734,463,413 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,440,473 |
net_rshares | 29,196,497,167 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 29,196,497,167 | 21% |
Thank you very much for your support and interest @mahdiyari, I am glad that you have been able to solve most of the problems and everything starts to normalize. Receive my affections
author | felixgarciap |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180729t230127317z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-07-29 23:01:00 |
last_update | 2018-07-29 23:01:00 |
depth | 1 |
children | 0 |
last_payout | 2018-08-05 23:01:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 153,211,252,819,073 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,441,226 |
net_rshares | 29,196,497,167 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 29,196,497,167 | 21% |
author | freyman |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180730t112852099z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-07-30 11:28:51 |
last_update | 2018-07-30 11:28:51 |
depth | 1 |
children | 0 |
last_payout | 2018-08-06 11:28:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 3,118,003,098,636 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,502,194 |
net_rshares | 40,060,156,946 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freyman | 0 | 11,567,669,988 | 100% | ||
mahdiyari | 0 | 28,492,486,958 | 21% |
Well done sir. I got nothing to point out on this PR. - Your post is pleasant to read. - Your commit history is clear and precise. - You've commented important part of the code to help read it. - All best practices seem to be respected. This is a great improvement from your previous contributions. Congratulations Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/1221211). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | gregory.latinier |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180730t224736418z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1221211","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-07-30 22:47:36 |
last_update | 2018-07-30 22:47:36 |
depth | 1 |
children | 0 |
last_payout | 2018-08-06 22:47:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.112 HBD |
curator_payout_value | 0.032 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 811 |
author_reputation | 34,278,323,818,021 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,567,782 |
net_rshares | 85,748,463,086 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 67,021,056,119 | 50% | ||
espoem | 0 | 18,237,062,121 | 15% | ||
cheneats | 0 | 153,642,665 | 1% | ||
mops2e | 0 | 336,702,181 | 10% |
@mahdiyari, I am having issues with your site steemfollower as I have 20 upvotes but received just 5 ? I am not giving any more as its not even hit the value as stated on right side
author | michaelabbas |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180816t211833685z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2018-08-16 21:18:36 |
last_update | 2018-08-16 21:18:36 |
depth | 1 |
children | 0 |
last_payout | 2018-08-23 21:18: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 | 182 |
author_reputation | 152,403,944,888 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,429,427 |
net_rshares | 0 |
I used that most of my time in browsing Steemit, thanks for your hard work to resolved it, thanks! Posted using [Partiko iOS](https://itunes.apple.com/us/app/partiko/id1401033260?mt=8)
author | minloulou |
---|---|
permlink | minloulou-re-mahdiyari-steemauto-and-its-problems-solved-20180730t114711805z |
category | utopian-io |
json_metadata | {"app":"partiko"} |
created | 2018-07-30 11:47:12 |
last_update | 2018-07-30 11:47:12 |
depth | 1 |
children | 0 |
last_payout | 2018-08-06 11:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 185 |
author_reputation | 26,302,127,547,157 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,503,966 |
net_rshares | 28,492,486,958 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 28,492,486,958 | 21% |
upvote me
author | pemburubitcoin | ||||||
---|---|---|---|---|---|---|---|
permlink | re-mahdiyari-2018731t6437176z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","development","steemauto","update","fix"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-07-30 23:43:09 | ||||||
last_update | 2018-07-30 23:43:09 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-08-06 23: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 | 9 | ||||||
author_reputation | 4,586,246,543 | ||||||
root_title | "Steemauto and its problems - Solved!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 66,571,650 | ||||||
net_rshares | 11,421,080,136 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 11,421,080,136 | 8% |
I think I speak for all of the users of Steemauto when I say, "Thank You!" We have no idea what you are talking about, but it sounds like hard work and we are glad that you are doing so much for Steemit and the users of Steemauto.
author | professorbromide |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180729t223305679z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-29 22:33:09 |
last_update | 2018-07-29 22:33:09 |
depth | 1 |
children | 0 |
last_payout | 2018-08-05 22:33:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 232 |
author_reputation | 7,433,678,432,943 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,439,419 |
net_rshares | 29,196,497,167 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 29,196,497,167 | 21% |
good news. Thanks very much.
author | ptcmyanmar |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180730t045032207z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-30 04:50:36 |
last_update | 2018-07-30 04:50:36 |
depth | 1 |
children | 0 |
last_payout | 2018-08-06 04:50:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 5,394,902,282,254 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,467,377 |
net_rshares | 28,484,387,480 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 28,484,387,480 | 21% |
<center> Congrats, you made the #steemitminute for today! Click the Image Below to see the Video! <center><a href='https://d.tube/#!/v/reseller/5f9jxe4l'><img src='https://cdn.steemitimages.com/DQmajrtnVtDBxNL7wvUHdYL7qCZE4SdUxT9ygKxxJa2LMFb/TUBE07-29-2018.jpg'></a></center>
author | reseller |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180729t230547664z |
category | utopian-io |
json_metadata | {"tags":["utopian-io","steemitminute"],"image":["https://cdn.steemitimages.com/DQmajrtnVtDBxNL7wvUHdYL7qCZE4SdUxT9ygKxxJa2LMFb/TUBE07-29-2018.jpg"],"links":["https://d.tube/#!/v/reseller/5f9jxe4l"],"app":"steemit/0.1"} |
created | 2018-07-29 23:05:48 |
last_update | 2018-07-29 23:05:48 |
depth | 1 |
children | 0 |
last_payout | 2018-08-05 23:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 275 |
author_reputation | 396,642,162,962,533 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,441,558 |
net_rshares | 32,474,551,576 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 29,196,497,167 | 21% | ||
reseller | 0 | 3,278,054,409 | 10% |
Why did a post from CHB artist, three hours ago, not get up voted from my steemauto fanbase?
author | roswellrockman |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180826t073229684z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-08-26 07:32:30 |
last_update | 2018-08-26 07:32:30 |
depth | 1 |
children | 1 |
last_payout | 2018-09-02 07:32: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 | 92 |
author_reputation | 8,294,454,591,441 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,388,303 |
net_rshares | 0 |
send me that post
author | mahdiyari |
---|---|
permlink | re-roswellrockman-re-mahdiyari-steemauto-and-its-problems-solved-20180826t084528247z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-08-26 08:45:30 |
last_update | 2018-08-26 08:45:30 |
depth | 2 |
children | 0 |
last_payout | 2018-09-02 08:45:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.329 HBD |
curator_payout_value | 0.109 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 199,864,818,197,856 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,392,138 |
net_rshares | 299,257,110,991 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
informationwar | 0 | 299,257,110,991 | 100% |
But all the rpc nodes rely on api.steemit.com. Almost all.... When there's trouble with one rpc node the other node will have the same prob. This is my experience so far. I wonder when is it possible not to rely on only one single source of data.
author | sadf |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180730t152550648z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-30 15:25:51 |
last_update | 2018-07-30 15:25:51 |
depth | 1 |
children | 1 |
last_payout | 2018-08-06 15:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.039 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 247 |
author_reputation | 14,042,321,133 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,527,345 |
net_rshares | 28,493,694,994 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 28,493,694,994 | 21% |
No, that is not true! You can run your own RPC node and use that without a problem. Of course, blockchain is the same, if there was a problem with the blockchain, everything will get that problem!
author | mahdiyari |
---|---|
permlink | re-sadf-re-mahdiyari-steemauto-and-its-problems-solved-20180730t155009329z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-30 15:50:09 |
last_update | 2018-07-30 15:50:09 |
depth | 2 |
children | 0 |
last_payout | 2018-08-06 15:50: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 | 196 |
author_reputation | 199,864,818,197,856 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,530,097 |
net_rshares | 0 |
Autosteem is a great service! Please implement an option for: Auto follow back. I would like to automatically follow all those who follow me. I think others would also find it useful to have this option. I vote you for my Witness!
author | seo-boss |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180731t124155470z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-31 12:41:54 |
last_update | 2018-07-31 12:45:54 |
depth | 1 |
children | 0 |
last_payout | 2018-08-07 12:41: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 | 230 |
author_reputation | 41,695,702,099,935 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,633,735 |
net_rshares | 161,120,489 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
flintcode | 0 | 161,120,489 | 100% |
author | smitop |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180730t131849090z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2018-07-30 13:18:48 |
last_update | 2018-07-30 13:18:48 |
depth | 1 |
children | 1 |
last_payout | 2018-08-06 13:18:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 1,622,694,571,233 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,513,174 |
net_rshares | 28,503,691,621 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mdosev | 0 | 7,720,321,004 | 58% | ||
mahdiyari | 0 | 11,421,080,136 | 8% | ||
kabolo | 0 | 9,362,290,481 | 22% |
https://developers.steem.io
author | mahdiyari |
---|---|
permlink | re-smitop-re-mahdiyari-steemauto-and-its-problems-solved-20180730t140843965z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://developers.steem.io"],"app":"steemit/0.1"} |
created | 2018-07-30 14:08:45 |
last_update | 2018-07-30 14:08:45 |
depth | 2 |
children | 0 |
last_payout | 2018-08-06 14:08: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 | 27 |
author_reputation | 199,864,818,197,856 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,518,621 |
net_rshares | 0 |
Thanks!! You are awesome!!!
author | thethreehugs |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-1532906505121z |
category | utopian-io |
json_metadata | "{\"tags\":[\"utopian-io\"],\"app\":\"steemfollower/0.01\"}" |
created | 2018-07-29 23:21:45 |
last_update | 2018-07-29 23:21:45 |
depth | 1 |
children | 0 |
last_payout | 2018-08-05 23:21:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 14,246,221,805,677 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,442,691 |
net_rshares | 29,196,497,167 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 29,196,497,167 | 21% |
Thanks for all the work you have done which I guess it has been very tough this week. You will have always my support.
author | toofasteddie |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180730t104559661z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-30 10:46:00 |
last_update | 2018-07-30 10:46:00 |
depth | 1 |
children | 0 |
last_payout | 2018-08-06 10:46:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.048 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 670,517,926,116,366 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,498,122 |
net_rshares | 36,638,687,813 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 28,492,486,958 | 21% | ||
toofasteddie | 0 | 8,146,200,855 | 10% |
Hey @mahdiyari **Thanks for contributing on Utopian**. We’re already looking forward to your next contribution! **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-steemauto-and-its-problems-solved-20180802t003510z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.42"}" |
created | 2018-08-02 00:35:09 |
last_update | 2018-08-02 00:35:09 |
depth | 1 |
children | 0 |
last_payout | 2018-08-09 00:35:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 301 |
author_reputation | 152,955,367,999,756 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,817,708 |
net_rshares | 22,948,229,614 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 22,948,229,614 | 16% |
Cảm ơn tất cả các công việc bạn đã làm
author | vietnamsexy |
---|---|
permlink | re-mahdiyari-steemauto-and-its-problems-solved-20180730t184151212z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-30 18:41:51 |
last_update | 2018-07-30 18:41:51 |
depth | 1 |
children | 0 |
last_payout | 2018-08-06 18:41: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 | 38 |
author_reputation | 37,123,632,995 |
root_title | "Steemauto and its problems - Solved!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,548,277 |
net_rshares | 11,421,080,136 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahdiyari | 0 | 11,421,080,136 | 8% |