0.14.2 • Published 1 month ago

@kabuto-sh/ns v0.14.2

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
1 month ago

Kabuto Name Service (KNS) SDK

npm npm

The only full decentralized Web3 name service on Hedera Hashgraph.

Install

npm install @kabuto-sh/ns

Setup

Before using KNS, you need to set the Signer that will be used to sign and execute transactions against the network.

import { KNS } from "@kabuto-sh/ns";

const kns = new KNS({
  network: "mainnet", // or "testnet"
});

// NOTE: setProvider takes anything that implements the Signer interface
//  from HIP-338
kns.setSigner(yourSigner);

Usage

Register Name

Register the name, if available. Mints the authorization NFT to the configured signer.

await kns.registerName("example.hh", { years: 3 });

The registration price is explained on https://ns.kabuto.sh. The price is fixed to a USD value. To check the spot price in HBARs, you can use the getRegisterPriceHbar function.

const priceInHbar = await kns.getRegisterPriceHbar("example.hh");

Note that getRegisterPriceHbar does not check for domain availability.

Set Text Record

In order to perform any setX or deleteX functions on a name (e.g., example.hh) your signer must be the owner of the authorization NFT.

// example.hh --> _
await kns.setText("example.hh", "Hello World");

// foo.example.hh --> _
await kns.setText("foo.example.hh", "Bar");

Set Address Record

Address records are keyed by the SLIP-44 coin type.

// example.hh (HBAR) --> _
await kns.setAddress("example.hh", 3030, "0.0.2020");

// example.hh (ETH) --> _
await kns.setAddress(
  "example.hh",
  60,
  "0x71c7656ec7ab88b098defb751b7401b5f6d8976f",
);

Set Hedera Address Record

// example.hh (HBAR) --> _
await kns.setHederaAddress("example.hh", "0.0.2020");

Get Name

Retrieve the metadata for a name, if available. Throws NameNotFoundError if not available.

const {
  serialNumber, // serial number in the NFT for this TLD
  ownerAccountId, // account ID that owns this name
  expirationTime, // time that the name ownership will expire
} = await kns.getName("example.hh");

Get Records

Retrieve all text and address records for a name, if available. Throws NameNotFoundError if not available.

const {
  text, // array of { name, text }
  address, // array of { name, coinType, address }
} = await kns.getAll("example.hh");

Get Text Record

Retrieve a text for a name, if available. Throws NameNotFoundError if not available.

const text = await kns.getText("example.hh");

Get Address Record

Retrieve an address record for a name and coin type, if available. Throws NameNotFoundError if not available.

// address is x.y.z
// 3030 is Hedera
const address = await kns.getAddress("example.hh", 3030);

Get Hedera Address Record

Retrieve a HBAR address record for a name, if available. Throws NameNotFoundError if not available.

// address is an @hashgraph/sdk.AccountId
const address = await kns.getHederaAddress("example.hh");

Find Names by Address

Lookup names for a given address record and coin type.

// returns array of names as x.y
const names: string[] = await kns.findNamesByAddress(3030, "0.0.1001");

Find Names by Hedera Address

Lookup names for a given HNAR address record.

// returns array of names as x.y
const names: string[] = await kns.findNamesByHederaAddress(myAccountId);

License

Licensed under the Apache license, version 2.0 (LICENSE or https://www.apache.org/licenses/LICENSE-2.0).

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.

0.14.2

1 month ago

0.14.0

1 month ago

0.14.1

1 month ago

0.11.0

9 months ago

0.10.1

10 months ago

0.12.0

8 months ago

0.10.2

10 months ago

0.13.0

7 months ago

0.10.3

10 months ago

0.13.1

6 months ago

0.13.2

6 months ago

0.10.0

10 months ago

0.9.0

11 months ago

0.8.0

12 months ago

0.7.0

1 year ago

0.3.0

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.6.3

1 year ago

0.5.4

1 year ago

0.6.2

1 year ago

0.5.3

1 year ago

0.5.5

1 year ago

0.5.0

1 year ago

0.3.2

1 year ago

0.2.3

1 year ago

0.4.0

1 year ago

0.3.1

1 year ago

0.2.2

1 year ago

0.6.1

1 year ago

0.5.2

1 year ago

0.1.6

2 years ago

0.6.0

1 year ago

0.5.1

1 year ago

0.2.4

1 year ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago