MCP Ethers Wallet

getWalletTransactionCount

Retrieve the total number of transactions sent from a specific Ethereum address. Input the address and optional chain ID or provider for accurate results.

Instructions

Get the number of transactions ever sent by an address

Input Schema

NameRequiredDescriptionDefault
addressYesThe Ethereum address to query
chainIdNoOptional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used.
providerNoOptional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.

Input Schema (JSON Schema)

{ "properties": { "address": { "description": "The Ethereum address to query", "type": "string" }, "chainId": { "description": "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used.", "type": "number" }, "provider": { "description": "Optional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.", "type": "string" } }, "required": [ "address" ], "type": "object" }
ID: j75jbdup5m