wallet_get_transaction_count
Retrieve the total number of transactions sent from your Ethereum or EVM-compatible account, including the nonce, to track transaction history and ensure proper transaction sequencing.
Instructions
Get the number of transactions sent from this account (nonce)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockTag | No | Optional block tag (latest, pending, etc.) | |
wallet | No | The wallet (private key, mnemonic, or JSON). If not provided, uses PRIVATE_KEY environment variable if set. |
Input Schema (JSON Schema)
{
"properties": {
"blockTag": {
"description": "Optional block tag (latest, pending, etc.)",
"type": "string"
},
"wallet": {
"description": "The wallet (private key, mnemonic, or JSON). If not provided, uses PRIVATE_KEY environment variable if set.",
"type": "string"
}
},
"required": [],
"type": "object"
}