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

@loyal-labs/private-transactions

v0.2.8

Published

SDK for Telegram-based private Solana deposits

Readme

@loyal-labs/private-transactions

SDK for private SPL token deposits and transfers using MagicBlock Private Ephemeral Rollups (PER). This package wraps the telegram-private-transfer Anchor program and provides helpers for permissions, delegation, private transfers, claims, and undelegation.

Installation

bun add @loyal-labs/private-transactions
# or
npm install @loyal-labs/private-transactions

Peer Dependencies

bun add @coral-xyz/anchor @solana/web3.js @solana/spl-token @magicblock-labs/ephemeral-rollups-sdk

Quick Start

import { Keypair, PublicKey } from "@solana/web3.js";
import {
  ER_VALIDATOR,
  LoyalPrivateTransactionsClient,
  MAGIC_CONTEXT_ID,
  MAGIC_PROGRAM_ID,
} from "@loyal-labs/private-transactions";

const signer = Keypair.fromSecretKey(Uint8Array.from([...secretBytes]));
const tokenMint = new PublicKey("<mint>");

const client = await LoyalPrivateTransactionsClient.fromConfig({
  signer,
  baseRpcEndpoint: "https://api.devnet.solana.com",
  // Mainnet: https://mainnet-tee.magicblock.app
  // Devnet: https://tee.magicblock.app
  ephemeralRpcEndpoint: "https://mainnet-tee.magicblock.app",
  ephemeralWsEndpoint: "wss://mainnet-tee.magicblock.app",
  commitment: "confirmed",
});

// Shield: move tokens into private deposit
await client.initializeDeposit({
  tokenMint,
  user: signer.publicKey,
  payer: signer.publicKey,
});

await client.modifyBalance({
  tokenMint,
  user: signer.publicKey,
  payer: signer.publicKey,
  userTokenAccount: new PublicKey("<sender-ata>"),
  amount: 1_000_000,
  increase: true,
});

await client.createPermission({
  tokenMint,
  user: signer.publicKey,
  payer: signer.publicKey,
});

await client.delegateDeposit({
  tokenMint,
  user: signer.publicKey,
  payer: signer.publicKey,
  validator: ER_VALIDATOR,
});

// Private transfer (on PER) — destination username deposit must already exist and be delegated
await client.transferToUsernameDeposit({
  tokenMint,
  username: "alice_user",
  amount: 100_000,
  user: signer.publicKey,
  payer: signer.publicKey,
  sessionToken: null,
});

// Unshield: commit PER state and withdraw tokens
await client.undelegateDeposit({
  tokenMint,
  user: signer.publicKey,
  payer: signer.publicKey,
  sessionToken: null,
  magicProgram: MAGIC_PROGRAM_ID,
  magicContext: MAGIC_CONTEXT_ID,
});

await client.modifyBalance({
  tokenMint,
  user: signer.publicKey,
  payer: signer.publicKey,
  userTokenAccount: new PublicKey("<sender-ata>"),
  amount: 1_000_000,
  increase: false,
});

PER Authentication

For hosted PER endpoints (tee.magicblock.app, mainnet-tee.magicblock.app), the SDK acquires auth tokens automatically during fromConfig.

If you need explicit control, fetch the token externally and pass it through authToken:

import { getAuthToken } from "@magicblock-labs/ephemeral-rollups-sdk";

const authToken = await getAuthToken(
  "https://mainnet-tee.magicblock.app",
  wallet.publicKey,
  wallet.signMessage
);

const client = await LoyalPrivateTransactionsClient.fromConfig({
  signer: wallet,
  baseRpcEndpoint: "https://api.mainnet-beta.solana.com",
  ephemeralRpcEndpoint: "https://mainnet-tee.magicblock.app",
  ephemeralWsEndpoint: "wss://mainnet-tee.magicblock.app",
  authToken,
});

API Overview

Factory Method

  • fromConfig({ signer, baseRpcEndpoint, ephemeralRpcEndpoint, ... })

Shield / Unshield

  • initializeDeposit — create deposit account (no-op if exists)
  • modifyBalance — deposit (increase: true) or withdraw (increase: false) real tokens
  • createPermission — set up PER access control (idempotent)
  • delegateDeposit — delegate to TEE validator

Private Transfers (on PER)

  • transferDeposit — transfer between user deposits
  • transferToUsernameDeposit — transfer to username deposit
  • claimUsernameDepositToDeposit — claim from username deposit with verified Telegram session

Username Deposits

  • initializeUsernameDeposit — create username deposit account
  • createUsernamePermission — PER access control for username deposit
  • delegateUsernameDeposit — delegate username deposit to PER
  • undelegateUsernameDeposit — commit and undelegate username deposit

Commit / Undelegate

  • undelegateDeposit — commit PER state, return deposit to base layer
  • undelegateUsernameDeposit

Queries

  • getBaseDeposit / getEphemeralDeposit
  • getBaseUsernameDeposit / getEphemeralUsernameDeposit

Accessors

  • publicKey
  • getBaseProgram()
  • getEphemeralProgram()
  • getProgramId()

PDA Helpers

  • findDepositPda
  • findUsernameDepositPda
  • findVaultPda
  • findPermissionPda
  • findDelegationRecordPda
  • findDelegationMetadataPda
  • findBufferPda

Development

bun install
bun run typecheck
bun test --timeout 60000