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.

This method returns the gas price specifically for the next big block. If you need the small block gas price use eth_gasPrice.

Parameters

This method takes no parameters.

Request

cURL
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"
}'

Response

response.json
{
    "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?