Object
- The transaction call objectfrom
: DATA
, 20 Bytes - (optional) The address the transaction is sent from.to
: DATA
, 20 Bytes - The address the transaction is directed to.gas
: QUANTITY
- (optional) Integer of the gas provided for the transaction execution. eth_estimateGas
consumes zero gas, but this parameter may be needed by some executions. NOTE: this parameter has a cap of 550 Million gas per request.gasPrice
: QUANTITY
- (optional) Integer of the gasPrice used for each paid gas. Note: most of our users (95%+) never set the gasPrice
on eth_call.value
: QUANTITY
- (optional) Integer of the value sent with this transactiondata
: DATA
- (optional) Hash of the method signature and encoded parameters. For details see Ethereum Contract ABIQUANTITY|TAG
- integer block number, or the string "latest", "earliest" or "pending", see the default block parameter.eth_estimateGas
_**_will check the balance of the sender (to make sure that the sender has enough gas to complete the request). This means that even though the call doesn't consume any gas, the from
address must have enough gas to execute the transaction.gas
is specified geth uses the block gas limit from the pending block as an upper bound. As a result the returned estimate might not be enough to executed the call/transaction when the amount of actual gas needed is higher than the pending block gas limit.QUANTITY
- the amount of gas used.