Unstoppable Domains Integration

We design and develop full-cycle blockchain solutions: from smart contract architecture to launching DeFi protocols, NFT marketplaces and crypto exchanges. Security audits, tokenomics, integration with existing infrastructure.
Showing 1 of 1 servicesAll 1306 services
Unstoppable Domains Integration
Simple
from 1 business day to 3 business days
FAQ
Blockchain Development Services
Blockchain Development Stages
Latest works
  • image_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1214
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    852
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_logo-advance_0.png
    B2B Advance company logo design
    561
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    823

Integration with Unstoppable Domains

Unstoppable Domains — alternative to ENS with one key difference: names are purchased once without annual payments. .crypto, .wallet, .nft, .x, .blockchain and other TLDs. Domains are stored as ERC-721 NFTs on Polygon and Ethereum.

Resolution via Official SDK

import Resolution from "@unstoppabledomains/resolution";

const resolution = new Resolution({
  sourceConfig: {
    uns: {
      locations: {
        Layer1: {
          url: `https://mainnet.infura.io/v3/${INFURA_KEY}`,
          network: "mainnet",
        },
        Layer2: {
          url: `https://polygon-mainnet.infura.io/v3/${INFURA_KEY}`,
          network: "polygon-mainnet",
        },
      },
    },
  },
});

// Resolve ETH address
const ethAddress = await resolution.addr("brad.crypto", "ETH");

// Other cryptocurrencies
const btcAddress = await resolution.addr("brad.crypto", "BTC");

// Email from profile
const email = await resolution.email("brad.crypto");

// All records
const allRecords = await resolution.allRecords("brad.crypto");

Key Differences from ENS

Parameter Unstoppable Domains ENS
Payment model One-time purchase Annual rent
Network (primary) Polygon L2 Ethereum mainnet
TLD .crypto, .wallet, .nft... .eth
Standard UNS (custom) ERC-137
Reverse resolution Limited Full

UI Integration

Pattern of use: support both standards (ENS + Unstoppable) in address input fields.

async function resolveAddress(input: string): Promise<string | null> {
  // ENS
  if (input.endsWith(".eth")) {
    return await provider.resolveName(input);
  }
  
  // Unstoppable Domains TLDs
  const udTLDs = [".crypto", ".wallet", ".nft", ".x", ".blockchain", ".dao"];
  if (udTLDs.some(tld => input.endsWith(tld))) {
    try {
      return await resolution.addr(input, "ETH");
    } catch {
      return null;
    }
  }
  
  // Raw address
  if (ethers.isAddress(input)) return input;
  
  return null;
}

Unstoppable Domains integration into existing dApp — 1-2 working days. Support for all record types and profiles — up to 3 days.