eth_blobBaseFee - Arc
eth_blobBaseFee. Returns the base fee per blob gas for the current block.
eth_blobBaseFee - arc [Value: 20CU]
Returns the base fee per blob gas, in Wei, for the current block
Use cases
- Estimate the cost of submitting a blob-carrying (type-3) transaction
- Power fee-estimation UIs that support EIP-4844 blob transactions
- Monitor blob fee trends for rollups or data-availability tooling
Constraints
- Takes no parameters
- Only meaningful on chains that support EIP-4844 blob transactions
- The returned value applies to the current block, not a historical one
Unlock Access to 100+ chains
Boost your app's speed and reliability with dRPC - get your access API key
Language
Request
Examples
curl https://arc-testnet.drpc.org \
-X POST \
-H "Content-Type: application/json" \
-d '{"method":"eth_blobBaseFee",
"params":[],
"id":1,
"jsonrpc":"2.0"}'
Response
200
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x3b9aca00"
}Request params
idinteger
jsonrpcstring
methodstring
Response
200
The blob base fee, in Wei, as a hexadecimal stringResponse params
object
idinteger
jsonrpcstring
resultstring
The base fee per blob gas, in Wei, as a hexadecimal string.