eth_baseFee - AVAX

Example code for the eth_baseFee JSON-RPC method. Complete guide on how to use eth_baseFee JSON-RPC in GetBlock Web3 documentation.

Returns the base fee for the next block. This is an Avalanche-specific extension to the standard eth_* namespace — equivalent to reading the baseFeePerGas field of the latest block.

Parameters

  • None

Request Example

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/ext/bc/C/rpc' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "eth_baseFee",
    "params": [],
    "id": "getblock.io"
}'

Response Example

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": "0x34630b8a00"
}

Response Parameters

Field
Type
Description

result

string

Base fee for the next block in wei (hex)

Use Cases

  • Computing EIP-1559 max-fee values for the next block

  • Fee oracles that need single-call base-fee reads

Error Handling

Status Code
Error Message
Cause

404

Not Found

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Last updated

Was this helpful?