Status

Network status & roadmap.

Live deployment state, verified contract addresses, and what’s shipping next. All four ShroudFi contracts are deployed and verified on Base mainnet.

All systems operational  · Base mainnet · stealth, registrar, ERC-20 relayer, and EIP-7702 ETH relayer responding normally
Network availability

Where ShroudFi is live.

Base Mainnet

Live
Chain ID8453
Stealth (EIP-5564)deployed · verified
Registrar (EIP-6538)deployed · verified
ERC-20 relayeronline · 1% recipient fee
ETH relayer (EIP-7702)online · gasless ETH
x402 facilitatorlive
Privacy invariants gateenforced in CI

Endpoints & assets

Public
Demo dappapp.shroudfi.live
x402 demoapp.shroudfi.live/x402
REST APIapi.shroudfi.live
OpenAPI 3.1/v1/openapi.json
USDC (settlement)0x8335…2913
EURC (settlement)0x60a3…db42
MCP installnpx shroudfi-mcp
SDK installnpm i @shroud-fi/agent-runtime
Roadmap

What’s shipped, what’s next.

ShroudFi is a privacy platform, not a one-off SDK. The primitives are live today; the surfaces around them keep expanding as the agent economy needs them.

Shipped

Stealth-address payments

EIP-5564 announcer + EIP-6538 registry, immutable on Base mainnet. Every payment lands at a fresh, unlinkable address.

Gasless ERC-20 sweeps

Token-denominated fee model. Recipients withdraw USDC without ever holding ETH for gas. Direct sweeps stay fee-free.

Gasless ETH sweeps

EIP-7702 delegated relayer. Native ETH balances at stealth addresses sweep into the operator wallet without pre-funding gas.

x402 stealth payments

HTTP 402 + EIP-3009 TransferWithAuthorization. Any endpoint can charge USDC or EURC; the settlement lands at a stealth address the buyer can’t link.

TypeScript SDK · npm

9 packages, viem-native, ESM + CJS. @shroud-fi/agent-runtime wires identity, transport, scanning, and sweeps in one call.

MCP server

Drop-in for Claude Code, Cursor, Windsurf, Zed AI — or any custom MCP host. 9 tools, stdio + HTTP (EIP-191 auth).

REST API + OpenAPI 3.1

Language-agnostic surface for Python / Go / Rust agents. 7 v1 endpoints, generated TS + Python clients, 50-line Python sample.

Live demo dapp

Register → send → receive → sweep, plus the two-panel /x402 demo. Side-by-side with a public baseline tx for the visual.

Source-verified contracts

All four production contracts verified on Blockscout and Etherscan V2. No multisig, no upgradeability, no admin keys.

In progress

Independent contract audit

Third-party review of ShroudFiStealth, ShroudFiRegistrar, ShroudFiRelayer, ShroudFiEthRelayer. Report published when complete.

Hosted MCP HTTP endpoint

Shared-infra MCP deployment so teams can wire many agents through one server. Local stdio install remains the default.

ShroudFi-hosted x402 facilitator

The SDK already settles through PayAI’s facilitator today (proven on mainnet). This adds a ShroudFi-run option so teams can verify EIP-3009 payloads and broadcast settlement with no third party.

Per-runtime cookbook

Copy-pasteable recipes for Claude Code, Cursor, Windsurf, Python agents, Go / Rust REST clients. Recipe-first, no reading required.

Public RPC fallback pool

Multi-provider fallback in @shroud-fi/transport so a single RPC outage never strands an agent.

Planned

Subscription primitives

short-term
Recurring stealth payments on top of x402 — metered access without exposing the subscriber graph.

Webhook payment delivery

short-term
Push inbound payments to an agent endpoint instead of polling. Same key derivation, lower latency.

Agent reputation primitives

short-term
Proof-of-payment-history without revealing identity. Selectively disclosed receipts for marketplaces.

Amount privacy

long-term
Confidential amounts on EVM. Evaluating commitment schemes, ZK proofs, and Railgun-style patterns. Currently a research line.

Cross-chain stealth

long-term
Optimism, Arbitrum, more L2s. Same meta-address resolves across rollups; sweeps stay chain-local.

Stealth-addressed lending

long-term
Adapters for Morpho, Aave, Moonwell so an agent can lend / borrow without publishing its position graph.

Multi-sig viewing-key escrow

long-term
Compliance teams hold a delegated, m-of-n viewing-key share — auditable without single-point trust.

Contract addresses · mainnet

Verified on Base mainnet.

Chain ID 8453. All four contracts source-verified on Blockscout and Basescan (Etherscan V2). Deployed 2026-06-02 from a single anon EOA — no multisig, no upgradeability, no admin keys.

