eth_bigBlockGasPrice
JSON-RPC method returns the base fee for the next big block on Hyperliquid EVM. This is a Hyperliquid-specific method that provides gas pricing for addresses using big blocks.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
This method takes no parameters.Response
The method returns the big block gas price as a hexadecimal string representing wei.Response structure
Big block gas price:result
— The base fee for the next big block in wei as a hexadecimal string
Data interpretation
Gas price format:- Returned as hexadecimal string with
0x
prefix - Value represents wei (smallest unit of ether)
- Convert to gwei by dividing by 10^9
- Convert to ether by dividing by 10^18
Big blocks on Hyperliquid
Overview
Big blocks are a Hyperliquid-specific feature that allows certain addresses to use larger block space. Theeth_bigBlockGasPrice
method returns the base fee specifically for these big blocks.
Key differences:
- Big block gas price may differ from standard gas price (
eth_gasPrice
) - Only addresses using big blocks need this pricing information
- Use
eth_usingBigBlocks
to check if an address is using big blocks
Related methods
Check big block usage:eth_usingBigBlocks
— returns whether an address is using big blockseth_gasPrice
— returns the base fee for standard (small) blocks
Usage example
Basic implementation
Example request
Shell
Use cases
Theeth_bigBlockGasPrice
method is useful for:
- Big block users: Get appropriate gas pricing when your address is using big blocks
- Gas price comparison: Compare big block pricing with standard block pricing
- Transaction cost optimization: Choose the most cost-effective gas price option
- Wallet applications: Display accurate gas pricing for addresses using big blocks
- DeFi applications: Optimize transaction costs based on block type usage
- Analytics tools: Monitor and compare different gas pricing options on Hyperliquid
- Development tools: Test applications with different gas pricing scenarios
This is a Hyperliquid-specific method that returns the base fee for the next big block. Use
eth_usingBigBlocks
to check if an address is using big blocks, and compare with eth_gasPrice
for standard block pricing.Body
application/json