diff --git a/app/local/config/navigation/protocol.ts b/app/local/config/navigation/protocol.ts index cf244f1ea..2bdfa6902 100644 --- a/app/local/config/navigation/protocol.ts +++ b/app/local/config/navigation/protocol.ts @@ -83,16 +83,16 @@ export const navigation: SectionData[] = [ title: 'Web & Querying', icon: '🌐', links: [ - { - title: 'Quickstart', - href: '/web/quickstart', - icon: '⚡', - }, { title: 'Tools and Libraries', href: '/web/libraries', icon: '🛠️', }, + { + title: 'Quickstart', + href: '/web/quickstart', + icon: '⚡', + }, { title: 'Address Lookup', href: '/web/resolution', @@ -109,11 +109,6 @@ export const navigation: SectionData[] = [ href: '/web/reverse', icon: '🔍', }, - { - title: 'Multichain', - href: '/web/multichain', - icon: '⛓️', - }, { title: 'List Names', href: '/web/enumerate', @@ -133,6 +128,11 @@ export const navigation: SectionData[] = [ title: 'Issuing Subdomains', href: '/web/subdomains', }, + { + title: 'Multichain', + href: '/web/multichain', + icon: '⛓️', + }, { title: 'Subgraph', href: '/web/subgraph', diff --git a/app/public/fallback.svg b/app/public/fallback.svg new file mode 100644 index 000000000..78670f639 --- /dev/null +++ b/app/public/fallback.svg @@ -0,0 +1,14 @@ + diff --git a/docs/resolution/index.mdx b/docs/resolution/index.mdx index 4babc724c..67c4a9794 100644 --- a/docs/resolution/index.mdx +++ b/docs/resolution/index.mdx @@ -74,3 +74,11 @@ More about loading information from a resolver can be found [here](/resolvers/in In addition, all of the above functions can be sent to the `resolve()` function, specified in [ENSIP-10](/ensip/10). This allows for not only multicall functionality, but also easier implementation of EIP-3668, and more. + +## Reverse Resolution + +Due to the modular nature of how ENS is designed, it is also possible to lookup the "primary name" of an address. +This process actually uses forward resolution under the hood, you read that right - its just forwards resolution. + +To look up the primary name of a given address you must do a resolver lookup for `addr.reverse` and then query the `name()` field on the resolver. +This name field returns the "preferred" name for the address. Note that the implementing client MUST perform a forward resolution on this name to verify the address matches the one you are looking up. diff --git a/docs/web/index.mdx b/docs/web/index.mdx index 25d9f69d0..e23eada89 100644 --- a/docs/web/index.mdx +++ b/docs/web/index.mdx @@ -10,6 +10,60 @@ export const meta = { This section walks you through how to leverage the ENS open standards to improve the user experience of your app. +