eth_getTransactionCount
Returns the number of transactions sent from a given address.
Last updated
Returns the number of transactions sent from a given address.
Address.
Quantity or tag - choose 1 of the following options:
A hexadecimal block number.
"earliest" - the earliest/genesis block.
"latest" - the latest mined block.
"finalized" - the latest finalized block.
"pending" - the pending state/transactions.
curl https://lb.nodies.app/v1/<INSERT API> -X POST -H "Content-Type: application/json" -d '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getTransactionCount",
"params": [
"0xaf9684B8F19fE2a85F58EF9734E35374Be3501d8",
"finalized"
]
}'Last updated
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x52ee"
}