eth_call - Base
Example code for the eth_call JSON-RPC method. Complete guide on how to use eth_call JSON-RPC in GetBlock Web3 documentation.
Parameters
Parameter
Type
Required
Description
Transaction Object
Field
Type
Required
Description
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "eth_call",
"params": [{
"to": "0x4200000000000000000000000000000000000006",
"data": "0x70a082310000000000000000000000006E0d01A76C3Cf4288372a29124A26D4353EE51BE"
}, "latest"],
"id": "getblock.io"
}'const axios = require('axios');
// ERC-20 balanceOf call
const response = await axios.post('https://go.getblock.io/<ACCESS-TOKEN>/', {
jsonrpc: '2.0',
method: 'eth_call',
params: [{
to: '0x4200000000000000000000000000000000000006', // WETH on Base
data: '0x70a082310000000000000000000000006E0d01A76C3Cf4288372a29124A26D4353EE51BE'
}, 'latest'],
id: 'getblock.io'
}, {
headers: { 'Content-Type': 'application/json' }
});
const balance = parseInt(response.data.result, 16);
console.log('Token Balance:', balance / 1e18);Response
Response Parameters
Parameter
Type
Description
Use Cases
Error Handling
Error Code
Message
Description
Web3 Integration
Last updated
Was this helpful?