aV.
SYNTHESIS 2026
agentVault.
MPC-backed key management for autonomous AI agents.
The full private key never exists in one place. Threshold ECDSA via Lit Protocol, enforceable spending policies, and cryptographic compliance proofs.
Live Demo Pipeline
Click to run 6-step pipeline
1
Mint PKP (Lit Protocol MPC Key)
Threshold ECDSA key split across 30 Lit Network nodes
2
Deposit 10 ETH to Vault
Log deposit to immutable audit trail
3
Spending Cap Policy Check
Enforce per-tx limit: 5 ETH allowed, 6 ETH blocked
4
Threshold ECDSA Signature
15+ of 30 Lit nodes must agree to sign
5
Signature Verification
Verify ECDSA signature matches PKP address
6
Cryptographic Compliance Proof
Generate and verify ZK-style proof of policy compliance
Vault Stats
Demo Vault Balance
10.00 ETH
Active Policies
6 types
Anomaly Detectors
5 active
Tests Passing
38 100%
How It Works
MPC Vault Address (PKP)
0x0000...0000
Security Model
Agent requests transfer → Policy engine evaluates 6 rule types → Anomaly detector checks for drain patterns → 15+ of 30 Lit nodes produce threshold ECDSA signature → Immutable audit log + compliance proof generated
Architecture
MPC Key Management
Private key split across 30 Lit Protocol nodes using threshold ECDSA. 15+ nodes must agree before any signature. The full key never exists in one place.
Lit Protocol / Vincent SDK / ethers.js v6
Policy Engine
6 enforceable policy types: spending caps, whitelists, rate limiting, time-locks, multi-agent approval, and circuit breakers. All evaluated before signature authorization.
TypeScript / Express.js / Zod validation
SWORN Trust Protocol
On-chain trust scoring on Solana devnet. Agents build verifiable reputations. Friction-based dispute resolution. InsurancePool with solvency guarantees.
Solana Anchor (Rust) / Go SDK v0.1.6-alpha
Recent Demo Transactions
View Audit Logs
Transaction Hash Time Action Value Status Policy
Run demo to see transactions
Add Policy
Policy Type
Config (JSON)
Active Policies
Policy Type Description Config Status
Spending Cap Per-transaction and daily spending limits {"perTx": 5, "daily": 20}
Whitelist Only send to approved destination addresses {"addresses": ["0x..."]}
Rate Limiter Max N transactions per sliding time window {"maxTx": 10, "window": "1h"}
Time-Lock Queue large transfers for mandatory review {"threshold": 10, "delay": "24h"}
Multi-Agent Approval Require M-of-N agent signatures for high-value {"required": 2, "total": 3}
Circuit Breaker Auto-disable vault on anomalous activity {"tripThreshold": 3}
Audit Logs
Immutable audit trail with cryptographic proof hashes. Every action generates a verifiable compliance proof signed by the vault's PKP.
Proof Hash Time Action Details Status
Run demo to generate audit entries
API Explorer
Agent Vault exposes a full REST API for vault management, policy configuration, anomaly detection, and compliance proofs. Try any endpoint by clicking it.
Core
GET/healthService health checkTRY IT
GET/infoProject info and capabilitiesTRY IT
GET/api/demoRun 6-step demo pipelineTRY IT
GET/api/statsVault statisticsTRY IT
GET/api/endpointsFull endpoint discoveryTRY IT
Vault
POST/api/vault/depositDeposit funds into vault
POST/api/vault/transferTransfer with policy enforcement
POST/api/vault/swapSwap tokens via DEX with spending caps
GET/api/vault/:id/balanceCheck vault balance
GET/api/vault/:id/audit-logImmutable audit trail
Policies
GET/api/policies/:vaultIdList active policies
POST/api/policies/:vaultIdCreate new policy
POST/api/policies/:vaultId/evaluateDry-run policy check
POST/api/policies/:vaultId/circuit-checkCheck circuit breaker
Anomaly Detection
POST/api/anomaly/simulateSimulate attack scenariosTRY IT
POST/api/anomaly/analyzeAnalyze vault for drain patterns
Compliance Proofs
POST/api/proof/generateGenerate cryptographic compliance proof
POST/api/proof/verify-rawIndependent ECDSA proof verification
Copied to clipboard