Last updated 9 months ago
Request body sample: {"jsonrpc":"2.0","method":"eth_call","params":[{ "to": "0xd46e8dd67c5d32be8058bb8eb970870f07244567" }, "latest"],"id":1}
OK
const response = await fetch('eth_call', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "id": 0, "jsonrpc": "text", "result": "text" }