.wraith name but holds independent identities on every chain you enable. The AI agent is chain-aware — tell it to send XLM and it routes to Stellar, tell it to send ZEN and it routes to Horizen, no extra configuration required.
The SDK interface is identical for single-chain and multichain agents. The only difference is the
chain parameter you pass at creation time.Create a multichain agent
Pass an array ofChain values instead of a single chain:
Deploy on all chains at once
UseChain.All to register on every chain the platform supports:
Chain-aware routing
The AI agent infers the correct chain from the currency or explicit mention in your message.Explicit chain
Name the chain directly when you want full control:Inferred chain
When the currency is unambiguous, the agent routes automatically:Ambiguous cases
If the currency exists on more than one of your chains, the agent asks for clarification:Cross-chain balance
Check balances across all chains in a single message:Cross-chain scanning
Scan for incoming stealth payments on all chains at once:How multichain key derivation works
The TEE derives a separate key pair per chain from your wallet signature. Each chain uses the cryptographic scheme appropriate for that chain family — secp256k1 for EVM chains, ed25519 for Stellar. The derived keys are isolated per chain, so a Horizen key is never used on Ethereum and vice versa. The agent is aware of all chains it was created with, so it routes each operation to the correct chain automatically based on your message context.Privacy across chains
Each chain maintains independent stealth address activity. Payments on Horizen are invisible to observers on Stellar. Run per-chain privacy checks to see the full picture:Single-chain vs. multichain comparison
| Feature | Single-chain | Multichain |
|---|---|---|
| Chains | One | Multiple |
| Addresses | One | One per chain |
| Stealth meta-addresses | One | One per chain |
| Chat routing | Direct | AI infers chain |
| Key derivation | One path | One path per chain |
| Privacy analysis | One chain | Per-chain |
What’s next
Privacy best practices
Understand cross-chain privacy risks and how to avoid them.
Bring your own model
Configure OpenAI or Claude as the AI provider for your agents.
Single-chain guide
Full lifecycle walkthrough for a single-chain agent.
SDK reference
Complete API documentation including the Chain enum.

