eth_getBlockTransactionCountByNumber
Returns the number of transactions in a block matching the given block number.
Params
(1)1. Block (required)
Block number
(one of)
string
Match pattern:
^0x(0|[1-9a-f][0-9a-f]*)$
Result
(Transaction count)Not Found (null)
(one of)
null
Example
Request
await window.ethereum.request({
"method": "eth_getBlockTransactionCountByNumber",
"params": [
"0xe8"
]
});
Result
"0x8"