Usage

We are committed to continuous improvement

Introduction

Features Include:

  • Simultaneously search for social IDs, domains, emails, usernames, wallet addresses and name services across over five providers with over 20 target extensions.

  • Copy the retrieved data (for example, a chain address or a domain name).

  • As a developer, you can pass a function to the props and process the data as needed.

Installation

npm i @redefined/name-resolver-react

or download the lib from the NPM registry manually.

Usage

import React from 'react';
import { RedefinedDomainResolver } from "@redefined/name-resolver-react";

export default function App() {
  return (
    <div>
        <RedefinedDomainResolver onUpdate={(item) => console.log(item)} />
    </div>
  );
}

To handle the user selection, pass a function to onUpdate prop of the component.

Last updated