Skip to main content

eth_getBlockTransactionCountByHash

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

Params

(1)

1. Block hash (required)

string
Match pattern:
^0x[0-9a-f]{64}$

Result

(Transaction count)
(one of)
null

Example

Request

await window.ethereum.request({
"method": "eth_getBlockTransactionCountByHash",
"params": [
"0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"
]
});

Result

"0x8"

Params

Block hash


Request

await window.ethereum.request({
"method": "eth_getBlockTransactionCountByHash",
"params": [
null
]
});