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

@claw401/sdk

v0.1.0

Published

TypeScript SDK for the Claw401 wallet authentication protocol

Downloads

9

Readme

@claw401/sdk

TypeScript SDK for the Claw401 X401 wallet authentication protocol.

Install

npm install @claw401/sdk
# or
pnpm add @claw401/sdk

Overview

Claw401 is a deterministic wallet authentication protocol for Solana. This SDK implements:

  • Challenge-response authentication (X401 standard)
  • Domain-scoped session issuance
  • Signed capability proofs
  • Agent attestation for autonomous systems

Usage

Server-side: Generate a challenge

import { generateChallenge, verifySignature, InMemoryNonceCache } from "@claw401/sdk";

const nonceCache = new InMemoryNonceCache();

// Generate a challenge to send to the client
const challenge = generateChallenge({ domain: "app.example.com" });
// Send challenge to client...

Client-side: Sign the challenge

import { challengeSigningBytes, encodeSignature } from "@claw401/sdk";
import { sign } from "@solana/web3.js";

// wallet.signMessage signs raw bytes with the wallet's Ed25519 key
const payload = challengeSigningBytes(challenge);
const signature = await wallet.signMessage(payload);

const signedChallenge = {
  challenge,
  signature: encodeSignature(signature),
  publicKey: wallet.publicKey.toBase58(),
};

Server-side: Verify and create a session

import { verifySignature, createSession, verifySession } from "@claw401/sdk";

const result = verifySignature({
  signedChallenge,
  expectedDomain: "app.example.com",
  nonceCache,
});

if (!result.valid) {
  throw new Error(result.reason);
}

const session = await createSession({
  publicKey: result.publicKey!,
  domain: "app.example.com",
  nonce: signedChallenge.challenge.nonce,
  options: { scopes: ["read", "write"] },
});

Agent attestation

import { createAgentAttestation, verifyAgentAttestation } from "@claw401/sdk";

// Operator creates attestation for an agent
const attestation = await createAgentAttestation({
  agentKey: agentPublicKey,
  operatorKey: operatorPublicKey,
  operatorSecretKey: operatorKeypair.secretKey,
  agentId: "my-agent-001",
  capabilities: {
    actions: ["read:orders", "submit:transaction"],
    mcpTools: ["get_balance", "transfer"],
  },
  ttlMs: 24 * 60 * 60 * 1000, // 24 hours
});

// Downstream service verifies the attestation
const result = verifyAgentAttestation({
  attestation,
  expectedOperatorKey: knownOperatorPublicKey,
});

API Reference

auth

  • generateChallenge(options) — Generate a domain-scoped challenge
  • verifySignature(options) — Verify a signed challenge
  • challengeSigningBytes(challenge) — Get canonical bytes for client signing
  • encodeSignature(bytes) — Base64-encode a signature
  • InMemoryNonceCache — In-memory nonce replay cache (dev/testing only)

session

  • createSession(input) — Create a session after successful verification
  • verifySession(options) — Verify a session's validity and scope
  • serializeSession(session) — Serialize session to JSON
  • deserializeSession(raw) — Deserialize session from JSON

proof

  • signProof(options) — Sign a capability or identity proof
  • verifyProof(options) — Verify a signed proof

agent

  • createAgentAttestation(options) — Create an operator-signed agent attestation
  • verifyAgentAttestation(options) — Verify an agent attestation
  • serializeAttestation(attestation) — Serialize for MCP context header
  • deserializeAttestation(encoded) — Deserialize from MCP context header

Security Notes

  • Private keys are never stored or transmitted by this SDK
  • All signatures use Ed25519 via TweetNaCl
  • Nonce replay protection requires an external cache in distributed deployments
  • Challenges are domain-bound — cross-domain replay attacks are rejected
  • All signing payloads are canonicalized (sorted JSON keys) for determinism

License

Apache-2.0