ContractStandardAddress
ShroudFiStealthEIP-55640x4BC8…D0AB
ShroudFiRegistrarEIP-65380xDbBB…1207
ShroudFiRelayerEIP-2612 + 27710x44f3…31d1
ShroudFiEthRelayerEIP-7702 delegate0x477c…1a66
Relayer treasury1% recipient fee · EOA0x4B01…25b2
Canonical Stealth announcerEIP-5564 reference0x5564…5564
Canonical ERC-6538 RegistryEIP-6538 reference0x6538…6538
Distribution

Packages & services.

Every SDK package is published on npm. The REST API and x402 facilitator are live and self-hostable. Hosted MCP HTTP is queued behind the audit pass.

SurfaceStatusInstall / endpoint
@shroud-fi/corelive on npmnpm i @shroud-fi/core
@shroud-fi/paymentslive on npmnpm i @shroud-fi/payments
@shroud-fi/scanninglive on npmnpm i @shroud-fi/scanning
@shroud-fi/relayerlive on npmnpm i @shroud-fi/relayer
@shroud-fi/transportlive on npmnpm i @shroud-fi/transport
@shroud-fi/x402live on npmnpm i @shroud-fi/x402
@shroud-fi/agent-runtimelive on npmnpm i @shroud-fi/agent-runtime
@shroud-fi/mcp-serverlive on npmnpx shroudfi-mcp
@shroud-fi/compliancelive on npmnpm i @shroud-fi/compliance
REST API (self-host)liveapps/api · Fastify · OpenAPI 3.1
Hosted REST APIliveapi.shroudfi.live
x402 facilitatorliveapi.shroudfi.live/v1/x402-*
Hosted MCP HTTPin progresslocal stdio install available today
Changelog

Recent releases.

Multi-currency + hardening2026-06-06
  • AddMulti-currency x402 — settle in USDC or EURC on Base mainnet (both EIP-3009 assets).
  • AddPayAI facilitator adapter in @shroud-fi/x402 — gasless settlement for the payer, proven on Base mainnet.
  • AddLocal address book in @shroud-fi/agent-runtime — label wallets and stealth meta-addresses, stored only on the agent host.
  • FixBrowser wallet connect no longer fails when the address book is unused (lazy load).
x402 demo2026-06-03
  • Add/x402 demo — buy a tradeable signal for 0.01 USDC over HTTP 402, settled into a fresh stealth address.
  • AddSide-by-side public baseline tx visualises exactly what a non-stealth payment leaks.
Send rewrite2026-06-02
  • Add/send — pay any wallet by address. SDK resolves the recipient’s stealth meta-address automatically.
  • AddFriendly error mapping — wallet addresses never appear in user-facing error strings.
REST API2026-06-01
  • AddFastify REST surface. 7 v1 endpoints, EIP-191 challenge-response auth, rate limits, OpenAPI 3.1 schema.
  • AddGenerated TypeScript + Python clients. 50-line Python sample agent.
MCP server2026-05-30
  • Add@shroud-fi/mcp-server — 9 tools for any MCP host. Stdio + HTTP transports.
  • Add.mcp.json snippets for Claude Code, Cursor, Windsurf, Zed AI.
x402 + USDC2026-05-28
  • Add@shroud-fi/x402 — HTTP 402 client + server primitives. EIP-3009 TransferWithAuthorization, USDC-native.
  • AddStealth-addressed settlement — payment lands at a fresh address derived from the recipient’s meta-address.
Mainnet launch2026-06-02
  • AddAll four ShroudFi contracts deployed and source-verified on Base mainnet (chain 8453).
  • AddVerified on Blockscout and Etherscan V2. No multisig, no upgradeability, no admin keys.
Gasless ETH2026-05-25
  • AddEIP-7702 ETH relayer — gasless ETH sweeps via delegated code on a relayer EOA. No pre-funded gas at any destination.
Gasless ERC-202026-05-20
  • AddToken-denominated gasless ERC-20 sweeps via EIP-2612 permit + ERC-2771 metaTx. 1% recipient-side fee at the relayer layer only.
Agent runtime2026-05-15
  • Add@shroud-fi/agent-runtime — one call composes identity, transport, scanning, and sweeps.
  • AddEnd-to-end demo dapp ships at app.shroudfi.live.
SDK core2026-04-20
  • Add@shroud-fi/core + /payments + /scanning + /transport. secp256k1 identity, view-tag scanning, EIP-5564 announcement construction.

The agent economy is already here.

ShroudFi gives every autonomous workflow the privacy a human treasury already takes for granted. Live on Base mainnet, ship-ready today.