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

privatepussy

v1.0.0

Published

ZK Privacy Tools for Solana - Shield your SOL with Light Protocol compression

Downloads

5

Readme


Features

  • Privacy Migration - Shield SOL using Light Protocol ZK compression
  • Wallet Scanner - Analyze any wallet for dust attacks & privacy risks
  • Encrypted Wallets - AES-256-GCM encrypted keypair storage
  • QR Code Funding - Easy wallet funding via QR code

Quick Start

npx privatepussy

Or install globally:

npm install -g privatepussy
privatepussy

Setup

Helius API Key (Required for Shield/Unshield)

Privacy Migration requires a Helius API key (free tier available):

  1. Get a free key at helius.dev
  2. Set it via environment variable:
    export HELIUS_API_KEY=your-api-key
    Or configure in the CLI: Settings → Helius API Key

Note: Wallet scanning works without an API key (uses public RPC).

How It Works

1. Privacy Migration (Shield/Unshield)

Uses Light Protocol ZK compression to break the on-chain link between your wallets:

Your Wallet ──► Shield (compress) ──► Private Account ──► Unshield ──► New Wallet
                     │                                         │
                     └─── No on-chain link between wallets ────┘

The Flow:

  1. Create a new wallet in the CLI
  2. Send SOL from your existing wallet (Phantom, etc.)
  3. Shield the SOL (compress into private account)
  4. Unshield to a completely new wallet
  5. No traceable connection between source and destination

2. Wallet Scanner

Analyze any Solana wallet for privacy risks:

  • Dust attack detection
  • Tracking token identification
  • Token categorization (empty, dust, legitimate)
  • SOL rent recovery estimation
# Just enter any public address - no private key needed
privatepussy
> Scan Wallet
> Enter wallet address: <any-solana-address>

Menu Options

┌─────────────────────────────────────────────────┐
│           PRIVATE PUSSY - Main Menu             │
├─────────────────────────────────────────────────┤
│  ★ Privacy Migration  (Shield/Unshield - ZK)   │
│  › Scan Wallet        (Dust & privacy analysis)│
│  › Settings           (Network/Wallets/RPC)    │
│  › Clear                                        │
│  › Exit                                         │
└─────────────────────────────────────────────────┘

Network Support

| Network | Privacy Migration | Wallet Scan | |---------|-------------------|-------------| | Devnet | ✅ Full support | ✅ Available | | Mainnet | ❌ Coming soon* | ✅ Available |

*Light Protocol state trees for native SOL compression are currently only active on Devnet.

Security

  • Keys stay local - Your private keys never leave your machine
  • Encrypted storage - Wallets encrypted with AES-256-GCM + PBKDF2
  • Open source - Audit the code yourself
  • No tracking - We don't collect any data

Privacy Migration vs Other Solutions

| Feature | Private Pussy | Mixers | CEX | |---------|--------------|--------|-----| | No KYC | ✅ | ✅ | ❌ | | No anonymity set dependency | ✅ | ❌ | ✅ | | Trustless | ✅ | ❌ | ❌ | | On-chain privacy | ✅ | ✅ | ❌ | | Instant | ✅ | ❌ | ❌ |

Tech Stack

Related

  • Web App: solprivacy.xyz - Full privacy analysis dashboard
  • API: solprivacy.xyz/api/v3/analyze/{wallet} - Privacy analysis API

Development

# Clone
git clone https://github.com/Pavelevich/privatepussy.git
cd privatepussy

# Install
npm install

# Dev mode
npm run dev

# Build
npm run build

# Run
npm start

License

MIT - Do whatever you want with it.