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

@mint.club/v2-sdk

v2.0.0

Published

TypeScript SDK for creating, trading, and managing assets on the Mint Club V2 bonding curve protocol.

Readme


What is Mint Club V2?

Mint Club V2 is a permissionless bonding curve protocol. Launch tokens backed by any reserve asset (HUNT, ETH, USDC, …) with automated pricing — no liquidity pool required. The protocol handles minting, burning, and price discovery through audited smart contracts.

This SDK is the canonical TypeScript client for the protocol. Use it from Node.js, browsers, or any JavaScript runtime.

→ Full docs: sdk.mint.club


Install

Version 2 moved the SDK from mint.club-v2-sdk to the official Mint Club scope. Use @mint.club/v2-sdk for all new installations.

npm install @mint.club/v2-sdk
# or
yarn add @mint.club/v2-sdk
# or
bun add @mint.club/v2-sdk

Quick Start

import { mintclub } from '@mint.club/v2-sdk';

// Read token state without connecting a wallet.
const signet = mintclub.network('base').token('SIGNET');
const [details, nextMintPrice] = await Promise.all([
  signet.getDetail(),
  signet.getPriceForNextMint(),
]);

// Resolve the current USD price and its quote path.
const { usdRate, path } = await mintclub.network('base').token('HUNT').getUsdRate();

For trusted Node.js environments, configure a private key after selecting the network. Never expose a private key in browser code.

import { mintclub, wei } from '@mint.club/v2-sdk';

const serverToken = mintclub
  .network('base')
  .withPrivateKey(process.env.PRIVATE_KEY as `0x${string}`)
  .token('SIGNET');

const serverAmount = wei(100, await serverToken.getDecimals());
await serverToken.buy({ amount: serverAmount, slippage: 1 });

Browser applications should pass a viem wallet client from their wallet integration to mintclub.withWalletClient(). See the getting started guide for a complete example.


Features

| | | |---|---| | Bonding curves | Create, buy, sell, estimate, and inspect ERC-20 and ERC-1155 assets | | Wallet integration | Use viem wallet clients, injected wallets, or a server-side private key | | Airdrops | Create and claim Merkle airdrops with IPFS-backed allowlists | | Lockups and staking | Create token lockups and interact with staking pools | | Wrapped-native Zap | Buy with or sell to the native asset when the reserve is its wrapped token | | USD pricing | Resolve token prices through bonding curves and supported price providers | | IPFS and metadata | Upload and resolve asset metadata and airdrop lists |

Supported Networks

The SDK accepts a chain ID or the lowercase network key shown below.

| Environment | Network keys | |---|---| | Mainnet | ethereum, base, blast, optimism, arbitrum, polygon, bnbchain, avalanche, kaia, cyber, degen, ham, shibarium, unichain, zora, apechain, hashkey, robinhood, over | | Testnet | sepolia, basesepolia, blastsepolia, avalanchefuji, cybertestnet, puppynet |

Contract availability differs by feature and network. Use getMintClubContractAddress() or the contract repository when you need a specific deployment.


Development

npm install
npm run typecheck
npm test
npm run build

Integration tests that require credentials (PRIVATE_KEY, FILEBASE_API_KEY) are auto-skipped when the env var is not set.


Links

| | | |---|---| | App | mint.club | | SDK docs | sdk.mint.club | | Protocol docs | docs.mint.club | | Contracts | Steemhunt/mint.club-v2-contract | | CLI and MCP | Steemhunt/mint.club-v2-ai | | Community | OnChat | | X / Twitter | @MintClubPro |

License

BSD-3-Clause — built with 🏗️ by Hunt Town