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

make_address

v1.0.3

Published

You can generate 6 types of cryptocurrency addresses (BTC, ETH, SOL, TRX, XMR, XRP) with just one function call.

Readme

make_address

A simple Node.js package that allows you to generate 6 types of cryptocurrency addresses with a single function call.


✨ Features

make_address can generate addresses for the following cryptocurrencies:

  • Bitcoin (BTC)
  • Ethereum (ETH)
  • Solana (SOL)
  • Tron (TRX)
  • Ripple (XRP)
  • Monero (XMR)

Each generated address includes detailed information such as:

  • Private key
  • Public key
  • Address

All information is tailored to the specific coin.


🚀 Installation

Install the package via npm:

npm i make_address

📖 Usage

Use the make function to generate addresses and key pairs:

const MakeAddress = require("make_address");

(async () => {
  // Generate Bitcoin (BTC) address
  const btc_address = await MakeAddress.make("btc");
  console.log("# BitCoin (BTC)");
  console.log(btc_address);

  // Generate Ethereum (ETH) address
  const eth_address = await MakeAddress.make("eth");
  console.log("# Ethereum (ETH)");
  console.log(eth_address);

  // Generate Solana (SOL) address
  const sol_address = await MakeAddress.make("sol");
  console.log("# Solana (SOL)");
  console.log(sol_address);

  // Generate Tron (TRX) address
  const trx_address = await MakeAddress.make("trx");
  console.log("# Tron (TRX)");
  console.log(trx_address);

  // Generate Ripple (XRP) address
  const xrp_address = await MakeAddress.make("xrp");
  console.log("# Ripple (XRP)");
  console.log(xrp_address);

  // Generate Monero (XMR) address
  const xmr_address = await MakeAddress.make("xmr");
  console.log("# Monero (XMR)");
  console.log(xmr_address);
})();

📝 Example Output

Note: Keys and addresses are randomly generated and will differ on each run.

# BitCoin (BTC)

{
  "private_key": "c5d3ac3dcf8597bf7bafaf630fdb9170d2b9346fcfee807dce12fd1a2c4d881f",
  "compressed_public_key": "033cdb909425b0ef9117bd40896c0caa3108d0f361aaac4d4558ea8f453516dace",
  "address": "131vfbf6f9tMPeFFmtqYB6qD9wwn3axuiz",
  "wif_key": "L3rG4Jtb24W762e4jXNzHUVPotHEmUfRYmZMNTHLhoEvsUZeb5Bf",
  "coin": "btc"
}

# Ethereum (ETH)

{
  "address": "0x78e6cF3332CEc30687b3bD6Cc0d1C85594B15522",
  "private_key": "0x9e0b813673ec08912f88a97b070262138845f746ddccd0cc80ec8bf60313a815",
  "coin": "eth"
}

# Solana (SOL)

{
  "address": "C9dfaCXUojVLQUUcvXTmY7dtVDUnv4DHEFCceKP3czw5",
  "private_key": "T6LHjwQRadWMaA3LD4NDt4yLahRV8Ho3yiEQcRqqcRalpqjy7UTDVq6T0fQZ2suShsdPfgfzc7E5djdWx2Z4nA==",
  "coin": "sol"
}

# Tron (TRX)

{
  "address": "TBMyJW1XRPzJST4MgQFc4xESotntKZTg7G",
  "private_key": "49F5E2308868B52D58B7674F547911BDADBCEC6486059FAB988F8C13C6750909",
  "coin": "trx"
}

# Ripple (XRP)

{
  "address": "rK3Us6KJ1ek8h4SULtBuTjrvR5xAMEKnio",
  "publicKey": "EDF5C3095FD866EEBEB4774B3D4181C3033435AE543682DCB43FD201715AA8758B",
  "privateKey": "EDE7A714AD7506EA56E1E73FF7F026A2E5E0A287390A0314F80E9A02426817A9FA",
  "seed": "sEdVBf5qeJ31jnhkEcr5sHPJQSP5GnG",
  "coin": "xrp"
}

# Monero (XMR)

{
  "walletName": "bcb473d9-919b-4031-89fd-81ff75c1df75",
  "address": "4AoTJNx3aRe2eqWFdDNMnMbHRANPdZ8cZBcbpwjP3WKDDSy5m1wNuWHFNq8qALRvF42sA1DSko4StasTKui7wvMHFXsNbF4",
  "private_view_key": "5ffb14e84775e3e566f9b5a9718635a11d2c4d0a46f6dcdc2cccde786062fa04",
  "private_spend_key": "7013e5a4690d0fce4b8ee7734ed437b52761f8065afd0aaef0405d10f1a0b40c",
  "coin": "xmr"
}

🤝 Contribution

Contributions are always welcome! Feel free to report bugs, suggest features, or submit pull requests to contribute to the project.


📄 License

This project is distributed under the MIT License. See the LICENSE file for more details.