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

@shroud-fi/transport

v0.1.4

Published

Pluggable viem-based transport + canonical Base mainnet deployment manifest for the ShroudFi privacy SDK.

Downloads

952

Readme

@shroud-fi/transport

Pluggable viem-based transport + canonical Base mainnet deployment manifest.

npm license: MIT

npm i @shroud-fi/transport viem

What it does

@shroud-fi/transport is the I/O layer for the ShroudFi SDK. It wraps viem clients for RPC reads, contract calls, and event subscription — and ships the canonical Base mainnet deployment manifest (ShroudFiStealth, ShroudFiRegistrar, relayer addresses, deploy block heights).

You can swap your own RPC URL or a private mempool transport in without touching the rest of the SDK.

Quick start

import { createTransport, getDeployment } from '@shroud-fi/transport';
import { base } from 'viem/chains';

const transport = createTransport({
  chain: base,
  rpcUrl: process.env.BASE_RPC_URL!,
});

const deployment = getDeployment(8453);
console.log(deployment.shroudfiStealth);
// → 0x4BC88813b09dDD6Ab530261200D706B397EcD0AB

Exports

| Symbol | Purpose | |---|---| | createTransport(cfg) | Build a transport from chain, rpcUrl, or an existing viem client. | | getDeployment(chainId) | Lookup verified contract addresses + deploy blocks by chain ID. Base mainnet = 8453. | | ShroudFiStealthAbi · RegistrarAbi · RelayerAbi · EthRelayerAbi | Typed ABIs for every deployed contract. | | DeploymentManifest | Type for the manifest. | | getEip3009Token(chainId, addr) | v0.1.1 — look up an EIP-3009 token by chain + address (case-insensitive). Returns {symbol, address, decimals, domain} or undefined. | | getEip3009TokenBySymbol(chainId, symbol) | v0.1.1 — same lookup by symbol ('USDC', 'EURC'). | | listEip3009Tokens(chainId) | v0.1.1 — enumerate all EIP-3009 tokens for a chain. |

Full API reference: shroudfi.live/sdk#transport

Supported chains

  • Base mainnet (8453) — production, contracts verified on Blockscout.

Other chains can be added by extending the manifest at deploy time; the SDK is chain-agnostic by design.

License

MIT — see LICENSE.

Part of the ShroudFi privacy SDK for AI agents on Base.