From ef7f72d12010010d947aea060497d84e89edf389 Mon Sep 17 00:00:00 2001 From: Aaron Oxborrow Date: Mon, 29 Dec 2025 23:53:30 -0800 Subject: [PATCH 1/2] Fix _ens TXT record example it shouldn't have `@`, only `_ens` --- src/pages/registry/dns.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/registry/dns.mdx b/src/pages/registry/dns.mdx index 4e20487d..e4994a49 100644 --- a/src/pages/registry/dns.mdx +++ b/src/pages/registry/dns.mdx @@ -26,7 +26,7 @@ Since 2021, it has been possible to [import a DNS name](/learn/dns#importing-a-d Expect your `TXT` record to look something like this: ``` -TXT @ _ens a=<eth-address> +TXT _ens a=<eth-address> ``` You can learn more about [how to import a DNS name](/learn/dns#importing-a-dns-name) in the DNS section, or see how to [programmatically complete these steps](#programming-dnssec-proofs). From acfb657e7720251c72594dffb1540fc80b43c670 Mon Sep 17 00:00:00 2001 From: Greg <35093316+gskril@users.noreply.github.com> Date: Mon, 5 Jan 2026 11:43:03 -0500 Subject: [PATCH 2/2] Fix address value --- src/pages/registry/dns.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/registry/dns.mdx b/src/pages/registry/dns.mdx index e4994a49..e8ba3fb9 100644 --- a/src/pages/registry/dns.mdx +++ b/src/pages/registry/dns.mdx @@ -26,7 +26,7 @@ Since 2021, it has been possible to [import a DNS name](/learn/dns#importing-a-d Expect your `TXT` record to look something like this: ``` -TXT _ens a=<eth-address> +TXT _ens a=; ``` You can learn more about [how to import a DNS name](/learn/dns#importing-a-dns-name) in the DNS section, or see how to [programmatically complete these steps](#programming-dnssec-proofs).