eth_feeHistory - opBNB

Example code for the eth_feeHistory JSON-RPC method. Сomplete guide on how to use eth_feeHistory JSON-RPC in GetBlock.io Web3 documentation.

This method returns historical base fees and priority fee percentiles over a window of recent blocks. Use it to build a fee oracle that adapts to recent network conditions.

Parameters

Parameter
Type
Required
Description

blockCount

string

Yes

Number of blocks in the window (hex, max 1024)

newestBlock

string

Yes

The newest block in the window — hex number or tag ("latest", etc.)

rewardPercentiles

array of number

Yes

Percentiles to compute over priority fees (e.g. [25, 50, 75]); may be empty

Request Example

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "eth_feeHistory",
    "params": [
        "0x5",
        "latest",
        [
            25,
            50,
            75
        ]
    ],
    "id": "getblock.io"
}'

Response Example

Response Parameters

Field
Type
Description

result.oldestBlock

string

Oldest block in the returned window (hex)

result.baseFeePerGas

array of string

Base fee per gas for each block in the window plus one extra (length n+1)

result.gasUsedRatio

array of number

Ratio of gas used to gas limit for each block

result.reward

array of array of string

Priority fee percentiles for each block (only present if rewardPercentiles was supplied)

Use Cases

  • Building EIP-1559 fee oracles

  • Adaptive gas pricing in production wallets

  • Analytics on fee market trends

  • Replaying historical fee conditions in simulations

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

-32601

Method not found

The method is not supported by this node

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Last updated

Was this helpful?