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.
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
Use Case
Erro handling
Error Code
Message
Cause
Web3 Integration
Last updated
Was this helpful?