Initiate a connection to a specified peer.
the endpoint to connect to expressed as either IP address or URL
OK
"already connected" or "added connection"
const response = await fetch('https://eos.nownodes.io/v1/net/connect', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "endpoint": "text" }), }); const data = await response.json();
text