Skip to main content

linea_estimateGas

Generates and returns the estimated amount of gas required to allow the transaction to complete and be published on Ethereum. The method does not submit the transaction to the blockchain.

The priorityFeePerGas returned by this method includes the cost of submitting the transaction to Ethereum, which can vary based on the size of the calldata.

info

For more information about estimating gas, and how this API formulates the transaction costs, see the Linea gas fees documentation.

note

linea_estimateGas uses the same inputs as the standard eth_estimateGas, but returns the recommended gas limit, the base fee per gas, and the priority fee per gas. We recommend using linea_estimateGas for more accurate results.

Parameters

  • call: [required] Transaction call object:
    • from: [optional] 20 bytes - The address the transaction is sent from.
    • to: [optional] 20 bytes - The address the transaction is directed to.
    • gas: [optional] Hexadecimal value of the gas provided for the transaction execution. linea_estimateGas consumes zero gas, but this parameter may be needed by some executions.
    • gasPrice: [optional] Hexadecimal value of the gas price used for each paid gas.
    • maxPriorityFeePerGas: [optional] Maximum fee, in wei, the sender is willing to pay per gas above the base fee.
    • maxFeePerGas: [optional] Maximum total fee (base fee + priority fee), in wei, the sender is willing to pay per gas.
    • value: [optional] Hexadecimal value of the value sent with this transaction.
    • data: [optional] Hash of the method signature and encoded parameters. See the Ethereum contract ABI specification.
  • stateOverride: [optional] Object that contains the address-to-state mapping to override state values Each entry specifies a state that will be temporarily overridden before executing the call:
    • balance: [optional] Hexadecimal of the temporary account balance for the call execution.
    • nonce: [optional] Hexadecimal of the temporary nonce value for the call execution.
    • code : [optional] Bytecode to inject into the account.
    • stateDiff: key:value pairs to override individual slots in the account storage.

Returns

Hexadecimal values representing the recommended gas limit, the base fee per gas, and the priority fee per gas.

Example

Replace <YOUR-API-KEY> with an API key from your MetaMask Developer dashboard.

Request

curl https://linea-mainnet.infura.io/v3/<YOUR-API-KEY> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"linea_estimateGas","params":[{"from":"0x42c27251C710864Cf76f1b9918Ace3E585e6E21b","value":"0x1","gasPrice":"0x100000000","gas":"0x21000"}],"id":53}'

Response

{
"jsonrpc": "2.0",
"id": 53,
"result": {
"baseFeePerGas": "0x7",
"gasLimit": "0xcf08",
"priorityFeePerGas": "0x43a82a4"
}
}

Override state values

You can to override an account with temporary state values before making the call. This allows you to make temporary state changes without affecting the actual blockchain state.

For example, here we'll override the balance of account 0xfe3b557e8fb62b89f4916b721be55ceb828dbd73 to ensure it has sufficient funds to estimate transferring ETH to the specified account:

curl https://linea-mainnet.infura.io/v3/<YOUR-API-KEY> \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc":"2.0",
"method":"linea_estimateGas",
"params":[
{
"from":"0xfe3b557e8fb62b89f4916b721be55ceb828dbd73",
"to":"0x627306090abaB3A6e1400e9345bC60c78a8BEf57",
"value":"0xDE0B6B3A7640000"
},
{
"0xfe3b557e8fb62b89f4916b721be55ceb828dbd73": {
"balance": "0x4563918244F40000"
}
}
],
"id":53
}'