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

x402-safe

v0.1.0

Published

Verify a counterparty before you pay it on x402. 78% of x402 recipients are unverifiable ghosts; this checks AgentRank before your client settles.

Readme

x402-safe

Verify a counterparty before you pay it on x402.

78% of everything paid on x402 is an unverifiable ghost — a wallet exactly one other wallet has ever paid. Your agent is about to send real USDC to one of them. x402-safe checks AgentRank at the moment a server answers 402, and blocks the payment if the recipient is not a real, settlement-backed agent.

It is zero-dependency and client-agnostic: you keep your x402 payment library, x402-safe just gates it.

Install

npm install x402-safe

Use

import { safeFetch } from "x402-safe";

// your existing x402 payment executor (x402-fetch, x402-axios, your own)
const pay = (paymentRequirements) => x402Pay(url, paymentRequirements);

const res = await safeFetch(url, {}, {
  pay,
  policy: "block-ghosts",            // block unverified recipients (default)
  onCheck: ({ payTo, trust, decision }) =>
    console.log(`${payTo}: ${trust.verdict} -> ${decision.allow ? "pay" : "BLOCKED"}`),
});

If the recipient is a ghost/sybil, safeFetch throws X402_SAFE_BLOCKED instead of paying.

Policies

  • block-ghosts (default) — pay only verified, settlement-backed recipients; block unverified.
  • block-unknown — also block when AgentRank can't be reached.
  • warn — pay anyway, but surface the verdict via onCheck.
  • allow — never block (telemetry only).

Just the check

import { checkAgentTrust } from "x402-safe";

const t = await checkAgentTrust("blockrun.ai");   // wallet or domain
// { verified: true, score: 870, settlement: { usd: 1026, payers: 37, substrate: "x402" }, verdict: "..." }

How the verdict works

AgentRank ranks agents by real on-chain settlement weighted by payer reputation (PageRank on the USDC payment graph, de-noised, sybil-tested). A recipient is verified only if it has actually settled value that traces back to reputable payers. Sybils and ghosts score ~0 because you cannot fake real settlement. Method: https://github.com/andysalvo/agentrank.

Also available

  • MCP tool — the same check as check_agent_trust over MCP: https://api.agentrank.info/mcp.
  • Badgehttps://api.agentrank.info/badge/{wallet|domain}.svg.

MIT. Built by Crest Deployment Systems LLC.