Skip to main content

kaia_feeHistory RPC Method

Returns the collection of historical gas information.

Updated on
Aug 7, 2024

kaia_feeHistory RPC Method

Parameters

blockCount
string
REQUIRED
The number of blocks in the requested range in hexadecimal format. 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
newestBlock
string
REQUIRED
The highest number block of the requested range in hexadecimal format or tags(earliest or latest)
rewardPercentiles
integer
REQUIRED
A list of percentile values with a monotonic increase in value. The transactions will be ranked by effective tip per gas for each block in the requested range, and the corresponding effective tip for the percentile will be calculated while taking gas consumption into consideration

Returns

oldestBlock
string
The lowest number block of the returned range encoded in hexadecimal format
baseFeePerGas
array
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
array
An array of block gas used ratios. These are calculated as the ratio of gasUsed and gasLimit
reward
array
(Optional) An array of effective priority fees per gas data points from a single block. All zeroes are returned if the block is empty
Request
1
curl https://docs-demo.kaia-kairos.quiknode.pro/ \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{"method":"kaia_feeHistory","params":["0x1", "latest", [25, 75]],"id":1,"jsonrpc":"2.0"}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free