Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key
Version: 2.2

How to resolve an Unstoppable domain

Step 1: Setup Moralis​

Read the article Setting Up Moralis: Getting Started and make sure to finish all the steps. Only after that you can go ahead to complete this guide.

Step 2: Resolve Unstoppable Domain​

In order to resolve an Unstoppable domain to an ETH address, Moralis provides you a resolveDomain endpoint to do so.

Here you'll need one parameter: address.

Once you've obtained the address, you can copy the following code:

const Moralis = require("moralis").default;
const { EvmChain } = require("@moralisweb3/common-evm-utils");

const runApp = async () => {
await Moralis.start({
apiKey: "YOUR_API_KEY",
// ...and any other configuration
});

const domain = "brad.crypto";

const response = await Moralis.EvmApi.resolve.resolveDomain({
domain,
});

console.log(response.toJSON());
};

runApp();

Step 3: Run the script​

To run the script, enter the following command:

node index.js

In your terminal, you should see the following JSON response:

{
"address": "0x8aaD44321A86b170879d7A244c1e8d360c99DdA8"
}

Congratulations πŸ₯³ You just resolved an Unstoppable domain to a wallet address with just a few lines of code using the Moralis Resolve API!

Youtube Video​

API Reference​

If you want to know more details on the endpoint and optional parameters, check out:

Support​

If you face any trouble following the tutorial, feel free to reach out to our community engineers in our Discord or Forum to get 24/7 developer support.