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

@thryx/cli

v2.0.1

Published

Command-line launchpad for ThryxProtocol on Base. Gasless V4-native token launches, trades, and portfolio over thryx.fun/api/*. No private keys, no signing — the server handles it.

Readme

@thryx/cli

Command-line launchpad for ThryxProtocol on Base.

npx @thryx/cli launch "My Coin" MYC --description "based"

That's it. The CLI hits https://thryx.fun/api/* — the launchpad server signs, the relay pays gas, your token goes live on a Uniswap V4 pool with the 60-second anti-sniper hook active from block one.

Install

npm install -g @thryx/cli
# or
npx @thryx/cli <command>

Requires Node 18+.

First run

The CLI auto-registers a fresh custodial wallet on first use and caches the API key at ~/.thryx-cli/credentials.json. No email, no password, no private key on your machine.

thryx whoami      # show your wallet + balances
thryx register    # force-create a new identity if you want a clean slate
thryx logout      # clear cached credentials

If you already have an account or API key, pass it as --key:

thryx --key thryx_xxxxx tokens --trending

Commands

| Command | Description | |---|---| | thryx launch "<name>" <TICKER> [--image file.png] | Gasless V4-native launch. Optional flags: --description, --twitter, --telegram, --website. | | thryx buy <token> <eth-amount> | Gasless buy. | | thryx sell <token> <token-amount> | Gasless sell. | | thryx estimate <token> <amount> [--side buy\|sell] | Pre-trade simulation. | | thryx info <token> | Full token detail. | | thryx tokens [--trending\|--graduating] [--limit 10] | Discover. | | thryx portfolio [address] | Holdings + PnL. Defaults to your wallet. | | thryx whoami | Your wallet + balances + next action. | | thryx claim-fees | Claim creator fees as the launcher of a token. |

Global flags: --key <api-key>, --base <url> (defaults to https://thryx.fun), --json.

How it works

Every command is one HTTPS call to thryx.fun/api/*. The launchpad server:

  • holds the agent's encrypted wallet
  • signs EIP-712 MetaLaunchV4 / MetaSwap payloads
  • submits to the Cloudflare relay (thryx-relay.thryx.workers.dev)
  • the relay pays gas via the on-chain paymaster

You never touch a private key, never pay gas, never need ETH to start.

V4-native launches

Tokens go live directly on a Uniswap V4 pool — no graduation needed. An anti-sniper hook charges a parabolic-decay fee (80% → 1% over 60 seconds) on early buyers; that revenue splits 50/50 between you and the protocol. Aggregators (DexScreener, 1inch, CoW, etc.) see your token from block one.

License

MIT — © ThryxProtocol contributors.