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

@adelos/sdk

v0.1.22

Published

Adelos Protocol SDK - Privacy Stealth Transfers on Solana

Readme

@adelos/sdk

TypeScript SDK for Adelos Protocol - Privacy Stealth Transfers on Solana.

npm version

📦 Installation

npm install @adelos/sdk

🚀 Quick Start

import { AdelosSDK, AdelosIndexer, derivePublicKey, bytesToHex } from "@adelos/sdk";

// Initialize with RPC URL
const sdk = new AdelosSDK({ 
  rpcUrl: "https://api.devnet.solana.com",
  debug: true // Enable debug logging
});

📖 API Reference

AdelosSDK

Main SDK class for interacting with the Adelos Protocol.

Constructor Options

interface AdelosOptions {
  rpcUrl?: string;   // RPC URL (default: devnet)
  debug?: boolean;   // Enable debug logging
}

Identity Methods

| Method | Description | |--------|-------------| | unlockPrivacy(signMessage) | Derive meta secret key from wallet signature | | getRegistry(owner) | Fetch registry account for a wallet | | isRegistered(owner) | Check if wallet has registered identity |

Transaction Builders

| Method | Description | |--------|-------------| | createRegisterTransaction(owner, metaPk) | Create register transaction | | createUpdateTransaction(owner, newMetaPk) | Create update transaction | | createStealthTransfer(sender, receiver, amount, txVersion) | Create stealth transfer | | createWithdrawTransaction(stealthSk, stealthAddr, dest, amount?) | Create withdraw transaction | | sendAndConfirm(signedTx) | Send and confirm transaction |

Stealth Transfer Flow

// 1. Sender creates stealth transfer
const { transaction, stealthAddress, memo } = await sdk.createStealthTransfer(
  senderPubkey,
  receiverPubkey,
  0.1, // SOL
  "v0"
);

// 2. Sign and send
const signedTx = await signTransaction(transaction);
const signature = await sdk.sendAndConfirm(signedTx);

Withdraw Flow

// Withdraw full balance (auto-calculates fee)
const { signature } = await sdk.createWithdrawTransaction(
  stealthSecretKey,
  stealthAddress,
  destinationPubkey
  // amount is optional - if omitted, withdraws full balance
);

// Or specify exact amount
const { signature } = await sdk.createWithdrawTransaction(
  stealthSecretKey,
  stealthAddress,
  destinationPubkey,
  BigInt(50000000) // 0.05 SOL in lamports
);

AdelosIndexer

Scan the blockchain for incoming stealth transfers.

import { AdelosIndexer } from "@adelos/sdk";

const indexer = new AdelosIndexer(connection);

// Scan for stealth transfers
const transfers = await indexer.scanForStealthTransfers(
  metaSecretKey,
  metaPublicKey,
  50 // limit
);

// Prepare withdrawal
const withdrawable = indexer.prepareWithdraw(transfer, metaSk, metaPk);
// Returns: { stealthSecretKey, stealthPublicKey }

Crypto Functions

import { 
  derivePublicKey,
  generateStealthAddress,
  recoverStealthSecretKey,
  computeSharedSecret,
  bytesToHex,
  hexToBytes
} from "@adelos/sdk";

// Derive public key from secret key
const metaPk = derivePublicKey(metaSk);

// Generate stealth address for recipient
const { stealthPubkey, ephemeralPubkey, memo } = generateStealthAddress(
  recipientMetaPubkey
);

// Recover stealth secret key (for withdrawal)
const stealthSk = recoverStealthSecretKey(metaSk, sharedSecret);

Utility Functions

import { bytesToHex, hexToBytes, validatePublicKey } from "@adelos/sdk";

// Convert bytes to hex string
const hex = bytesToHex(bytes); // "a1b2c3..."

// Convert hex string to bytes
const bytes = hexToBytes(hex); // Uint8Array

// Validate public key bytes
const isValid = validatePublicKey(pubkeyBytes);

🔗 Constants

import { 
  PROGRAM_ID,       // Adelos Registry Program ID
  MEMO_PROGRAM_ID,  // Solana Memo Program
  MEMO_PREFIX       // "ADLSv1:" - Protocol prefix
} from "@adelos/sdk";

🔒 Security Notes

  • Meta secret keys are derived deterministically from wallet signatures
  • Stealth secret keys are computed using Ed25519 scalar addition
  • All cryptographic operations use @noble/ed25519 and @noble/hashes

📄 License

MIT