0.2.5 • Published 3 months ago

@bonfida/sns-warp-injective v0.2.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago
  1. Installation
  2. Introduction
  3. Supported chains
  4. Examples

With Yarn:

yarn add @bonfida/sns-warp-injective

With NPM:

npm i @bonfida/sns-warp-injective

This package can be used to resolve .sol domains on Injective.

The JS client currently support the following chains:

  • Injective Testnet (deployed at inj1mrc7uhhwfw7m3mgmqvtypw9qp09d5gsasvmup9)
  • Injective Mainnet (deployed at )

Resolving a .sol domain

The following code can be used to resolve .sol domains

// The domain name to resolve
const domain = "mock3.sol";
// The network on which to resolve the domain
const network = Network.Mainnet;

const resolved = await resolveName(domain, network);

console.log(resolved); // <- inj1r4ce6tdhv0ustvvjfar22xz7qqwan95xn9vfmx

Reverse look up

The following code can be used to resolve a name address

// The network on which to perform the reverse lookup
const network = Network.Mainnet;
const address = "...";

const resolved = await resolveReverse(address, network);
console.log(resolved); // <- mock3
0.2.5

3 months ago

0.2.3

5 months ago

0.2.4

5 months ago

0.2.1

5 months ago

0.2.2

5 months ago

0.2.0

5 months ago

0.1.0

6 months ago

0.1.1

6 months ago

0.0.3

6 months ago

0.0.1-alpha.6

8 months ago

0.0.1-alpha.7

8 months ago

0.0.1-alpha.4

10 months ago

0.0.2

7 months ago

0.0.1-alpha.5

8 months ago

0.0.1-alpha.10

7 months ago

0.0.1-alpha.8

8 months ago

0.0.1-alpha.9

7 months ago

0.0.1-alpha.3

11 months ago

0.0.1-alpha.1

11 months ago