eth_call
Executes a new message call immediately without creating a transaction on the block chain.
The API credit value for this method is 70
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*REQUIRED
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).
Result
Returns- The return value of the executed contract method
Last updated