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

@cryptopulse/sdk

v2.0.1

Published

Official TypeScript SDK for the CryptoPulse API — real-time whale tracking across 34+ EVM chains

Readme

CryptoPulse SDK

Official TypeScript/JavaScript SDK for the CryptoPulse API — real-time whale tracking across 34+ EVM chains.

npm License: MIT

Install

npm install @cryptopulse/sdk

Quick Start

import CryptoPulse from '@cryptopulse/sdk';

const cp = new CryptoPulse({ apiKey: 'your-api-key' });

// Get whale movements
const whales = await cp.getWhales({ chain: 'ethereum', period: '24h', limit: 20 });
console.log(whales.transactions);

// Look up a wallet
const wallet = await cp.getWallet('0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045');
console.log(wallet.label, wallet.smartMoneyScore);

API Coverage

| Method | Endpoint | Description | |--------|----------|-------------| | getWhales(params?) | GET /api/whales | Whale movements (chain, period, limit filters) | | getWallet(address, params?) | GET /api/wallet/:address | Wallet lookup with multichain support | | getChains() | GET /api/chains | List all 34+ supported chains | | getMarket() | GET /api/market | Market overview (cap, volume, fear/greed) | | getDex(params?) | GET /api/dex | DEX swaps and trending tokens | | roastWallet(address) | POST /api/roast | AI-powered wallet roast with degen score | | narrateWallet(address) | POST /api/narrator | AI plain-English wallet summary | | getSmartMoney(address) | GET /api/smart-money | Smart money scoring (0-100) | | getBotStatus() | GET /api/bot/status | Self-evolving trading bot performance | | getBotSignals() | GET /api/bot/signals | Live trading signals (Trader+ plans) | | getApiKeys() | GET /api/keys | List your API keys | | createApiKey(name) | POST /api/keys | Create new API key | | getGiveaway() | GET /api/giveaway | Current giveaway status | | enterGiveaway(wallet) | POST /api/giveaway | Enter a giveaway | | getReferral() | GET /api/referral | Referral stats and link |

Examples

Whale Tracking

const cp = new CryptoPulse({ apiKey: 'your-key' });

// All chains, last hour
const recent = await cp.getWhales({ period: '1h' });

// Polygon only, last 7 days
const polygon = await cp.getWhales({ chain: 'polygon', period: '7d', limit: 50 });

for (const tx of polygon.transactions) {
  console.log(`${tx.type.toUpperCase()} ${tx.value} ${tx.tokenSymbol} ($${tx.valueUSD})`);
  console.log(`  ${tx.fromLabel || tx.from} → ${tx.toLabel || tx.to}`);
}

Multichain Wallet Scan

const wallet = await cp.getWallet('0x...', { multichain: true });
console.log(`Active on ${wallet.chains.length} chains`);
console.log(`Smart Money Score: ${wallet.smartMoneyScore}/100`);
console.log(`Top interactions:`, wallet.connections.topInteractions);

DEX Intelligence

// Recent swaps
const swaps = await cp.getDex({ mode: 'swaps', chain: 'ethereum', period: '24h' });

// Trending tokens by whale activity
const trending = await cp.getDex({ mode: 'trending', period: '7d' });

Trading Bot Signals

// Public performance (no key needed)
const status = await cp.getBotStatus();
console.log(`Bot ${status.version}: +${status.performance.totalPnlPct}% P&L`);

// Live signals (requires Trader+ API key)
const signals = await cp.getBotSignals();
for (const sig of signals.signals) {
  console.log(`${sig.direction} ${sig.pair} @ $${sig.entryPrice} (${sig.confidence}% confidence)`);
}

AI Features

// Roast a wallet
const roast = await cp.roastWallet('0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045');
console.log(`Score: ${roast.score}/100 — ${roast.title}`);
console.log(roast.roast);

// AI Narrator
const narrative = await cp.narrateWallet('0x...');
console.log(narrative.narrative);

Configuration

const cp = new CryptoPulse({
  apiKey: 'your-api-key',       // Required for rate-limited/paid endpoints
  baseUrl: 'https://cryptopulse.uno', // Default
  timeout: 15000,               // Request timeout in ms (default: 15s)
});

Pricing & Rate Limits

| Plan | Price | Lookups/day | Signals | API Access | |------|-------|------------|---------|------------| | Free | $0 | 10 | Direction only (1h delay) | Read-only | | Pro | $19/mo | Unlimited | Full, real-time | Full | | Trader | $49/mo | Unlimited | Full + push alerts | Full | | API | $99/mo | Unlimited | Full + webhooks + historical | Full |

Get your API key at cryptopulse.uno/pricing

Links

License

MIT