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

@open-wallet-standard/core

v1.1.2

Published

Node.js native bindings for the Open Wallet Standard

Downloads

5,406

Readme

@open-wallet-standard/core

Local, policy-gated signing and wallet management for every chain.

npm License: MIT

Why OWS

  • Local key custody. Private keys stay encrypted at rest and are decrypted only inside the OWS signing path after the relevant checks pass. Current implementations harden in-process memory handling and wipe key material after use.
  • Every chain, one interface. EVM, Solana, Sui, Bitcoin, Cosmos, Tron, TON, Spark, Filecoin — all first-class. CAIP-2/CAIP-10 addressing abstracts away chain-specific details.
  • Policy before signing. A pre-signing policy engine gates agent (API key) operations before decryption — chain allowlists, expiry, and optional custom executables.
  • Built for agents. Native SDK and CLI today. A wallet created by one tool works in every other.

Install

npm install @open-wallet-standard/core    # Node.js SDK
npm install -g @open-wallet-standard/core # Node.js SDK + CLI (provides `ows` command)

The package is fully self-contained — it embeds the Rust core via native FFI. Installing globally with -g also provides the ows CLI.

Quick Start

import { createWallet, signMessage } from "@open-wallet-standard/core";

const wallet = createWallet("agent-treasury");
// => accounts for EVM, Solana, Bitcoin, Cosmos, Tron, TON, Filecoin, and Sui

const sig = signMessage("agent-treasury", "evm", "hello");
console.log(sig.signature);

CLI

# Create a wallet (derives addresses for the current auto-derived chain set)
ows wallet create --name "agent-treasury"

# Sign a message
ows sign message --wallet agent-treasury --chain evm --message "hello"

# Sign a transaction
ows sign tx --wallet agent-treasury --chain evm --tx "deadbeef..."

Supported Chains

| Chain | Curve | Address Format | Derivation Path | |-------|-------|----------------|-----------------| | EVM (Ethereum, Polygon, etc.) | secp256k1 | EIP-55 checksummed | m/44'/60'/0'/0/0 | | Solana | Ed25519 | base58 | m/44'/501'/0'/0' | | Bitcoin | secp256k1 | BIP-84 bech32 | m/84'/0'/0'/0/0 | | Cosmos | secp256k1 | bech32 | m/44'/118'/0'/0/0 | | Tron | secp256k1 | base58check | m/44'/195'/0'/0/0 | | TON | Ed25519 | raw/bounceable | m/44'/607'/0' | | Sui | Ed25519 | 0x + BLAKE2b-256 hex | m/44'/784'/0'/0'/0' | | Spark (Bitcoin L2) | secp256k1 | spark: prefixed | m/84'/0'/0'/0/0 | | Filecoin | secp256k1 | f1 base32 | m/44'/461'/0'/0/0 |

CLI Reference

| Command | Description | |---------|-------------| | ows wallet create | Create a new wallet with addresses for all chains | | ows wallet list | List all wallets in the vault | | ows wallet info | Show vault path and supported chains | | ows sign message | Sign a message with chain-specific formatting | | ows sign tx | Sign a raw transaction | | ows pay request | Make a paid request to an x402-enabled API endpoint | | ows pay discover | Discover x402-enabled services | | ows fund deposit | Create a MoonPay deposit to fund a wallet with USDC | | ows fund balance | Check token balances for a wallet | | ows mnemonic generate | Generate a BIP-39 mnemonic phrase | | ows mnemonic derive | Derive an address from a mnemonic | | ows policy create | Register a policy from a JSON file | | ows policy list | List all registered policies | | ows key create | Create an API key for agent access | | ows key list | List all API keys | | ows key revoke | Revoke an API key | | ows update | Update ows and bindings | | ows uninstall | Remove ows from the system |

Architecture

Agent / CLI / App
       │
       │  OWS Interface (SDK / CLI)
       ▼
┌─────────────────────┐
│    Access Layer      │     1. Caller invokes sign()
│  ┌────────────────┐  │     2. Policy engine evaluates for API tokens
│  │ Policy Engine   │  │     3. Key decrypted in hardened memory
│  │ (pre-signing)   │  │     4. Transaction signed
│  └───────┬────────┘  │     5. Key wiped from memory
│  ┌───────▼────────┐  │     6. Signature returned
│  │  Signing Core   │  │
│  │   (in-process)  │  │     The OWS API never returns
│  └───────┬────────┘  │     raw private keys.
│  ┌───────▼────────┐  │
│  │  Wallet Vault   │  │
│  │ ~/.ows/wallets/ │  │
│  └────────────────┘  │
└─────────────────────┘

Documentation

The full spec and docs are available at openwallet.sh and in the GitHub repo.

License

MIT