eth_feeHistory

Returns the collection of historical gas information.

This method will use 20 Compute Units.


Parameters

  1. blockCount, String/Integer - The number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. It will return less than the requested range if not all blocks are available.

  2. newestBlock - String - hexadecimal block number, or the string "latest", "earliest" or "pending", see the default block parameter.

  3. rewardPercentiles - Integer - A list of values that go up in order, showing how much people are willing to pay to have their transactions processed quickly. These values are based on:

    1. Looking at each block in the time period you're interested in

    2. Ranking the transactions by how much extra tip they offered per unit of gas

    3. Calculating the typical tip amount for different levels (percentiles)

    4. Taking into account how much gas each transaction used

    This helps you understand what people are typically paying to get their transactions processed at different speed levels.

Returns

INTEGER - Hex value representing integer of the current balance in WEI.

// Result
{
  "id":83,
  "jsonrpc": "2.0",
  "result": "0x2abfcdcfa71e54e" 
}
curl https://testnet.berachain.validationcloud.io/v1/<YOUR_API_KEY_HERE> \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"eth_feeHistory","params":[4, "latest", [25, 75]],"id":1}'

Last updated