get_address_info
Retrieve detailed Ethereum address information including transaction history, token holdings, and smart contract data for blockchain analysis and wallet monitoring.
Instructions
Get detailed information about a specific Ethereum address
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | The address hash to get info for |
Implementation Reference
- index.js:699-701 (handler)The handler for the 'get_address_info' tool. Extracts the 'address' argument and calls the makeRequest helper to fetch data from the ChainFetch API endpoint `/api/v1/ethereum/addresses/${address}`.case 'get_address_info': const { address } = args; return await this.makeRequest(`/api/v1/ethereum/addresses/${address}`, 'GET', {}, null, token);
- index.js:136-149 (registration)Registers the 'get_address_info' tool in the ListTools response, providing name, description, and input schema that requires a string 'address' parameter.{ name: 'get_address_info', description: 'Get detailed information about a specific Ethereum address', inputSchema: { type: 'object', properties: { address: { type: 'string', description: 'The address hash to get info for', }, }, required: ['address'], }, },