eth_feeHistory
Returns a collection of historical gas information
Returns a collection of historical gas information from which you can decide what to submit as your maxFeePerGas
and/or maxPriorityFeePerGas
. This method was introduced with EIP 1559.
Parameters
BLOCKCOUNT
- Number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. Less than requested may be returned if not all blocks are available.NEWESTBLOCK
- Highest number block of the requested range.REWARDPERCENTILES
- (optional) A monotonically increasing list of percentile values to sample from each block's effective priority fees per gas in ascending order, weighted by the gas used.
Returns
Object
OLDESTBLOCK
- Lowest number block of the returned range.BASEFEEPERGAS
- An array of block base fees per gas. This includes the next block after the newest of the returned range because this value can be derived from the newest block. Zeroes are returned for pre-EIP-1559 blocks.GASUSEDRATIO
- An array of block gas used ratios. These are calculated as the ratio of gasUsed and gasLimit.REWARD
- (Optional) An array of effective priority fee per gas data points from a single block. All zeroes are returned if the block is empty.
Example
Request
curl https://eth-mainnet.blastapi.io/<project-id> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_feeHistory","params":[4, "latest", [25, 75]],"id":1}'
Result
{
"id": "1",
"jsonrpc": "2.0",
"result": {
"oldestBlock": 10762137,
"reward": [
[
"0x4a817c7ee",
"0x4a817c7ee"
], [
"0x773593f0",
"0x773593f5"
], [
"0x0",
"0x0"
], [
"0x773593f5",
"0x773bae75"
]
],
"baseFeePerGas": [
"0x12",
"0x10",
"0x10",
"0xe",
"0xd"
],
"gasUsedRatio": [
0.026089875,
0.406803,
0,
0.0866665
]
}
}