> For the complete documentation index, see [llms.txt](https://docs.ebs.ezat.io/ebs-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ebs.ezat.io/ebs-documentation/services/rpc/supported-networks/ethererum/eth_estimategas.md).

# eth\_estimateGas

eth\_estimateGas RPC Method

**Parameters:**

*transaction* - object - The transaction call object:

&#x20;    *from* - string - (optional) The address from which the transaction is sent

&#x20;    *to* - string - The address to which the transaction is addressed

&#x20;    *gas* - integer - (optional) The integer of gas provided for the transaction execution

&#x20;    *gasPrice* - integer - (optional) The integer of gasPrice used for each paid gas encoded as hexadecimal

&#x20;    *value* - integer - (optional) The integer of value sent with this transaction encoded as hexadecimal

&#x20;    *data* - string - (optional) The hash of the method signature and encoded parameters. For more information, see the [Contract ABI description in the Solidity documentation](https://docs.soliditylang.org/en/latest/abi-spec.html).

**Returns:**

*quantity* - The estimated amount of gas used

**Code Examples:**

```
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
  "method": "eth_estimateGas",
  "params": [
    {
      "from": "0x8D97689C9818892B700e27F316cc3E41e17fBeb9",
      "to": "0xd3CdA913deB6f67967B99D67aCDFa1712C293601",
      "value": "0x186a0"
    }
  ],
  "id": 1,
  "jsonrpc": "2.0"
});

var requestOptions = {
  method: 'POST',
  headers: myHeaders,
  body: raw,
  redirect: 'follow'
};

fetch("https://api.ebs.ezat.io/core/api/v1.0/rpc/ethererum/mainnet?x-api-key-id=API-KEY-ID&x-api-key=API-KEY", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));
```
