New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@valora/resolve-kit

Package Overview
Dependencies
Maintainers
8
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@valora/resolve-kit

Resolve an identifier to a Celo address.

latest
Source
npmnpm
Version
3.0.112
Version published
Weekly downloads
113
-25.17%
Maintainers
8
Weekly downloads
 
Created
Source

resolve-kit

Resolve an identifier to a Celo address.

Adding

yarn add @valora/resolve-kit

Example

import { ResolveGroup, ResolveAddress, ResolveEns } from '@valora/resolve-kit'

const providerUrl = 'https://forno.celo.org'

const resolver = new ResolveGroup([new ResolveAddress(), new ResolveEns({})])

// Likely resolve 'foo' to a nom with a resolution address
const foo = await resolver.resolve('foo')
console.log('foo resolutions:', foo.resolutions)
console.log('foo errors:', foo.errors)

// Resolves 0x1212121212121212121212121212121212121212 to an address
const address = await resolver.resolve(
  '0x1212121212121212121212121212121212121212',
)
console.log('address resolutions:', address.resolutions)
console.log('address errors:', address.errors)

Developing

Install dependencies:

yarn

Run tests:

yarn test

Run the example CLI:

yarn resolve --id foo
yarn resolve --id 0x1212121212121212121212121212121212121212
yarn resolve --id 0x121212121212121212121212121212121212121

Release

This project uses semantic-release to automatically publish new versions to NPM. You must use PR titles adhering to the conventional commits standard (also enforced in CI) for this to work properly.

FAQs

Package last updated on 16 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts