reverse-lookup
Retrieve the Ethereum Name Service (ENS) name associated with a specific Ethereum address using this tool. Simplify address-to-name resolution for ENS-related operations.
Instructions
Get the ENS name for an Ethereum address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The Ethereum address to look up |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The Ethereum address to look up",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}