getTransactionCount
Retrieve the total number of transactions sent from a specific Ethereum address using the provided chain ID for accurate blockchain querying.
Instructions
Get the number of transactions sent from an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
chainId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"type": "string"
},
"chainId": {
"type": "number"
}
},
"required": [
"address"
],
"type": "object"
}