post https://opt-mainnet.nodereal.io/v1/
Executes a new message call immediately without creating a transaction on the block chain..
Response
Executes a new message call immediately without creating a transaction on the block chain..
xxxxxxxxxx
10const options = {
method: 'POST',
headers: {accept: 'application/json', 'content-type': 'application/json'},
body: JSON.stringify({id: 1, jsonrpc: '2.0', method: 'eth_call'})
};
​
fetch('https://opt-mainnet.nodereal.io/v1/apiKey', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));