Skip to main content

Wallet API documentation

Directly integrate your dapp with the MetaMask extension.

Ethereum API
Multichain API

eth_getBlockTransactionCountByHash

Summary: Returns the number of transactions in a block from a block matching the given block hash.

Parameters

Block hash
string
Pattern: ^0x[0-9a-f]{64}$

32 byte hex value

Returns

Transaction count
string
Pattern: ^0x([1-9a-f]+[0-9a-f]*|0)$

hex encoded unsigned integer

Customize request
Parameter
Value
string

Connect your MetaMask wallet to run requests successfully.

Request

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

Example response

"0x8"