
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@valora/resolve-kit
Advanced tools
Resolve an identifier to a Celo address.
yarn add @valora/resolve-kit
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)
Install dependencies:
yarn
Run tests:
yarn test
Run the example CLI:
yarn resolve --id foo
yarn resolve --id 0x1212121212121212121212121212121212121212
yarn resolve --id 0x121212121212121212121212121212121212121
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
Resolve an identifier to a Celo address.
The npm package @valora/resolve-kit receives a total of 112 weekly downloads. As such, @valora/resolve-kit popularity was classified as not popular.
We found that @valora/resolve-kit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.