Get transaction count for an address
Ronin node API
eth_getTransactionCount | Ronin
The eth_getTransactionCount method returns the number of transactions sent from a specified address. Use it on Ronin via Chainstack.
POST
Get transaction count for an address
The
eth_getTransactionCount method returns the number of transactions sent from a specified address. This count includes the transaction index position in the block.
When called against a block older than the latest ~128 blocks, this method is treated as an archive request (2 RUs instead of 1 RU). See request units.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
address: The address to get the number of transactions from.blockParameter(optional): This can be a hexadecimal block number, or the strings “latest”, “earliest”, or “pending”, indicating the state from which to count the transactions.
Response
result: The number of transactions sent from the address, returned as a hexadecimal number.
Use case
This method is useful for determining the nonce for the next transaction to be sent from the specified address. The nonce ensures transactions are processed in order and prevents double-spending and replay attacks.Last modified on May 18, 2026