There are 2 ways to resolve addresses to NNS Names: calling the NNSResolver or our API.
Make sure you understand how the NNSResolver works .
Resolving via the API
You just need to make a POST request to https://api.nns.nyz/resolve with
{
"address": "0x123...456",
// clds is optional and defaults to []
"clds": [
"0x1",
"0x2",
],
// fallback is optional and defaults to true
"fallback": true,
// disable_v1 is optional and when true disables the resolution of v1 names
"disable_v1": false
}
on the resolver. The inputs are the same as the API call.
Inputs
address is the address that will be resolved
clds is an array of cld ids to perform a lookup on
fallback whether you want to fallback to the default cld in case no lookup is found in the given list
Common Scenario
The most common scenario is to let the owner choose where they want to be resolved and this can be done by simply omitting the clds and setting the fallback to true.
Resolution of NNS v2 names
Resolution of NNS v1 names
Fallback to .eth names
in this order of priority.
Code Samples
The code below assumes you are using wagmi and @tanstack/react-query.
API call
async function fetchNNSName(address: Address) {
const res = await fetch(`https://api.nns.xyz/resolve`, {
method: "POST",
body: JSON.stringify({ address }),
});
if (!res.ok) {
throw new Error("invalid response");
}
const body = await res.json();
return body.name as string | null;
}
function useNNSName(address?: Address) {
return useQuery({
queryKey: [address, "nns-name"],
queryFn: () => fetchNNSName(address || zeroAddress),
enabled: Boolean(address),
});
}
As an example, if you only want to resolve .nouns names you can pass:
async function fetchNNSName(address: Address) {
const res = await fetch(`https://api.nns.xyz/resolve`, {
method: "POST",
body: JSON.stringify({
address,
// only resolve in .nouns
clds: [
// namehash("nouns")
"0x84917c06116ee3d3a59b0b08f1c872deae04baecba033ea58cc455c7ca79c62c"
],
// don't fallback to the default cld
// we recommend setting this to true, see comment below.
fallback: false,
}),
});
if (!res.ok) {
throw new Error("invalid response");
}
const body = await res.json();
return body.name as string | null;
}
Note however that this is going to return null if the account has no .nouns. We recommend to set fallback: true to ensure you get one resolution back.
In this example, you can simply return v2Name if you don't want to use the old resolver.
As people migrate their old NNS name to the new contracts, we recommend to also integrate with the as shown here. This is give one, with one simple integration: