create account

Steemauto and its problems - Solved! by mahdiyari

View this thread on: hive.blogpeakd.comecency.com
· @mahdiyari ·
$139.15
Steemauto and its problems - Solved!
<center>![steemauto_bitpizza.gif](https://cdn.steemitimages.com/DQmSGoS5BwZvVrWrR1TfbPCSJ31pRbJhDANhyBtgGuHoqw3/steemauto_bitpizza.gif)</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>![despaired-2261021_640.jpg](https://cdn.steemitimages.com/DQmfKQTon5aqch35HVaCT3K8n77gbKYVjZRcyrDcTLH91cJ/despaired-2261021_640.jpg)
<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>![children-593313_640.jpg](https://cdn.steemitimages.com/DQmTgAN6iM5uSTAfruT3AABHRTaJmPat9uVj7oKa91oqWaw/children-593313_640.jpg)
<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>![programming-1873854_640 (1).png](https://cdn.steemitimages.com/DQmaRCpFvRyEHXtf1Ko6vnWH69qgWZM4cbLMA8djCuDHsJm/programming-1873854_640%20(1).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>![team-3373638_640.jpg](https://cdn.steemitimages.com/DQmZZgyGST1Tq9wWk4jrr5TJwDBQLiZ8z7BxwzXfFTroKcx/team-3373638_640.jpg)
<sub>source: pixabay.com</sub></center>

Thanks for your great support
***
This post is submitted to the https://utopian.io

Regards,
2018-07-30
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 936 others
properties (23)
authormahdiyari
permlinksteemauto-and-its-problems-solved
categoryutopian-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"}
created2018-07-29 21:42:12
last_update2018-07-29 21:42:12
depth0
children32
last_payout2018-08-05 21:42:12
cashout_time1969-12-31 23:59:59
total_payout_value107.141 HBD
curator_payout_value32.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,379
author_reputation199,864,818,197,856
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,436,080
net_rshares81,792,040,461,262
author_curate_reward""
vote details (1000)
@afiii ·
$0.05
سلام
برای اولین بار دارم کامنت فارسی میزارم
ایرانی هستی، درسته؟
👍  
properties (23)
authorafiii
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180730t114421683z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-30 11:44:21
last_update2018-07-30 11:44:21
depth1
children4
last_payout2018-08-06 11:44:21
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation134,272,793,598
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,503,667
net_rshares28,492,486,958
author_curate_reward""
vote details (1)
@mahdiyari ·
Hi,
bale
properties (22)
authormahdiyari
permlinkre-afiii-re-mahdiyari-steemauto-and-its-problems-solved-20180730t115556372z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-30 11:55:57
last_update2018-07-30 11:55:57
depth2
children3
last_payout2018-08-06 11:55:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation199,864,818,197,856
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,504,831
net_rshares0
@afiii ·
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
properties (22)
authorafiii
permlinkre-mahdiyari-re-afiii-re-mahdiyari-steemauto-and-its-problems-solved-20180730t122135148z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["steemauto"],"app":"steemit/0.1"}
created2018-07-30 12:21:36
last_update2018-07-30 12:21:36
depth3
children2
last_payout2018-08-06 12:21:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation134,272,793,598
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,507,359
net_rshares0
@amico ·
$0.04
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>
👍  ,
properties (23)
authoramico
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180731t230047358z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["utopian-io"],"users":["mahdiyari","amico"],"links":["/@mahdiyari","/@amico"],"image":[]}
created2018-07-31 23:00:48
last_update2018-07-31 23:00:48
depth1
children0
last_payout2018-08-07 23:00:48
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation51,076,240,298,517
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,689,895
net_rshares21,763,857,808
author_curate_reward""
vote details (2)
@arcange ·
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
👍  
properties (23)
authorarcange
permlinkre-steemauto-and-its-problems-solved-20180729t180733000z
categoryutopian-io
json_metadata""
created2018-07-30 16:10:42
last_update2018-07-30 16:10:42
depth1
children0
last_payout2018-08-06 16:10:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length214
author_reputation1,146,633,668,945,473
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,532,357
net_rshares11,421,080,136
author_curate_reward""
vote details (1)
@binoy2018 ·
$0.05
wow its great and good news sir.. thanks for share..
👍  
properties (23)
authorbinoy2018
permlinkre-mahdiyari-steemauto-and-its-problems-solved-1532933143582z
categoryutopian-io
json_metadata"{\"tags\":[\"utopian-io\"],\"app\":\"steemfollower/0.01\"}"
created2018-07-30 06:46:06
last_update2018-07-30 06:46:06
depth1
children0
last_payout2018-08-06 06:46:06
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation82,417,263,926
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,477,116
net_rshares28,484,387,480
author_curate_reward""
vote details (1)
@crypto-wisdom ·
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.
properties (22)
authorcrypto-wisdom
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180814t145555498z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-14 14:56:03
last_update2018-08-14 14:56:03
depth1
children0
last_payout2018-08-21 14:56:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length250
author_reputation11,811,825,859,420
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,173,659
net_rshares0
@dandays ·
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?
properties (22)
authordandays
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180815t214735588z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-08-15 21:47:36
last_update2018-08-15 21:47:36
depth1
children0
last_payout2018-08-22 21:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length356
author_reputation253,596,081,930,457
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,317,958
net_rshares0
@dipoabasch ·
$0.04
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
👍  ,
properties (23)
authordipoabasch
permlinkre-mahdiyari-2018730t173626326z
categoryutopian-io
json_metadata{"tags":["utopian-io","development","steemauto","update","fix"],"app":"esteem/1.0.10-surfer","format":"markdown+html","community":"esteem","encrypted":0}
created2018-07-30 10:36:30
last_update2018-07-30 10:36:30
depth1
children0
last_payout2018-08-06 10:36:30
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation3,172,316,340,053
root_title"Steemauto and its problems - Solved!"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,497,351
net_rshares28,760,079,347
author_curate_reward""
vote details (2)
@emergehealthier ·
$0.05
Thank you for your work!  I love Steemauto and Steemfollowes, they are two of my favorite apps.
👍  
properties (23)
authoremergehealthier
permlinkre-mahdiyari-steemauto-and-its-problems-solved-1532904595122z
categoryutopian-io
json_metadata"{\"tags\":[\"utopian-io\"],\"app\":\"steemfollower/0.01\"}"
created2018-07-29 22:49:54
last_update2018-07-29 22:49:54
depth1
children0
last_payout2018-08-05 22:49:54
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation36,045,734,463,413
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,440,473
net_rshares29,196,497,167
author_curate_reward""
vote details (1)
@felixgarciap ·
$0.05
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
👍  
properties (23)
authorfelixgarciap
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180729t230127317z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-07-29 23:01:00
last_update2018-07-29 23:01:00
depth1
children0
last_payout2018-08-05 23:01:00
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation153,211,252,819,073
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,441,226
net_rshares29,196,497,167
author_curate_reward""
vote details (1)
@freyman ·
$0.07
Thanks a lot, @mahdiyari.  Great work.
👍  ,
properties (23)
authorfreyman
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180730t112852099z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-07-30 11:28:51
last_update2018-07-30 11:28:51
depth1
children0
last_payout2018-08-06 11:28:51
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation3,118,003,098,636
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,502,194
net_rshares40,060,156,946
author_curate_reward""
vote details (2)
@gregory.latinier ·
$0.14
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/)
👍  , , ,
properties (23)
authorgregory.latinier
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180730t224736418z
categoryutopian-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"}
created2018-07-30 22:47:36
last_update2018-07-30 22:47:36
depth1
children0
last_payout2018-08-06 22:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.112 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length811
author_reputation34,278,323,818,021
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,567,782
net_rshares85,748,463,086
author_curate_reward""
vote details (4)
@michaelabbas ·
@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
properties (22)
authormichaelabbas
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180816t211833685z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"}
created2018-08-16 21:18:36
last_update2018-08-16 21:18:36
depth1
children0
last_payout2018-08-23 21:18:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation152,403,944,888
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,429,427
net_rshares0
@minloulou ·
$0.05
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)
👍  
properties (23)
authorminloulou
permlinkminloulou-re-mahdiyari-steemauto-and-its-problems-solved-20180730t114711805z
categoryutopian-io
json_metadata{"app":"partiko"}
created2018-07-30 11:47:12
last_update2018-07-30 11:47:12
depth1
children0
last_payout2018-08-06 11:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation26,302,127,547,157
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,503,966
net_rshares28,492,486,958
author_curate_reward""
vote details (1)
@pemburubitcoin ·
upvote me
👍  
properties (23)
authorpemburubitcoin
permlinkre-mahdiyari-2018731t6437176z
categoryutopian-io
json_metadata{"tags":["utopian-io","development","steemauto","update","fix"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-07-30 23:43:09
last_update2018-07-30 23:43:09
depth1
children0
last_payout2018-08-06 23:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation4,586,246,543
root_title"Steemauto and its problems - Solved!"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,571,650
net_rshares11,421,080,136
author_curate_reward""
vote details (1)
@professorbromide ·
$0.05
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.
👍  
properties (23)
authorprofessorbromide
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180729t223305679z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-29 22:33:09
last_update2018-07-29 22:33:09
depth1
children0
last_payout2018-08-05 22:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length232
author_reputation7,433,678,432,943
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,439,419
net_rshares29,196,497,167
author_curate_reward""
vote details (1)
@ptcmyanmar ·
$0.05
good news. Thanks very much.
👍  
properties (23)
authorptcmyanmar
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180730t045032207z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-30 04:50:36
last_update2018-07-30 04:50:36
depth1
children0
last_payout2018-08-06 04:50:36
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation5,394,902,282,254
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,467,377
net_rshares28,484,387,480
author_curate_reward""
vote details (1)
@reseller ·
$0.05
<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>
👍  ,
properties (23)
authorreseller
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180729t230547664z
categoryutopian-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"}
created2018-07-29 23:05:48
last_update2018-07-29 23:05:48
depth1
children0
last_payout2018-08-05 23:05:48
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length275
author_reputation396,642,162,962,533
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,441,558
net_rshares32,474,551,576
author_curate_reward""
vote details (2)
@roswellrockman ·
Why did a post from CHB artist, three hours ago, not get up voted from my steemauto fanbase?
properties (22)
authorroswellrockman
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180826t073229684z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-26 07:32:30
last_update2018-08-26 07:32:30
depth1
children1
last_payout2018-09-02 07:32:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation8,294,454,591,441
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,388,303
net_rshares0
@mahdiyari ·
$0.44
send me that post
👍  
properties (23)
authormahdiyari
permlinkre-roswellrockman-re-mahdiyari-steemauto-and-its-problems-solved-20180826t084528247z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-26 08:45:30
last_update2018-08-26 08:45:30
depth2
children0
last_payout2018-09-02 08:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.329 HBD
curator_payout_value0.109 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation199,864,818,197,856
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,392,138
net_rshares299,257,110,991
author_curate_reward""
vote details (1)
@sadf ·
$0.05
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.
👍  
properties (23)
authorsadf
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180730t152550648z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-30 15:25:51
last_update2018-07-30 15:25:51
depth1
children1
last_payout2018-08-06 15:25:51
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length247
author_reputation14,042,321,133
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,527,345
net_rshares28,493,694,994
author_curate_reward""
vote details (1)
@mahdiyari ·
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!
properties (22)
authormahdiyari
permlinkre-sadf-re-mahdiyari-steemauto-and-its-problems-solved-20180730t155009329z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-30 15:50:09
last_update2018-07-30 15:50:09
depth2
children0
last_payout2018-08-06 15:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation199,864,818,197,856
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,530,097
net_rshares0
@seo-boss · (edited)
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!
👍  
properties (23)
authorseo-boss
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180731t124155470z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-31 12:41:54
last_update2018-07-31 12:45:54
depth1
children0
last_payout2018-08-07 12:41:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length230
author_reputation41,695,702,099,935
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,633,735
net_rshares161,120,489
author_curate_reward""
vote details (1)
@smitop ·
$0.05
Where can I find a list of all of the RPC calls? 
👍  , ,
properties (23)
authorsmitop
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180730t131849090z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-07-30 13:18:48
last_update2018-07-30 13:18:48
depth1
children1
last_payout2018-08-06 13:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation1,622,694,571,233
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,513,174
net_rshares28,503,691,621
author_curate_reward""
vote details (3)
@mahdiyari ·
https://developers.steem.io
properties (22)
authormahdiyari
permlinkre-smitop-re-mahdiyari-steemauto-and-its-problems-solved-20180730t140843965z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://developers.steem.io"],"app":"steemit/0.1"}
created2018-07-30 14:08:45
last_update2018-07-30 14:08:45
depth2
children0
last_payout2018-08-06 14:08:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation199,864,818,197,856
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,518,621
net_rshares0
@thethreehugs ·
$0.05
Thanks!!  You are awesome!!!
👍  
properties (23)
authorthethreehugs
permlinkre-mahdiyari-steemauto-and-its-problems-solved-1532906505121z
categoryutopian-io
json_metadata"{\"tags\":[\"utopian-io\"],\"app\":\"steemfollower/0.01\"}"
created2018-07-29 23:21:45
last_update2018-07-29 23:21:45
depth1
children0
last_payout2018-08-05 23:21:45
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation14,246,221,805,677
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,442,691
net_rshares29,196,497,167
author_curate_reward""
vote details (1)
@toofasteddie ·
$0.06
Thanks for all the work you have done which I guess it has been very tough this week. You will have always my support.
👍  ,
properties (23)
authortoofasteddie
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180730t104559661z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-30 10:46:00
last_update2018-07-30 10:46:00
depth1
children0
last_payout2018-08-06 10:46:00
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation670,517,926,116,366
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,498,122
net_rshares36,638,687,813
author_curate_reward""
vote details (2)
@utopian-io ·
$0.04
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>
👍  
properties (23)
authorutopian-io
permlinkre-steemauto-and-its-problems-solved-20180802t003510z
categoryutopian-io
json_metadata"{"app": "beem/0.19.42"}"
created2018-08-02 00:35:09
last_update2018-08-02 00:35:09
depth1
children0
last_payout2018-08-09 00:35:09
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length301
author_reputation152,955,367,999,756
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,817,708
net_rshares22,948,229,614
author_curate_reward""
vote details (1)
@vietnamsexy ·
Cảm ơn tất cả các công việc bạn đã làm
👍  
properties (23)
authorvietnamsexy
permlinkre-mahdiyari-steemauto-and-its-problems-solved-20180730t184151212z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-07-30 18:41:51
last_update2018-07-30 18:41:51
depth1
children0
last_payout2018-08-06 18:41:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation37,123,632,995
root_title"Steemauto and its problems - Solved!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,548,277
net_rshares11,421,080,136
author_curate_reward""
vote details (1)