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

@tuwaio/siwx-solana

v0.2.1

Published

Layer 2 (L2) of the TUWA Ecosystem. Solana adapter for @tuwaio/siwx. Signs and verifies CAIP-122 messages for Solana via gill and @wallet-standard using ed25519 cryptography.

Readme

@tuwaio/siwx-solana

NPM Version License

Solana adapter for @tuwaio/siwx (L2). Verifies CAIP-122 messages for Solana using native ed25519 cryptography via SubtleCrypto. Compatible with all Wallet Standard wallets.


🏛️ Core Capabilities

  • ed25519 Verification: Verifies Solana wallet signatures against CAIP-122 messages using the native SubtleCrypto API (no native module dependencies).
  • Extracts and validates Solana addresses from CAIP-10 strings using gill.
  • Compatible with Node.js (v19+), browsers, and Edge runtimes (Cloudflare Workers, Vercel Edge).

💾 Installation

pnpm add @tuwaio/siwx-solana @tuwaio/siwx-core gill

🚀 API & Module Architecture

verifyEd25519(payload, options?): Promise<SiwxVerifyResult>

Verifies a Solana wallet signature. The signature must be base58-encoded (as produced by all Wallet Standard adapters). Accepts optional options?: { skipExpiration?: boolean }.

import { verifyEd25519 } from '@tuwaio/siwx-solana';

const result = await verifyEd25519({
  message: rawCaip122Message,
  signature: base58EncodedSignature,
});

if (result.success) {
  console.log('Solana auth verified for:', result.data?.address);
}

createSolanaSiwxSigner(signer)

Creates a standard SIWX signer callback for Solana chains. Automatically adapts to Wallet Standard, Web3 v2 (gill), or legacy Solana signers.

import { createSolanaSiwxSigner } from '@tuwaio/siwx-solana';

const signer = createSolanaSiwxSigner(connectedAccount);
const signature = await signer('Message to sign');

Wallet Standard Integration

When using a Wallet Standard compatible wallet (Phantom, Solflare, Backpack), integration is seamless with the factory:

import { useSiwx } from '@tuwaio/siwx-react';
import { createSolanaSiwxSigner } from '@tuwaio/siwx-solana';

const { signIn } = useSiwx();

// `connectedAccount` is the `UiWalletAccount` from `@wallet-standard/react`
const signer = createSolanaSiwxSigner(connectedAccount);

await signIn({ signer, verifier, fields: { ... } });

Peer Dependencies

| Package | Version | | ----------------------- | ------------- | | @tuwaio/siwx-core | workspace:* | | gill | ^0.14.0 | | @wallet-standard/base | ^1.0.0 |


📄 License

Licensed under the Apache-2.0 License. See the LICENSE file for details.