Skip to main content

eth_call

Executes a new message call immediately without creating a transaction on MegaETH. Used for reading smart contract state.

Why MegaETH? Build on the first real-time blockchain with sub-millisecond latency and 100,000+ TPS with sub-millisecond transaction streaming with 100,000+ sustained TPS and full EVM compatibility.

Use Cases#

The eth_call method is essential for:

  • Reading contract state - Query view/pure functions
  • Simulating transactions - Test execution without gas costs
  • DeFi integrations - Check prices, balances, allowances for high-frequency trading, real-time gaming, instant payments, and latency-sensitive applications
  • Complex queries - Execute multi-step contract logic

Gas Limit Restriction#

Gas Limit on MegaETH

On MegaETH, eth_call requests are subject to a maximum gas limit of 10,000,000. This limit ensures optimal real-time performance across the network.

If your contract call requires more gas, consider:

  • Breaking the operation into smaller calls
  • Optimizing your smart contract logic
  • Using view functions that return aggregated data

Parameters#

ParameterTypeRequiredDescription
fromDATANo20-byte address executing the call
toDATAYes20-byte contract address
gasQUANTITYNoGas limit for the call
gasPriceQUANTITYNoGas price in wei
valueQUANTITYNoValue to send in wei
dataDATAYesEncoded function call data
blockParameterQUANTITY|TAGYesBlock number or tag

Request#

{
"jsonrpc": "2.0",
"method": "eth_call",
"params": [
{
"to": "0x1F006CCc9Ac133035D8B9bb17E5739E6a17E8C51",
"data": "0x06fdde03"
},
"latest"
],
"id": 1
}

Returns#

TypeDescription
DATAThe return value of the executed contract function

Response#

{
"jsonrpc": "2.0",
"id": 1,
"result": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000"
}

Code Examples#

# Call ERC20 name() function
curl -X POST https://api-megaeth-mainnet.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_call",
"params": [{
"to": "0x1F006CCc9Ac133035D8B9bb17E5739E6a17E8C51",
"data": "0x06fdde03"
}, "latest"],
"id": 1
}'

Error Handling#

Error CodeMessageDescription
-32000Execution revertedContract function reverted
-32602Invalid parametersInvalid data encoding
-32015VM execution errorContract logic error