npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@xarmian/envoi-sdk

v0.2.1

Published

SDK for enVoi, a naming service for Voi Network

Readme

enVoi SDK

A TypeScript/JavaScript SDK for interacting with enVoi, the naming service for Voi Network.

Installation

npm install @xarmian/envoi-sdk

Features

  • Name resolution using Voi Network (algod) node (on-chain)
  • HTTP API integration for fast queries
  • Name search functionality
  • TypeScript support
  • Compatible with Algorand JS SDK v2.7

Usage

Initialize the SDK

import envoiSDK from '@xarmian/envoi-sdk';

// Initialize with Algod node configuration
const resolver = envoiSDK.init({
  token: 'your-algod-token',
  url: 'https://your-algod-node',
  port: 443
});

Using the HTTP Client (Fast Queries)

The HTTP client provides fast name resolution by querying the enVoi API directly. This is recommended for applications that need quick lookups and don't require on-chain verification.

// Resolve a name to an address
const address = await resolver.http.getAddressFromName('en.voi');
console.log(address[0]); // BRB3JP4LIW5Q755FJCGVAOA4W3THJ7BR3K6F26EVCGMETLEAZOQRHHJNLQ

// Resolve multiple names at once
const addresses = await resolver.http.getAddressFromName(['en.voi', 'test.voi']);
addresses.forEach(addr => console.log(addr));

// Reverse lookup: get name from address
const name = await resolver.http.getNameFromAddress('BRB3JP4LIW5Q755FJCGVAOA4W3THJ7BR3K6F26EVCGMETLEAZOQRHHJNLQ');
console.log(name[0]); // en.voi

// Resolve multiple addresses at once
const names = await resolver.http.getNameFromAddress(['ADDRESS1', 'ADDRESS2']);
names.forEach(name => console.log(name));

// Search for names
const searchResults = await resolver.http.search('voi');
searchResults.forEach(result => {
  console.log(`Name: ${result.name}`);
  console.log(`Address: ${result.address}`);
  if (result.metadata) {
    console.log('Metadata:', result.metadata);
  }
});

// Get token information
const tokenInfo = await resolver.http.getTokenInfo('80067632360305829899847207196844336417360777167721505904064743996533051131418');
if (tokenInfo.length > 0) {
  console.log('Name:', tokenInfo[0].name);
  console.log('Address:', tokenInfo[0].address);
  console.log('Token ID:', tokenInfo[0].token_id);
  if (tokenInfo[0].metadata) {
    console.log('Metadata:', tokenInfo[0].metadata);
  }
}

// Get multiple tokens at once
const tokenInfos = await resolver.http.getTokenInfo([
  '80067632360305829899847207196844336417360777167721505904064743996533051131418',
  '80067632360305829899847207196844336417360777167721505904064743996533051131419'
]);
tokenInfos.forEach(info => {
  console.log('Name:', info.name);
  console.log('Address:', info.address);
  console.log('Token ID:', info.token_id);
});

Using the Chain Resolver (On-chain Verification)

The chain resolver interacts directly with the Voi Network to resolve names. This provides the most up-to-date and verified information but may be slower than HTTP queries.

// Resolve a name to an address
const address = await resolver.chain.getAddressFromName('example.voi');
console.log(address); // Returns the Voi address

// Reverse lookup: get name from address
const name = await resolver.chain.getNameFromAddress('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA');
console.log(name); // Returns the associated name

// Get name from token ID
const tokenName = await resolver.chain.getNameFromToken('80067632360305829899847207196844336417360777167721505904064743996533051131418');
console.log(tokenName); // Returns the name associated with the token

API Documentation

init(config: AlgodConfig): EnvoiSDK

Initializes the SDK with Algod node configuration.

Parameters:

  • config.token: Algod node API token
  • config.url: Algod node URL
  • config.port: Algod node port

Returns an EnvoiSDK instance with the following interfaces:

HTTP Client Methods

http.getNameFromAddress(address: string | string[]): Promise<string[]>

Performs a reverse lookup to find names associated with Voi addresses using the HTTP API.

  • Returns an array of names, with empty strings for addresses that weren't found
  • Fast and suitable for most applications
  • Supports resolving multiple addresses in one call

http.getAddressFromName(name: string | string[]): Promise<string[]>

Resolves names to their associated Voi addresses using the HTTP API.

  • Returns an array of addresses, with empty strings for names that weren't found
  • Fast and suitable for most applications
  • Supports resolving multiple names in one call

http.search(query: string): Promise<Array<SearchResult>>

Searches for names matching the given query pattern.

Parameters:

  • query: The search pattern to match against names

Returns an array of search results, where each result has the following structure:

interface SearchResult {
  name: string;      // The matched name
  address: string;   // The associated Voi address
  metadata?: unknown; // Optional metadata associated with the name
}

http.getTokenInfo(tokenId: string | string[], avatarFormat?: 'thumb' | 'full'): Promise<Array<TokenInfo>>

Gets information about one or more token IDs using the HTTP API.

Parameters:

  • tokenId: Single token ID or array of token IDs to resolve
  • avatarFormat: Optional format for avatar URLs ('thumb' or 'full', defaults to 'thumb')

Returns an array of token information, where each result has the following structure:

interface TokenInfo {
  token_id: string;   // The token ID
  name: string;       // The name associated with the token
  address: string;    // The owner's address
  metadata?: unknown;  // Optional metadata associated with the token
}

Chain Resolver Methods

chain.getNameFromAddress(address: string): Promise<string>

Performs a reverse lookup to find a name associated with a Voi address by querying the blockchain directly.

  • Returns an empty string if no name is found or if the address is invalid
  • Provides on-chain verification but may be slower than HTTP queries

chain.getAddressFromName(name: string): Promise<string>

Resolves a name to its associated Voi address by querying the blockchain directly.

  • Returns an empty string if no address is found
  • Provides on-chain verification but may be slower than HTTP queries

chain.getNameFromToken(tokenId: string): Promise<string>

Resolves a token ID to its associated name by querying the blockchain directly.

  • Returns an empty string if no name is found or if the token ID is invalid
  • Provides on-chain verification but may be slower than HTTP queries

Command Line Interface

The SDK includes a command-line tool for quick lookups and testing:

# Resolve a name to an address
resolve address en.voi

# Resolve multiple names to addresses
resolve address en.voi,test.voi

# Resolve an address to a name
resolve name BRB3JP4LIW5Q755FJCGVAOA4W3THJ7BR3K6F26EVCGMETLEAZOQRHHJNLQ

# Resolve multiple addresses to names
resolve name ADDRESS1,ADDRESS2

# Search for names
resolve search voi

# Get token information (shows both HTTP and chain results)
resolve token 80067632360305829899847207196844336417360777167721505904064743996533051131418

# Get multiple tokens' information
resolve token TOKEN_ID1,TOKEN_ID2

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

# Lint
npm run lint

Publishing

The package is automatically published to npm when a new GitHub release is created. To publish a new version:

  1. Update the version in package.json:
npm version patch  # for bug fixes (0.0.X)
npm version minor  # for new features (0.X.0)
npm version major  # for breaking changes (X.0.0)
  1. Push the changes and tags:
git push && git push --tags
  1. Create a new release on GitHub:
    • Go to the repository's Releases page
    • Click "Create a new release"
    • Choose the new version tag
    • Add release notes
    • Publish the release

The GitHub Actions workflow will automatically:

  • Run tests
  • Build the package
  • Publish to npm

For manual publishing:

npm login  # if not already logged in
npm publish

License

MIT