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

@skyemeta/access

v0.1.3

Published

Add wallet-token authentication to your API without disturbing existing API-key customers. Either-or middleware: API-key requests pass through unchanged; wallet-signed requests are verified via InsumerAPI's /v1/attest. Free, MIT, BYO InsumerAPI key.

Readme

@skyemeta/access

Add wallet-token authentication to your API without disturbing existing API-key customers.

npm install @skyemeta/access

What it does

You run an API. Today your customers authenticate with an API key. But AI agents already have wallets — they'd rather authenticate the same way they do everything else: by signing with their wallet.

@skyemeta/access is an either-or middleware:

  • X-API-Key header present → your existing handler runs, untouched. Zero overhead.
  • Authorization: Wallet ... header present → SDK verifies the SIWE signature, then asks InsumerAPI's /v1/attest whether the wallet still holds a valid token from the configured collection. Yes → request passes. No → 401.
  • Neither → 401.

Your humans keep their keys. Your agents use the wallet they were going to carry anyway. Both work on the same routes.

Quick start

import express from 'express';
import { Access } from '@skyemeta/access';

const access = new Access({
  insumerApiKey: process.env.INSUMER_API_KEY!,
  siweDomain: 'api.yourservice.com',
  collections: {
    default: { address: process.env.ACCESS_COLLECTION!, chain: 'base' },
  },
});

const app = express();

app.post(
  '/api/v1/whatever',
  access.requireValidPassOrApiKey(yourApiKeyMiddleware),
  handler,
);

siweDomain is required and must match what your wallet clients put in their SIWE message domain field. Set it explicitly to the host your API serves SIWE messages for — don't rely on request-host inference behind reverse proxies.

Adopters also bring their own NFT/SBT collection — any ERC-721 works. We used RNWY: the trust intelligence layer for autonomous AI agents — RNWY's audited ERC-5192 factory on Base provides the soulbound issuance substrate for the InsumerAccess collection that backs InsumerAPI's own customers. Other options: Thirdweb, Crossmint, or your own contract. See Get an InsumerAPI key below for the key acquisition step.

Get an InsumerAPI key

The SDK calls /v1/attest on your behalf, so you need an InsumerAPI key in INSUMER_API_KEY.

Wallet-native (recommended for agent infrastructure):

Send USDC or USDT to the InsumerAPI platform wallet on any supported chain, then POST the transaction hash. The sender wallet becomes the account's identity — no email, no signup form.

This SDK needs a string key in INSUMER_API_KEY to call /v1/attest from your server, so pass "keyDelivery": "apiKey" to receive one in the response. The endpoint's default is "wallet", which delivers only the on-chain access pass with no string key — that path is for agents calling /v1/attest directly from their own runtime, not for the SDK use case.

curl -X POST https://api.insumermodel.com/v1/keys/buy \
  -H "Content-Type: application/json" \
  -d '{"txHash":"0x…","chainId":8453,"amount":5,"appName":"my-agent","keyDelivery":"apiKey"}'

Response (illustrative — key shown only once, store it):

{
  "ok": true,
  "data": {
    "success": true,
    "key": "insr_live_...",
    "authMethod": "apiKey",
    "registeredWallet": "0x...",
    "totalCredits": 125
  }
}

On EVM payments the response also carries a passMint block indicating that a non-transferable Insumer Access pass was minted to the sender wallet. The wallet can then use signed-message auth (Authorization: Wallet) on /v1/attest and /v1/credits/buy directly — handy for top-ups from an agent runtime that prefers signing over carrying the key.

The envelope also includes name, tier, dailyLimit, creditsAdded, usdcPaid/btcPaid, effectiveRate, chainName, authHint, and a top-level meta block — see the OpenAPI spec for the full schema.

Solana (USDC/USDT), Bitcoin (native BTC), and Tron (USDT-TRC20) are also supported via the same endpoint — see /v1/keys/buy in the OpenAPI spec for the platform wallet addresses per chain and the full request schema. Minimum purchase is $5 (or BTC equivalent). Volume discount tiers: $5–$99 buys 25 credits/$1, $100–$499 buys 33 credits/$1, $500+ buys 50 credits/$1.

Human signup (free tier) — no signup, no dashboard, no password:

If you're a human developer and want to try before paying, enter your email at insumermodel.com and the form issues a free key (10 attestation credits, 100 requests/day, no card) inline in about 10 seconds. No account is created — the key is the credential.

Already have a key? Manage usage, top up, or upgrade at insumermodel.com/developers/account/.

What's in scope (v0.1.x)

The SDK's requireValidPassOrApiKey and requireValidPass middleware check NFT ownership on EVM chains (nft_ownership condition against any of the 31 EVM chains InsumerAPI supports — Ethereum, Base, Optimism, Arbitrum, Polygon, etc.). Non-EVM chains (Solana, XRPL, Bitcoin, Tron, Stellar, Sui) and richer condition types (token_balance, eas_attestation, farcaster_id, compound stacks) are reachable via direct calls to InsumerAPI's /v1/attest — the SDK's middleware stays focused on the common case.

Pricing

The SDK is free and MIT-licensed. Each wallet-signed request hits InsumerAPI's /v1/attest once per cacheTtlMs window per (wallet, collection); cached results inside that window skip the upstream call. With the default cacheTtlMs: 2000, a wallet sending five requests in a second triggers one attest call. Adopters running high-throughput or revocation-sensitive flows can shrink the cache or set cacheTtlMs: 0 to disable it. API-key requests never touch InsumerAPI.

When /v1/attest is unreachable, the SDK falls back to its most recent cached result if available and no more than 60 seconds past expiry (MAX_STALE_FALLBACK_MS). Beyond that window it fails closed with a 503. Adopters who need stricter revocation propagation can set cacheTtlMs: 0 to opt out of cache + grace entirely.

Distributed by

Skye Meta Corp. — wrapper layer over InsumerAPI (the wallet-auth primitive: condition-based access, ECDSA-signed booleans, JWKS-verifiable, 37 chains).

License

MIT