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

@ottocode/openclaw-setu

v0.1.11

Published

Setu provider for OpenClaw — pay for AI with Solana USDC. No API keys, just a wallet.

Downloads

1,170

Readme

@ottocode/openclaw-setu

Setu provider plugin for OpenClaw — pay for AI with Solana USDC.

No API keys. No accounts. Just a Solana wallet with USDC.

How It Works

OpenClaw → localhost:8403 (Setu proxy) → api.setu.ottocode.io → LLM provider
  1. Auto-generates a Solana wallet (or import your own)
  2. Fund the wallet with USDC on Solana
  3. Each LLM request is signed with your wallet — payment IS authentication
  4. Access 30+ models across Anthropic, OpenAI, Google, DeepSeek, and more

Quick Start

No project installation needed — this is a global tool.

# Option 1: Zero-install with bunx (recommended)
bunx @ottocode/openclaw-setu setup

# Option 2: Global install
bun install -g @ottocode/openclaw-setu
openclaw-setu setup
# Fund your wallet with USDC on Solana (address shown during setup)

# Start the proxy
bunx @ottocode/openclaw-setu start

# Restart OpenClaw
openclaw gateway restart

CLI Commands

openclaw-setu setup              Interactive setup (wallet + config)
openclaw-setu start              Start the local proxy server

openclaw-setu wallet generate    Generate a new Solana wallet
openclaw-setu wallet import      Import an existing private key
openclaw-setu wallet export      Export your private key
openclaw-setu wallet info        Show wallet address and balances

openclaw-setu config inject      Inject Setu provider into openclaw.json
openclaw-setu config remove      Remove Setu provider from openclaw.json
openclaw-setu config status      Check if Setu is configured

All commands work with bunx @ottocode/openclaw-setu <command> (no install required).

As an OpenClaw Plugin

If OpenClaw loads the plugin automatically (via openclaw.extensions in package.json), Setu registers:

  • Provider: setu — appears in OpenClaw's auth wizard
  • Service: setu-proxy — auto-starts the local proxy with the gateway
  • Commands: /wallet (show balances), /setu-status (check config)

Wallet Storage

  • Private key: ~/.openclaw/setu/wallet.key (mode 0600)
  • OpenClaw config: ~/.openclaw/openclaw.json

Environment Variables

  • SETU_PROXY_PORT — Proxy port (default: 8403)
  • SETU_PRIVATE_KEY — Alternative to wallet file

How is this different from ClawRouter?

| | Setu | ClawRouter | |---|---|---| | Chain | Solana | Base (EVM) | | Token | USDC (SPL) | USDC (ERC-20) | | Protocol | Solana wallet signatures | x402 / EIP-712 | | Proxy port | 8403 | 8402 |

Both achieve the same goal: pay-per-token AI with no API keys. Choose based on which chain you prefer.