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
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | The address hash to get info for |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address hash to get info for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}