Skip to main content

eth_getBlockTransactionCountByNumber

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

Params

(1)

1. Block (required)

(one of)
string
Match pattern:
^0x(0|[1-9a-f][0-9a-f]*)$

Result

(Transaction count)
(one of)
null

Example

Request

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

Result

"0x8"

Params

Block


Request

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