Skip to main content

eth_getBlockTransactionCountByHash

Returns the number of transactions in a block from a block matching the given block hash.

Parameters

Block hash(string)

32 byte hex value

Returns

Transaction count

Example request
await provider.request({
method: "eth_getBlockTransactionCountByHash",
params: [
"0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"
]
});
Example response
{
"id": 1,
"jsonrpc": "2.0",
"result": "0x8"
}