eth_getBlockTransactionCountByHash - HyperEVM
Example code for the eth_getBlockTransactionCountByHash JSON RPC method. Сomplete guide on how to use eth_getBlockTransactionCountByHash GetBlock JSON RPC in GetBlock Web3 documentation.
This method returns the number of transactions in a block that matches the given block hash.
Parameters
Parameter
Type
Required
Description
blockHash
string
Yes
Hash of the block.
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "eth_getBlockTransactionCountByHash",
"params": ["0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"],
"id": "getblock.io"
}'const axios = require('axios');
const response = await axios.post('https://go.getblock.io/<ACCESS-TOKEN>/', {
jsonrpc: '2.0',
method: 'eth_getBlockTransactionCountByHash',
params: ['0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238'],
id: 'getblock.io'
});
console.log('Transaction Count:', parseInt(response.data.result, 16));import requests
response = requests.post('https://go.getblock.io/<ACCESS-TOKEN>/', json={
'jsonrpc': '2.0',
'method': 'eth_getBlockTransactionCountByHash',
'params': ['0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238'],
'id': 'getblock.io'
})
result = response.json()['result']
print(f'Transaction Count: {int(result, 16)}')Response
{
"jsonrpc": "2.0",
"id": "getblock.io",
"result": "0xa"
}Response Parameters
Field
Type
Description
result
string
Transaction count in the block (hex).
Use Case
The eth_getBlockTransactionCountByHash method is essential for:
Block explorer statistics
Transaction density analysis
Block verification
Network activity monitoring
Error Handling
Error Code
Message
Cause
-32602
Invalid params
Invalid block hash format.
-32603
Internal error
Block not found.
Web3 Integration
Last updated
Was this helpful?