eth_getBlockTransactionCountByHash

Description

Returns the number of transactions in a block by hash.

Counts as 1 request. See Request Counting.

Parameters

ParameterTypeRequiredDescription
blockHashhexYesBlock hash

Request

{ "jsonrpc": "2.0", "method": "eth_getBlockTransactionCountByHash", "params": [ "0x..." ], "id": 1 }

Code Examples

curl -X POST https://base-rpc.blockreq.com/v1/rpc/public \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"eth_getBlockTransactionCountByHash","params":["0x..."],"id":1}'

Try It