EVM
Archive
eth_getTransactionCount
Summary: Get transaction count
This request returns a count of transactions sent from a given address up to and including the provided block.
Parameters
address string
requiredA string identifier for the contract or EOA address (20 bytes).
Pattern: ^0x[0-9a-fA-F]{40}$
block anyOf
requiredBlock number, block hash, or string tag.
Returns
The number of transactions sent from the specified address up to and including the specified block, in hexadecimal.
eth_getTransactionCountResponse string
The number of transactions sent from the specified address up to and including the specified block, in hexadecimal.
Pattern: ^0x([1-9a-f]+[0-9a-f]*|0)$
Customize request
Parameter
Value
Request
curl https://linea-mainnet.infura.io/v3/<YOUR-API-KEY> \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getTransactionCount",
"params": ["0x188e0B45cedd8f5e425e73c8aa7953b92115ec24","0x4fb66d"],
"id": 1
}'
Example response
{
"id": 1,
"jsonrpc": "2.0",
"result": "0x52"
}