eth_bigBlockGasPrice - HyperEVM
Example code for the eth_bigBlockGasPrice JSON RPC method. Сomplete guide on how to use eth_bigBlockGasPrice GetBlock JSON RPC in GetBlock Web3 documentation.
This method returns the gas price for the next big block. This is a HyperEVM-specific method.
Parameters
This method takes no parameters.
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "eth_bigBlockGasPrice",
"params": [],
"id": "getblock.io"
}'const axios = require('axios');
const response = await axios.post('https://go.getblock.io/<ACCESS-TOKEN>/', {
jsonrpc: '2.0',
method: 'eth_bigBlockGasPrice',
params: [],
id: 'getblock.io'
});
console.log('Big Block Gas Price:', response.data.result);import requests
response = requests.post('https://go.getblock.io/<ACCESS-TOKEN>/', json={
'jsonrpc': '2.0',
'method': 'eth_bigBlockGasPrice',
'params': [],
'id': 'getblock.io'
})
result = response.json()['result']
print(f'Big Block Gas Price: {int(result, 16)} wei')Response
{
"jsonrpc": "2.0",
"id": "getblock.io",
"result": "0x3b9aca00"
}Response Parameters
Field
Type
Description
result
string
Gas price for next big block in wei (hex).
Use Case
The eth_bigBlockGasPrice method is essential for:
Pricing transactions for big blocks
High-throughput transaction planning
Fee estimation for bulk operations
Optimizing gas costs for large operations
Erro handling
Error Code
Message
Cause
-32603
Internal error
Node issue.
Web3 Integration
Last updated
Was this helpful?