get-subdomains
Query and retrieve subdomains for any Ethereum Name Service (ENS) name to manage and analyze ENS-based addresses effectively.
Instructions
Get subdomains for an ENS name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The ENS name to query for subdomains |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The ENS name to query for subdomains",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}