@subter/react-tezos-domain-lookup

2.0.0 • Public • Published

Tezos Domain Lookup

A reactjs component that allows you to display the tezos domain associated with an address.

  • Displays the address itself if no domain found
  • If domain found, displays the domain in a <span /> tag and the address is displayed on hover (through the span's title attribute)

Installation & Usage

To install, run:

npm install @subter/react-tezos-domain-lookup

You can then use it in your code as follows:

import TezosDomainLookup from "@subter/react-tezos-domain-lookup"

// Your component code
// ...
// ...
  <TezosDomainLookup
    network="hangzhounet"
    address="tz1Xm6kv5euMCjTKgYLt1KcCMhZy9FFBRyQ8"
    className="text-bold text-red-300"
  />
//...

which will render

<span
  title="tz1Xm6kv5euMCjTKgYLt1KcCMhZy9FFBRyQ8"
  class="text-bold text-red-300"
>
  <!--
    tz1Xm6kv5euMCjTKgYLt1KcCMhZy9FFBRyQ8 on hangzhounet
    is registered as callmekatootie.han
  -->
  callmekatootie.han
</span>

Props

network (string)

The network in which to lookup the domain. Supported values:

  • mainnet
  • hangzhounet

address (string)

The address to lookup

className (string)

The CSS classes to associate with the generated <span> tag

Package Sidebar

Install

npm i @subter/react-tezos-domain-lookup

Weekly Downloads

4

Version

2.0.0

License

MIT

Unpacked Size

32.9 kB

Total Files

10

Last publish

Collaborators

  • lazybaer