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

@warppay402/sdk

v1.1.11

Published

Official WarpPay402 TypeScript SDK: Enabling seamless pay-per-use AI tools across Base Mainnet, Solana, and Arbitrum One.

Readme

@warppay402/sdk

Official TypeScript SDK for WarpPay402—pay-per-use AI tools monetized via x402 USDC micropayments on Base Mainnet, Solana SPl (USDC), Arbituim One, and Arc mainnet.

📦 Installation

npm install @warppay402/sdk

🚀 Quickstart

import { WarpPayClient } from "@warppay402/sdk";

// Initialize with Base EVM, Solana L1, or both
const client = new WarpPayClient({
  privateKey: process.env.CUSTOMER_BASE_KEY as `0x${string}`,
  solanaPrivateKey: process.env.CUSTOMER_SOLANA_KEY,
});

async function main() {
  // 1. Scrape any URL into clean Markdown ($0.01 USDC)
  const page = await client.scrapeWeb("https://news.ycombinator.com");
  console.log("Title:", page.title);
  console.log("Markdown:", page.markdown);

  // 2. JS Browser Scraper ($0.05 USDC)
  const rendered = await client.browserScrape("https://example.com");
  console.log("Rendered Content:", rendered);

  // 3. Capture Full-Page Screenshot ($0.10 USDC)
  const screenshot = await client.renderScreenshot("https://example.com");
  console.log("Screenshot Data:", screenshot);

  // 4. Extract Structured JSON Data ($0.15 USDC)
  const extracted = await client.extractJson("https://news.ycombinator.com", {
    title: "string",
    topStories: "array",
  });
  console.log("Extracted Data:", extracted);

  // 5. Fetch Base Wallet Analytics ($0.02 USDC)
  const analytics = await client.getBaseAnalytics("0x556c77792642E8ff95eC930FFb8D46a76579126E");
  console.log("ETH Balance:", analytics.ethBalance);

  // 6. Extract PDF Text Preview ($0.05 USDC)
  const pdf = await client.extractPdf("https://example.com/document.pdf");
  console.log("Preview:", pdf.textPreview);
}

main();

🛠️ Available Methods & Pricing

  • getPublicDataFeed(filename) — $0.0001 USDC — Retrieves signed attestation JSON payloads.
  • getDataFeed(feedId) — $0.001 USDC — Fetches pre-scraped market and protocol intelligence feeds.
  • scrapeWeb(url) — $0.001 USDC — Extracts clean Markdown from web pages.
  • getBaseAnalytics(address) — $0.002 USDC — Fetches ETH balance and nonce stats.
  • getAerodromeYields() — $0.003 USDC — Top live Aerodrome pool yields and APYs on Base.
  • browserScrape(url) — $0.005 USDC — Unblockable JS browser scraping via proxy workers.
  • extractPdf(pdfUrl) — $0.005 USDC — Parses text preview from public PDF URLs.
  • renderScreenshot(url) — $0.01 USDC — Renders target URL and returns full-page screenshot data.
  • extractJson(url, schema?) — $0.01 USDC — Parses web pages into structured JSON data.
  • executeAerodromeSwap(params) — $0.01 USDC — Executes token swaps via Aerodrome Router on Base.
  • manageAerodromeClamm(params) — $0.01 USDC — Concentrated liquidity LP management on Aerodrome Slipstream.
  • manageAerodromeVeaero(params) — $0.01 USDC — $AERO locking, gauge voting, and bribe reward harvesting.
  • verifySmartContract(address) — $0.02 USDC — Source code analysis, ABI fetching, and proxy validation.
  • deployBaseContract(contractType) — $5.00 USDC — Programmatically deploys custom smart contracts to Base Mainnet.
  • deploySolanaContract(type, params) — $5.00 USDC — Initializes SPL Escrows, cNFTs, or Raydium Vaults on Solana.

🛠️ LangChain Integration

import { WarpPayClient, createWarpPayLangChainTools } from "@warppay402/sdk";

const client = new WarpPayClient({
  privateKey: process.env.CUSTOMER_PRIVATE_KEY as `0x${string}`,
});

// Pass directly into your LangChain or AutoGen agent setup
const tools = createWarpPayLangChainTools(client);

🌐 API Gateway & Specs