const response = await fetch('https://tomo.nownodes.io/getNetworkInformation', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"jsonrpc": "2.0",
"method": "posv_getNetworkInformation",
"params": [],
"id": 1
}),
});
const data = await response.json();