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.10

Published

SDK for Telegram-based private Solana deposits

Downloads

107

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://devnet-tee.magicblock.app
  ephemeralRpcEndpoint: "https://mainnet-tee.magicblock.app",
  ephemeralWsEndpoint: "wss://mainnet-tee.magicblock.app",
  commitment: "confirmed",
});

// Shield: move tokens into private deposit in one base transaction
await client.shieldTokens({
  tokenMint,
  user: signer.publicKey,
  amount: 1_000_000,
  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,
});

// Unshield: withdraw from private deposit in one base transaction
await client.unshieldTokens({
  tokenMint,
  user: signer.publicKey,
  amount: 1_000_000,
  magicProgram: MAGIC_PROGRAM_ID,
  magicContext: MAGIC_CONTEXT_ID,
});

PER Authentication

For hosted PER endpoints (devnet-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

  • shieldTokens — one-transaction base shield flow, with optional pre-undelegate when the deposit is already delegated
  • unshieldTokens — one-transaction base unshield flow, with optional pre-undelegate and automatic re-delegate when balance remains
  • buildShieldFlowTransactionPlan — create the planned shield or unshield transactions and instruction metadata once
  • buildShieldTokensTransactionPlan / buildUnshieldTokensTransactionPlan — explicit shield/unshield plan builders
  • estimateShieldFlowFee — estimate transaction-level network fees plus instruction-attributed rent from an existing plan
  • estimateShieldTokensFee / estimateUnshieldTokensFee — explicit shield/unshield estimators for an existing plan
  • executeShieldFlowTransactionPlan — send the exact transactions from an existing plan in order
  • executeShieldTokensTransactionPlan / executeUnshieldTokensTransactionPlan — explicit shield/unshield executors for an existing plan
  • 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

Fee estimates use Solana's getFeeForMessage on the planned transaction messages. Instruction rows report net rentLamports: positive values are rent locked for newly created accounts, negative values are rent reclaimed by close or undelegate cleanup. Delegation rent credits are net of MagicBlock's undelegate session fee, so undelegation is not a full refund of every lamport held by delegation accounts. For native-SOL flows, instruction rows also report nativeLamports for the shielded/unshielded SOL principal; this is separate from protocol fees and rent, but it does affect the payer's SOL balance. feeAndRentLamports excludes native token principal, while totalLamports is a cost-style net SOL impact for the common payer=user flow: positive values are debits/costs and negative values are credits/gains. If payer differs from user, nativeLamports belongs to the token owner while fees/rent may belong to the payer. Network fees are not attributed per instruction because Solana charges them at the transaction/message level. Build the plan once and pass the same plan into the estimator so the estimate is tied to the exact instructions your app is about to inspect or send. To execute that exact plan, pass it to the matching execute*TransactionPlan method; it will send any pre-undelegate transaction first, wait for the required owner transition when the plan includes one, then send the base transaction.

const shieldPlan = await client.buildShieldTokensTransactionPlan({
  user: signer.publicKey,
  tokenMint,
  amount: 1_000_000,
});
const shieldEstimate = await client.estimateShieldTokensFee({
  plan: shieldPlan,
});

const unshieldPlan = await client.buildUnshieldTokensTransactionPlan({
  user: signer.publicKey,
  tokenMint,
  amount: 1_000_000,
});
const unshieldEstimate = await client.estimateUnshieldTokensFee({
  plan: unshieldPlan,
});

console.log(shieldEstimate.feeAndRentLamports);
console.log(shieldEstimate.totalLamports);
console.log(unshieldEstimate.feeAndRentLamports);
console.log(unshieldEstimate.totalLamports);

const shieldResult = await client.executeShieldTokensTransactionPlan({
  plan: shieldPlan,
});

const unshieldResult = await client.executeUnshieldTokensTransactionPlan({
  plan: unshieldPlan,
});

console.log(shieldResult.signatures);
console.log(unshieldResult.signatures);

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