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

@radr/shadowwire

v1.1.15

Published

TypeScript SDK for ShadowWire privacy protocol on Solana

Readme

ShadowWire SDK

TypeScript SDK for private payments on Solana using Bulletproof zero-knowledge proofs.

Overview

ShadowWire enables private transfers on Solana by hiding transaction amounts using Bulletproofs while maintaining on-chain verifiability. The protocol supports 22 tokens.

Installation

npm install @radr/shadowwire

Quick Start

import { ShadowWireClient } from '@radr/shadowwire';

const client = new ShadowWireClient();

const balance = await client.getBalance('YOUR_WALLET');

await client.transfer({
  sender: 'YOUR_WALLET',
  recipient: 'RECIPIENT_WALLET',
  amount: 0.5,
  token: 'SOL',
  type: 'internal'
});

Transfer Types

Internal Transfer: Amount is hidden using zero-knowledge proofs.

External Transfer: Amount is visible but sender remains anonymous. Works with any Solana wallet.

API Reference

Client Configuration

const client = new ShadowWireClient({
  apiBaseUrl: 'https://custom-api.com',
  debug: true
});

Balance

const balance = await client.getBalance('WALLET_ADDRESS', 'SOL');

Deposit

const response = await client.deposit({
  wallet: 'YOUR_WALLET',
  amount: 100000000
});

Withdraw

const response = await client.withdraw({
  wallet: 'YOUR_WALLET',
  amount: 50000000
});

Transfer

const result = await client.transfer({
  sender: 'YOUR_WALLET',
  recipient: 'RECIPIENT_WALLET',
  amount: 0.1,
  token: 'SOL',
  type: 'internal',
  wallet: { signMessage }
});

Fee Calculation

const fee = client.getFeePercentage('SOL');
const minimum = client.getMinimumAmount('SOL');
const breakdown = client.calculateFee(1.0, 'SOL');

Wallet Authentication

All transfers require wallet signature authentication:

import { useWallet } from '@solana/wallet-adapter-react';

const { signMessage, publicKey } = useWallet();

await client.transfer({
  sender: publicKey.toBase58(),
  recipient: 'RECIPIENT_ADDRESS',
  amount: 1.0,
  token: 'SOL',
  type: 'internal',
  wallet: { signMessage }
});

Client-Side Proof Generation

For maximum privacy, generate proofs in the browser:

import { initWASM, generateRangeProof, isWASMSupported } from '@radr/shadowwire';

if (isWASMSupported()) {
  await initWASM('/wasm/settler_wasm_bg.wasm');
  
  const proof = await generateRangeProof(100000000, 64);
  
  await client.transferWithClientProofs({
    sender: 'YOUR_WALLET',
    recipient: 'RECIPIENT_WALLET',
    amount: 0.1,
    token: 'SOL',
    type: 'internal',
    customProof: proof
  });
}

Supported Tokens

| Token | Decimals | Fee | |-------|----------|-----| | SOL | 9 | 0.5% | | RADR | 9 | 0.3% | | USDC | 6 | 1% | | ORE | 11 | 0.3% | | BONK | 5 | 1% | | JIM | 9 | 1% | | GODL | 11 | 1% | | HUSTLE | 9 | 0.3% | | ZEC | 9 | 1% | | CRT | 9 | 1% | | BLACKCOIN | 6 | 1% | | GIL | 6 | 1% | | ANON | 9 | 1% | | WLFI | 6 | 1% | | USD1 | 6 | 1% | | AOL | 6 | 1% | | IQLABS | 9 | 0.5% | | SANA | 6 | 1% | | POKI | 9 | 1% | | RAIN | 6 | 2% | | HOSICO | 9 | 1% | | SKR | 6 | 0.5% |

Token Utilities

import { TokenUtils } from '@radr/shadowwire';

TokenUtils.toSmallestUnit(0.1, 'SOL');
TokenUtils.fromSmallestUnit(100000000, 'SOL');

Error Handling

import { 
  RecipientNotFoundError, 
  InsufficientBalanceError,
  TransferError 
} from '@radr/shadowwire';

try {
  await client.transfer({ ... });
} catch (error) {
  if (error instanceof RecipientNotFoundError) {
  }
}

Browser Compatibility

Client-side proof generation requires WebAssembly support:

  • Chrome 57+
  • Firefox 52+
  • Safari 11+
  • Edge 16+

See Browser Setup Guide for framework-specific configuration.

Links

  • Telegram: https://t.me/radrportal
  • Twitter: https://x.com/radrdotfun
  • Email: [email protected]

License

MIT