eth_getBlockTransactionCountByNumber

Description

Returns the number of transactions in a block by number.

Counts as 1 request. See Request Counting.

Parameters

ParameterTypeRequiredDescription
blockblockTagYesBlock number or tag

Request

{ "jsonrpc": "2.0", "method": "eth_getBlockTransactionCountByNumber", "params": [ "latest" ], "id": 1 }

Code Examples

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

Try It