Executes multiple call transactions in sequence without creating transactions on the blockchain.
eth_callMany JSON-RPC method executes multiple call transactions in sequence without creating transactions on the blockchain. This method is useful for batch reading contract states and simulating multiple contract interactions efficiently.
transactions (array, required) — Array of transaction objects to execute
to (string, required) — The address to calldata (string, optional) — The data to send with the callfrom (string, optional) — The address the call is made fromgas (string, optional) — The gas limit for the callgasPrice (string, optional) — The gas price for the callvalue (string, optional) — The value to send with the callblockNumber (string, required) — Block identifier (e.g., “latest”, or specific block number)0x or an erroreth_callMany method is essential for applications that need to:
eth_callMany method executes calls sequentially in the order provided. Each call can see the state changes from previous calls in the batch, making it useful for dependent operations.