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

@crossmint/openclaw

v0.2.1

Published

OpenClaw plugin for Solana wallet integration with Crossmint smart wallets

Readme

Crossmint Wallet Plugin

Solana wallet integration for OpenClaw agents using Crossmint smart wallets with delegated signing.

Overview

This plugin enables OpenClaw agents to:

  • Generate and manage local Solana signing keys (ed25519)
  • Use Crossmint smart wallets on Solana
  • Check wallet balances (SOL, USDC, SPL tokens)
  • Send tokens to other addresses

The key innovation is delegated signing: the agent holds its own private key locally, and users authorize the agent to operate their Crossmint wallet through a web-based delegation flow.

Installation

openclaw plugins install @crossmint/openclaw

Configuration

Enable the plugin in ~/.openclaw/.openclaw.json5:

{
  plugins: {
    entries: {
      "crossmint": {
        enabled: true
      }
    }
  }
}

Note: Currently only Solana devnet (staging) is supported. Mainnet support coming soon.

Usage

Setting Up a Wallet (2-Step Process)

Step 1: Generate keypair and get delegation URL

Ask the agent: "Set up my Crossmint wallet"

The agent will:

  1. Generate a local Solana keypair (ed25519)
  2. Provide a URL with the public key for delegation setup

Step 2: Complete setup on the web app

  1. Open the delegation URL in your browser
  2. The web app will:
    • Create a Crossmint smart wallet
    • Add the agent's public key as a delegated signer
    • Show you the wallet address and API key

Step 3: Configure the agent

Tell the agent: "Configure my wallet with address X and API key Y"

The agent will use crossmint_configure to save these credentials securely.

Checking Balance

Ask the agent: "What's my wallet balance?"

Sending Tokens

Ask the agent: "Send 10 USDC to "

The agent will:

  1. Confirm the recipient and amount
  2. Sign the transaction locally using ed25519
  3. Submit to Crossmint for execution on Solana

Tools

| Tool | Description | |------|-------------| | crossmint_setup | Generate Solana keypair and get delegation URL | | crossmint_configure | Save wallet address and API key from web app | | crossmint_balance | Check wallet balances (SOL, USDC, SPL tokens) | | crossmint_send | Send tokens to another Solana address | | crossmint_wallet_info | Get detailed wallet information | | crossmint_tx_status | Check transaction status | | crossmint_buy | Buy products from Amazon with SOL or USDC | | crossmint_order_status | Check Amazon order/delivery status |

Architecture

┌─────────────────────────────────────────────────────────────┐
│                        OpenClaw Agent                        │
├─────────────────────────────────────────────────────────────┤
│  Local Solana Keypair (ed25519)                             │
│  - Private key stored at ~/.openclaw/crossmint-wallets/     │
│  - Signs transaction approvals locally                      │
│  - Wallet address + API key stored after web setup          │
└────────────────────────┬────────────────────────────────────┘
                         │
                         ▼
┌─────────────────────────────────────────────────────────────┐
│                  Delegation Web App (external)               │
├─────────────────────────────────────────────────────────────┤
│  - Receives agent's public key via URL                      │
│  - Creates Crossmint smart wallet                           │
│  - Adds agent as delegated signer                           │
│  - Returns wallet address + API key to user                 │
└────────────────────────┬────────────────────────────────────┘
                         │
                         ▼
┌─────────────────────────────────────────────────────────────┐
│                    Crossmint Smart Wallet                    │
├─────────────────────────────────────────────────────────────┤
│  - Deployed on Solana                                       │
│  - Agent's address registered as delegated signer           │
│  - User retains admin control                               │
└─────────────────────────────────────────────────────────────┘

Security

  • Private keys are stored locally on the agent's machine with secure file permissions
  • Keys are never transmitted to Crossmint
  • Uses ed25519 cryptography (Solana native)
  • API key is stored locally after user retrieves it from web app
  • Users maintain admin control and can revoke delegation at any time
  • The agent can only perform actions explicitly authorized through delegation

Troubleshooting

"No wallet found for agent"

  • Run crossmint_setup first to generate a keypair

"Wallet not fully configured"

  • Complete the web setup flow and run crossmint_configure with wallet address and API key

"Failed to get balance" or "Failed to send"

  • Verify the API key is correct
  • Check that the wallet address matches the one shown in the web app
  • Ensure the wallet has sufficient balance

Plugin Management

# List all plugins
openclaw plugins list

# Check plugin info
openclaw plugins info crossmint

# Enable/disable
openclaw plugins enable crossmint
openclaw plugins disable crossmint