get-ens-name
Retrieve the primary ENS name associated with a specific blockchain address using MCPilot, enabling secure and efficient blockchain interactions without exposing private keys.
Instructions
Get the primary ENS name for address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
blockNumber | No | ||
chainId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"type": "string"
},
"blockNumber": {
"type": "number"
},
"chainId": {
"type": "number"
}
},
"required": [
"address"
],
"type": "object"
}