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

@octopurr/sdk

v1.1.1

Published

Octopurr SDK — TypeScript SDK for PancakeSwap V3 Token Launchpad on BSC

Readme

@octopurr/sdk

TypeScript SDK for Octopurr — Token & Agent Launchpad on BNB Chain.

Deploy tokens, deploy agentbound tokens (ERC-8004), trade, and claim fees — all on-chain via PancakeSwap.

Install

npm install @octopurr/sdk viem

AI Agents

Read the skill file for complete implementation guide:

📄 octopurr.com/skill.md

The skill file contains all parameters, required steps (deploy → register → set wallet), code examples, and claim flows. Use it as the primary reference.

Quick Start

import { createPublicClient, createWalletClient, http } from 'viem';
import { bsc } from 'viem/chains';
import { privateKeyToAccount } from 'viem/accounts';
import { core } from '@octopurr/sdk';

const account = privateKeyToAccount('0x...');
const publicClient = createPublicClient({ chain: bsc, transport: http() });
const walletClient = createWalletClient({ chain: bsc, transport: http(), account });

// Deploy a token (Step 1 of 2 — must also register with API)
const result = await core.deployToken({
  token: { name: 'MyToken', symbol: 'MTK' },
  marketCapBNB: 30,
  recipients: [{ address: account.address, bps: 10_000 }],
  chainId: 56,
}, publicClient, walletClient);

API Reference

| Function | Description | |----------|-------------| | core.deployToken(params, pub, wallet) | Deploy BEP-20 + PancakeSwap pool | | core.registerToken(apiUrl, data) | Register deployed token with API (required) | | deployAgentboundToken(params, pub, wallet, chainId) | Atomic agent + token deploy (ERC-8004) | | registerAgentWithToken(apiUrl, params) | Register agent + token with API (required) | | buildSetAgentWalletTypedData(agentId, wallet, owner, deadline, chainId) | Build EIP-712 typed data for setAgentWallet | | setAgentWallet(agentId, wallet, deadline, sig, pub, wallet, chainId) | Set agent wallet (required for fees) | | core.buyToken(params, pub, wallet) | Buy tokens with BNB | | core.sellToken(params, pub, wallet) | Sell tokens for BNB (auto Permit2) | | core.claimFees(tokenId, pub, wallet) | Collect LP fees | | claimAgentFees(agentId, tokenId, pub, wallet) | Claim agent fee share → agentWallet | | core.buildCreatorBuyExtension(bnb, params, chainId) | Build CreatorBuy extension | | core.buildVestingVaultExtension(bps, params, chainId) | Build VestingVault extension | | core.buildAirdropExtension(bps, params, chainId) | Build Airdrop extension | | getAgentInfo(agentId, pub, chainId) | Query agent on-chain | | getAgentFeeState(agentId, tokenId, pub, chainId) | Query agent fee state | | core.getPoolPrice(token, pub, chainId) | Get pool price | | core.getMarketCapBNB(token, pub, chainId) | Get market cap in BNB | | config.getChainConfig(chainId) | Chain addresses and constants |

Chains

| Network | Chain ID | |---------|----------| | BNB Chain Mainnet | 56 | | BNB Chain Testnet | 97 |

Links

License

MIT