# How to obtain gasless .ART ENS domain

The only thing must be done is to edit your domain name DNS zone and add one or more TXT records into it. The proccess of editing the zone depends on  DNS provider supporting your domain name. Often the domain name registrar is the DNS provider.

{% content-ref url="/pages/HqRQEsAE7ycOpU71AoIc" %}
[How to add TXT record at Get.ART](/registration/how-to-obtain-gasless-.art-ens-domain/how-to-add-txt-record-at-get.art.md)
{% endcontent-ref %}

{% content-ref url="/pages/kQC5IXcw1h8T4T2i0F6Q" %}
[How to add TXT record on namecheap.com](/registration/how-to-obtain-gasless-.art-ens-domain/how-to-add-txt-record-on-namecheap.com.md)
{% endcontent-ref %}

{% content-ref url="/pages/1RUXO3487U3HU2OEdqSZ" %}
[How to add TXT record at GoDaddy.com](/registration/how-to-obtain-gasless-.art-ens-domain/how-to-add-txt-record-at-godaddy.com.md)
{% endcontent-ref %}

{% content-ref url="/pages/AAfU9XERdIXl7Aj5sQbz" %}
[How to add TXT record on porkbun.com](/registration/how-to-obtain-gasless-.art-ens-domain/how-to-add-txt-record-on-porkbun.com.md)
{% endcontent-ref %}

### Link DNS name to Ethereum address

To link your .ART domain name to a Ethereum address - your wallet or any smart contract - add a TXT record into the domain name DNS zone. The name (host) for the record is "@" if you wish to link your domain name or any subhost name ("vault" for example) if you wish to link a subdomain (vault.yourname.art for example).

The value of the record is "`ENS a=60;<eth-address>`".

<details>

<summary>Examples</summary>

To link **yourdomain.art** to ethereum address 0x748c694aCEc977F4e1C98247c9895EDAa2d9a0fe add the TXT record

```
Name: "@"
Value: "ENS a=60;0x748c694aCEc977F4e1C98247c9895EDAa2d9a0fe"
```

To link **sub.yourdomain.art** to ethereum address 0x748c694aCEc977F4e1C98247c9895EDAa2d9a0fe add the TXT record

```
Name: "sub"
Value: "ENS a=60;0x748c694aCEc977F4e1C98247c9895EDAa2d9a0fe"
```

</details>

### Link DNS name to other network addresses

**Step 1: find the network ID**

To link a domain name to an address for other blockchain network find to network ID in "coin type" field in the list here: <https://github.com/satoshilabs/slips/blob/master/slip-0044.md>

**Step 2: prepare the TXT record value**

Having the network ID and the address your TXT record value is:

```
ENS a=<ID>;<address>
```

For example, if you are linking a domain to bitcoin address 1yGPm5L9ONIfwHSM94ytt1prBprxYrzfM2 then the TXT record value is:

```
ENS a=1;1yGPm5L9ONIfwHSM94ytt1prBprxYrzfM2
```

**Step 3: add the record into your DNS domain zone**

Please see links above how to add a TXT record into the zone for most popular registrars. If your registrar is not in the list you can contact their support.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.protocol.art/registration/how-to-obtain-gasless-.art-ens-domain.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
