Skip to main content
Tachyon is a privacy-native cross-chain payment protocol. Submit a signed intent describing what your user wants, “send 1,000 USDC from Arbitrum to this address on Base”, and Tachyon delivers it confidentially. Sender, recipient, amount, and route stay private end-to-end.

Quickstart

Submit your first intent via the SDK in five minutes.

Concepts

The five concepts you need to integrate end-to-end.

Privacy guarantees

What’s private, what’s public, and the threat model.

SDK

Install, authenticate, submit, track, retrieve.

Products

Confidential Bridge

Single confidential cross-chain transfer.

Confidential Payroll

Pay many recipients across many chains as one batch of intents.

Private TWAP

Execute size over time as a stream of confidential tranches.

x402 Micropayments

Confidential HTTP 402 payments for agents and APIs.

How integration looks

// Planned SDK surface. Today: createIntent on-chain + POST /store-recipients.
const { intentId } = await tachyon.intent.submit({
  sourceChain: "base_mainnet",
  destChain:   "horizen_mainnet",
  tokenIn:  USDC_BASE,
  tokenOut: USDC_HORIZEN,
  amountIn:     1_000_000_000n,
  minAmountOut:   999_000_000n,
  reward:          50_000_000n,
  deadline: Math.floor(Date.now() / 1000) + 600,
  recipients: [{ address: "0xRecipient...", amount: 999_000_000n }],
}, wallet);
The recipient’s app auto-sweeps from the destination stealth address. Done.

Explore

Guides

Step-by-step walkthroughs for each product.

Reference

Schemas, errors, rate limits.

Security

Properties Tachyon stands behind.

FAQ

Common integrator questions.
Tachyon is currently live on testnet. Mainnet is coming soon. Explore the hosted apps at testnet.app.tachyon.pe.