Skip to main content

eth_call RPC Method

Executes a new message call immediately without creating a transaction on the block chain.

Updated on
Dec 11, 2023

eth_call RPC Method

With Endpoint Armor, you can define specific restrictions on this method when called. Learn more about Endpoint Armor here

Parameters

transaction
object
The transaction call object which contains the following fields:
from
string
The address from which the transaction is sent
to
string
REQUIRED
The address to which the transaction is addressed
gas
integer
The integer of gas provided for the transaction execution
gasPrice
integer
The integer of gasPrice used for each paid gas encoded as hexadecimal
value
integer
The integer of value sent with this transaction encoded as hexadecimal
data
string
The hash of the method signature and encoded parameters. For more information, see the Contract ABI description in the Solidity documentation
blockNumber/tag
string
The block number in hexadecimal format or the string latest, earliest, pending, safe or finalized (safe and finalized tags are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova and Avalanche C-chain), see the default block parameter description in the official Ethereum documentation
NOTE:
The TRON blockchain only supports the usage of the tag latest for this method

Returns

data
The return value of the executed contract method
Request
1
curl https://docs-demo.tron-mainnet.quiknode.pro/jsonrpc \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{"method":"eth_call","params":[{"to":"0x41a614f803b6fd780986a42c78ec9c7f77e6ded13c","data":"0x70a082310000000000000000000000415a67fa7cc56bd6d043a98e17d329c1dc9e14753f"}, "latest"],"id":1,"jsonrpc":"2.0"}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free