lookupENS
Retrieve the ENS name associated with an Ethereum address using this tool, simplifying Ethereum-based research and automation.
Instructions
Looks up the ENS name for an Ethereum address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The Ethereum address to lookup |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The Ethereum address to lookup",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}