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

@vohlsyr/plugin-chainscope

v0.3.1

Published

ElizaOS plugin for ChainScope: multi-chain wallet intelligence (Ethereum, Base, Arbitrum, Optimism, Polygon, Bitcoin, Solana) with OFAC sanctions screening, paid per call via x402 (USDC on Base).

Readme

@vohlsyr/plugin-chainscope

ElizaOS plugin for ChainScope -- multi-chain wallet and transaction intelligence across Ethereum, Base, Arbitrum, Optimism, Polygon, Bitcoin and Solana, with OFAC sanctions screening.

Paid per call via x402 -- USDC on Base, straight from the agent's own wallet. No API keys, no signup.

Actions

WALLET_SCAN

Native balance, token holdings, recent activity, USD value, and OFAC sanctions screening in one call. ~$0.03/call.

"scan this base wallet: 0x1f5f8474fA0dc1Fde79187abd68Ef8Ea15ADAe34"

TX_LOOKUP

Transaction status, from/to, value, fee, block, timestamp. ~$0.003/call.

"look up this base tx: 0x..."

Both actions require the chain to be named explicitly in the message (an 0x... address alone is ambiguous across 5 of the 7 supported chains) -- extractChain()/extractAddress() in src/util.ts are intentionally conservative rather than guessing.

Setup

npm install @vohlsyr/plugin-chainscope

Add to your character/project's plugin list, and set one secret:

EVM_PRIVATE_KEY=0x...   # a wallet funded with a small amount of USDC on Base

This is the same setting name ElizaOS's own @elizaos/plugin-evm uses, so an agent that already has a funded wallet configured for other on-chain actions picks it up automatically -- no second key to manage.

How it works

  1. The action calls the real endpoint (e.g. POST /tools/wallet-scan).
  2. The server responds 402 Payment Required with the price and payment details.
  3. x402-fetch signs and attaches a payment using the agent's wallet, and retries the request.
  4. The server settles the payment and returns the real result.

Development

npm install
npm run typecheck
npm test        # vitest -- mocks the x402-fetch boundary, exercises real
                 # chain/address-extraction/request-building/formatting logic
npm run build

The plugin also bundles a zero-cost elizaos test case (chainscope plugin sanity) that pings the service's free /healthz endpoint -- no wallet or payment required for that one.

License

MIT