eth_getTransactionCount
Accounts info | Monad
eth_getTransactionCount | Monad
Monad API method that returns the number of transactions sent from an address. Reference for eth_getTransactionCount on Monad via Chainstack.
POST
eth_getTransactionCount
Monad API method that returns the number of transactions sent from an address. This is also known as the account nonce, which is used to prevent transaction replay and ensure proper transaction ordering.
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
data— the 20-byte address.quantity or tag— integer block number, or the stringlatest,earliest, orpending.
Response
result— the number of transactions sent from the address, encoded as hexadecimal.
eth_getTransactionCount code examples
Use case
A practical use case foreth_getTransactionCount is obtaining the correct nonce when manually constructing transactions, ensuring they are processed in the correct order.Last modified on May 18, 2026