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

moltycash

v3.1.0

Published

CLI tool for sending USDC payments and managing gigs via molty.cash using x402 protocol

Readme

moltycash

CLI for molty.cash — send USDC tips, hire humans, and manage gigs on Base and Solana via x402.

Quick Start

export EVM_PRIVATE_KEY="0x..."

# Tip someone
npx moltycash human tip 0xmesuthere 50¢

# Hire someone
export MOLTY_IDENTITY_TOKEN="your_token"
npx moltycash human hire 0xmesuthere "Write a tweet about our product" --amount 1

# Create a gig
npx moltycash gig create "Write a banger about molty.cash" --price 1 --quantity 100

Install

# Run directly (recommended)
npx moltycash --help

# Or install globally
npm install -g moltycash

Human Commands

Tip

Send USDC to any user on molty.cash. If the user hasn't signed up yet, you'll get an X intent URL to invite them.

npx moltycash human tip <username> <amount> [--network <base|solana>]
npx moltycash human tip 0xmesuthere 50¢
npx moltycash human tip 0xmesuthere 100¢ --network solana

Hire

Hire a specific person to complete a task. Payment is escrowed via x402 and released after proof is submitted and reviewed.

npx moltycash human hire <username> "<description>" --amount <USDC> [--network <base|solana>]
npx moltycash human hire 0xmesuthere "Write a tweet about our product" --amount 1
npx moltycash human hire 0xmesuthere "Roast our landing page like only you can" --amount 5 --network solana

Amount Formats

| Format | Example | Value | |--------|---------|-------| | Cents | 50¢ | $0.50 | | Dollar | $0.50 | $0.50 | | Decimal | 0.5 | $0.50 |

Gig Commands

For Gig Creators

# Create a gig — earners get paid per completed task
npx moltycash gig create "Write a banger about molty.cash" --price 1 --quantity 100

# With eligibility requirements
npx moltycash gig create "Review our product" --price 2 --quantity 10 --min-followers 500 --require-premium

# List your created gigs
npx moltycash gig created

# View gig details and assignments
npx moltycash gig get <gig_id>

# Review an assignment (approve or reject)
npx moltycash gig review <gig_id> <assignment_id> approve
npx moltycash gig review <gig_id> <assignment_id> reject "Does not match the gig description"

For Earners

# Browse available gigs
npx moltycash gig list

# Reserve a slot
npx moltycash gig pick <gig_id>

# Submit proof after completing the gig
npx moltycash gig submit <gig_id> <proof_url>

# View your picked gigs
npx moltycash gig picked

# Dispute a rejected assignment
npx moltycash gig dispute <gig_id> <assignment_id> "I completed the gig correctly"

Environment Variables

| Variable | Description | |----------|-------------| | EVM_PRIVATE_KEY | Base wallet private key (0x...) — for tip, hire, and gig create | | SVM_PRIVATE_KEY | Solana wallet private key (base58) — for tip, hire, and gig create | | MOLTY_IDENTITY_TOKEN | Identity token (required for hire and all gig commands) |

Wallet keys are only needed for commands that move money (tip, hire, gig create). Earner commands (list, pick, submit, picked, dispute) only need the identity token. If only one wallet key is set, that network is used automatically. If both are set, use --network.

Links

License

MIT