get_address_info
Retrieve detailed address insights, including ETH balance, ENS name, contract status, proxy details, and token information. Use for blockchain address analysis, contract verification, and DeFi protocol research.
Instructions
Get comprehensive information about an address, including:
- Address existence check
- Native token (ETH) balance (provided as is, without adjusting by decimals)
- ENS name association (if any)
- Contract status (whether the address is a contract, whether it is verified)
- Proxy contract information (if applicable): determines if a smart contract is a proxy contract (which forwards calls to implementation contracts), including proxy type and implementation addresses
- Token details (if the contract is a token): name, symbol, decimals, total supply, etc.
Essential for address analysis, contract investigation, token research, and DeFi protocol analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to get information about | |
chain_id | Yes | The ID of the blockchain |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to get information about",
"title": "Address",
"type": "string"
},
"chain_id": {
"description": "The ID of the blockchain",
"title": "Chain Id",
"type": "string"
}
},
"required": [
"chain_id",
"address"
],
"title": "get_address_infoArguments",
"type": "object"
}