eth_getBlockTransactionCountByNumber
Returns the number of transactions in a block from a block matching the given block number.
Params
- a string array containing (required):QUANTITY|TAG(hex string|string, required)
- integer block number in hex string format, or the string"earliest"
,"latest"
or"pending"
, as in the default block parameter.
QUANTITY(hex string)
- integer of the number of transactions in this block.curl
TypeScript
curl https://api.blockvision.org/v1/<api key> \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getBlockTransactionCountByNumber",
"params": [
"0xe8333"
],
"id": 42
}'
import { BlockVisionProvider, BvNetwork } from 'blockvision.js'
// Optional parameters, but default to eth-mainnet and default api-key.
const bv = new BlockVisionProvider(BvNetwork.POL_MAINNET)
// Access BlockVision Enhanced API requests
bv.getBlockTransactionCount('0xe8333').then(console.log)
{
"jsonrpc": "2.0",
"id": 42,
"result": "0x2"
}
Last modified 1mo ago