DEV Community

DoctorLai
DoctorLai

Posted on

Disable SSL Verifications in Proxy and Azure Node

For Proxy Node https://steemyy.com/node/ and Azure Load Balance Node: https://justyy.azurewebsites.net/api/steem the SSL verification has been disabled:

const https = require('https');
const httpsAgent = new https.Agent({
    rejectUnauthorized: false,
});
Enter fullscreen mode Exit fullscreen mode

And the fetch API can be set to use the above custom agent:

await fetch(URL, {
    method: "POST",
    headers: {
        "Content-Type": "application/json"
    },
    agent: httpsAgent,
    body: body,
});
Enter fullscreen mode Exit fullscreen mode

Adding two more candidate RPC nodes (@upvu https://api.upvu.org and @jrcornel.wit https://steem.techs.exchange):

{
  "__serverless_version__": "2023-02-12",
  "__steem_servers__": [
    "https://api.campingclub.me",
    "https://api.steemwow.com",
    "https://steemapi.3dkrender.com",
    "https://api.steem-fanbase.com",
    "https://api.blokfield.io",
    "https://api.upvu.org",
    "https://api.steemit.com",
    "https://api.justyy.com",
    "https://api.steemzzang.com",
    "https://api.pennsif.net",
    "https://steem.techs.exchange",
    "https://api.dlike.io",
    "https://steemapi.boylikegirl.club",
    "https://api.wherein.io",
    "https://api.steememory.com"
  ]
}
Enter fullscreen mode Exit fullscreen mode

Also, added to Node Status Tool


Steem to the Moon!

You can swap the STEEM/SBD to USDT (TRC-20) via Steem2USDT

Top comments (0)