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

multichain-secure-wallet

v0.1.1

Published

Zero-dependency multi-chain wallet generator (BIP-39/32/44) for Node 18+

Readme

multichain-secure-wallet

npm version License: MIT

A zero-dependency TypeScript library that generates multi-chain wallets using BIP-39 / BIP-32 / BIP-44 standards.
Works in Node.js ≥18, supports both TypeScript and JavaScript projects.

Developed by Onur Nizam.


✨ Features

  • 🔑 Mnemonic generation (BIP-39, 12–24 words, English wordlist included)
  • 🔒 Seed derivation with PBKDF2-HMAC-SHA512
  • 🌐 BIP-32 / BIP-44 derivation
  • 🪙 Multi-chain support:
    • Bitcoin (BTC)
    • Ethereum (ETH)
    • Litecoin (LTC)
    • Dogecoin (DOGE)
    • Binance Smart Chain (BSC)
    • Polygon (MATIC)
  • 📦 Works in both TypeScript and JavaScript
  • 🚫 Zero runtime dependencies

📦 Installation

npm install multichain-secure-wallet

🚀 Usage
JavaScript

const { generateWallet } = require('multichain-secure-wallet');

(async () => {
  const eth = await generateWallet({ language: 'english', blockchain: 'eth', strength: 128 });
  console.log(eth.address, eth.mnemonic, eth.privateKeyHex);
})();

TypeScript

import { generateWallet } from 'multichain-secure-wallet';

(async () => {
  const btc = await generateWallet({ language: 'english', blockchain: 'btc' });
  console.log(btc.address, btc.mnemonic, btc.privateKeyHex);
})();

Example Output
{
  "mnemonic": "abandon ability able about above absent absorb abstract absurd abuse access accident",
  "seedHex": "5eb00bbddcf069084889a8ab9155568165f5c453ccb85e70811aaed6f6da5fc1",
  "path": "m/44'/60'/0'/0/0",
  "coinType": 60,
  "privateKeyHex": "4c0883a69102937d6231471b5dbb6204fe512961708279cd27a3c6f6c7e0d85d",
  "publicKeyHex": "04a34f3c...f23bc7",
  "address": "0x1234abcd5678ef9012345678abcdef9012345678"
}

🧩 Roadmap

Done - BTC / ETH / LTC / DOGE / BSC / MATIC support

Coming soon - Bech32 (SegWit, Taproot)

Coming soon - Cosmos (ATOM), XRP, Tezos (XTZ)

Coming soon - Solana (SOL), Polkadot (DOT), Cardano (ADA)

🛡️ Security

Uses Node.js crypto module only (CSPRNG, HMAC, PBKDF2)

No telemetry, no logs, no external dependencies.

Always keep your mnemonic and private keys secure.