get-all-records
Retrieve all available records and details for a specified ENS name to assist in resolving information and managing Ethereum Name Service interactions.
Instructions
Get all available information for an ENS name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The ENS name to query |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The ENS name to query",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}