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

solana-vanity-generator

v1.0.0

Published

Multi-threaded Solana vanity address generator with CLI

Downloads

99

Readme

Solana Vanity Generator

A high-performance, multi-threaded Solana vanity address generator with CLI support.

Features

  • Multi-threaded: Utilizes all CPU cores for maximum performance
  • Flexible Matching: Search by prefix, suffix, or substring
  • Auto-save Progress: Gracefully handles interruptions (Ctrl+C)
  • Easy to Use: Simple CLI with intuitive flags
  • Customizable: Configure worker threads, output files, and targets

Installation

Global Installation (Recommended)

npm install -g solana-vanity-generator

Local Installation

npm install solana-vanity-generator

From Source

git clone <your-repo>
cd solana-vanity-generator
npm install
npm run build
npm link

Usage

Basic Examples

Generate addresses ending with "sum":

solana-vanity-generator --suffix sum
# or use the short alias
svg --suffix sum

Generate addresses starting with "ABC":

svg --prefix ABC --count 100

Generate addresses containing "pump":

svg --contains pump --count 50

Combine multiple patterns:

svg --prefix So --suffix ana --count 10

CLI Options

Options:
  -V, --version          output the version number
  -s, --suffix <string>  Address suffix to search for (default: "sum")
  -p, --prefix <string>  Address prefix to search for (case-sensitive)
  --contains <string>    Address must contain this string anywhere
  -c, --count <number>   Number of addresses to generate (default: "500")
  -o, --output <file>    Output JSON file (default: "solana_addresses.json")
  -w, --workers <number> Number of worker threads (default: CPU cores)
  -h, --help            display help for command

Advanced Usage

Custom worker count and output file:

svg --suffix DAO --workers 8 --output dao_wallets.json

Generate 1000 addresses with specific prefix:

svg --prefix Pump --count 1000

Output Format

The generated addresses are saved in JSON format:

[
  {
    "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
    "privateKey": "base58_encoded_private_key_here"
  }
]

Performance Tips

  1. More cores = faster generation: The tool uses all CPU cores by default
  2. Longer patterns = longer generation time: Each additional character increases difficulty exponentially
  3. Case-sensitive: Prefix matching is case-sensitive
  4. Save progress: Press Ctrl+C to safely stop and save current progress

Example Use Cases

For NFT Projects

svg --prefix NFT --count 100 --output nft_wallets.json

For DAOs

svg --suffix DAO --count 50 --output dao_addresses.json

For Personal Vanity

svg --contains YourName --count 10

How It Works

The tool uses Node.js worker threads to parallelize the address generation process:

  1. Spawns one worker per CPU core
  2. Each worker continuously generates Solana keypairs
  3. Checks each address against your pattern(s)
  4. Saves matches to JSON file in real-time
  5. Gracefully handles interruptions

Security Note

IMPORTANT: The generated private keys are stored in plain text. Keep your output files secure and never share them publicly. Consider encrypting the output file for production use.

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

If you find this tool useful, consider starring the repository.