Skip to main content
Wraith is a multichain stealth address platform. Send and receive private payments across EVM chains and Stellar through a single SDK. An AI agent handles chain-specific crypto, key management, and privacy analysis inside Trusted Execution Environment hardware.

How It Works

Architecture You install the SDK, get an API key, and build. No servers to run. No keys to manage. No chain-specific crypto to implement.

Quick Start

1. Install

npm install @wraith-protocol/sdk

2. Create an Agent

import { Wraith, Chain } from "@wraith-protocol/sdk";

const wraith = new Wraith({ apiKey: "wraith_..." });

const agent = await wraith.createAgent({
  name: "alice",
  chain: Chain.Horizen,
  wallet: "0x...",
  signature: "0x...",
});

3. Send a Private Payment

const response = await agent.chat("send 0.1 ETH to bob.wraith");
console.log(response.response);
// "Payment sent — 0.1 ETH to bob.wraith via stealth address 0x7a3f..."

4. Scan for Incoming Payments

const response = await agent.chat("scan for incoming payments");
// Agent detects payments sent to your stealth addresses

Supported Chains

ChainFamilyStatusNative Asset
HorizenEVMLiveETH
EthereumEVMPlannedETH
PolygonEVMPlannedMATIC
BaseEVMPlannedETH
StellarStellarLiveXLM
SolanaSolanaPlannedSOL
Adding a new EVM chain requires only configuration (RPC URL + contract addresses). Adding a new chain family requires implementing the ChainConnector interface.

Key Features

  • Stealth addresses — every payment goes to a fresh one-time address. No on-chain link between sender and receiver.
  • Multichain — one agent, multiple chains. Chat naturally and the AI routes to the right chain.
  • AI-powered — natural language interface for payments, scanning, withdrawals, and privacy analysis.
  • TEE security — private keys derived inside Intel TDX hardware enclaves. Never stored on disk.
  • Privacy scoring — the agent proactively warns about timing analysis, address correlation, and other privacy risks.

Documentation

Getting Started

SDK Reference

Architecture

Guides

Contracts

API Reference