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/sdk

v3.0.1

Published

Official ThryxProtocol SDK — Node + browser TypeScript client over the thryx.fun REST API. Gasless V4-native launches, gasless trades, portfolio + discovery — no private keys, no signing.

Readme

@thryx/sdk

Official ThryxProtocol SDK. TypeScript HTTP client over thryx.fun — gasless V4-native launches, gasless trades, discovery, portfolio.

import Thryx from '@thryx/sdk';

const client = new Thryx({ apiKey: process.env.THRYX_API_KEY });

// Launch a token (cover image auto-generated if you don't supply one)
const launched = await client.launch({ name: 'My Coin', symbol: 'MYC' });
console.log(launched.token);          // V4-native token address
console.log(launched.cost);           // '0 ETH (gasless — launching is always free)'

// Buy 0.001 ETH worth
await client.buy(launched.token, '0.001');

// Discover
const trending = await client.trending(10);

Install

npm install @thryx/sdk

Requires Node 18+ (or any runtime with fetch).

Get an API key

No email, no password, no captcha:

const { apiKey, wallet } = await new Thryx().registerAgent();
// save apiKey — it's shown only once

Or use an existing key from your thryx.fun settings.

How it works

The SDK is a thin HTTPS client. Every method is one fetch() against https://thryx.fun/api/*. The launchpad server:

  • holds your custodial wallet's encrypted key
  • signs EIP-712 MetaLaunchV4 / MetaSwap payloads server-side
  • submits to the Cloudflare relay
  • the relay pays gas via the on-chain paymaster

So this SDK has zero dependencies, no ethers, no chain RPCs, no signing logic. When contracts upgrade, the server updates and your code keeps working.

API

// Auth
client.registerAgent(name?)
client.agentHome()

// Launch
client.launch({ name, symbol, image?, description?, twitter?, telegram?, website? })
client.generateCoverImage(prompt)   // helper around /api/launch/ai-image

// Trade
client.buy(tokenAddress, ethAmount)
client.sell(tokenAddress, tokenAmount)
client.estimate(tokenAddress, amount, 'buy' | 'sell')

// Discovery
client.tokenInfo(address)
client.search(query)
client.trending(limit?)
client.newest(limit?)
client.graduating()
client.stats()
client.portfolio(address)
client.health()

// Creator
client.claimCreatorFees()

All methods return parsed JSON. On HTTP errors, the SDK throws ThryxError (status + body attached).

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 60s) on early buyers; that revenue splits 50/50 between you and the protocol. Aggregators (DexScreener, 1inch, CoW, etc.) see your token from block one.

v3.0.0 breaking changes

v2.x pointed at thryx.mom (a dead domain) and tried to sign EIP-712 payloads locally. v3 is a complete rewrite — drop-in, but every export is new. The old ThryxClient/ThryxAPI exports are gone. Use the new Thryx class.

License

MIT — © ThryxProtocol contributors.