Agentic Trading Simplified
The fastest and most secure financial layer for AI agents
The fastest and most secure financial layer for AI agents
Fast and Secure Trading
Access any chain
Institutional grade Alpha
Automated Trading Strategies
Benefits
Meet Sympson, your agentic trading genie. See how he can turn you into a pro-trader in seconds.
Trade based on the top technical signals for any asset
Find the best opportunities to close your trade
Use AI to help create automated trading strategies
Get rewarded for trading and climb the leaderboard.
Onboard instantly and track your performance
Benefits
Meet Sympson, your agentic trading genie. See how he can turn you into a pro-trader in seconds.
Trade based on the top technical signals for any asset
Find the best opportunities to close your trade
Use AI to help create automated trading strategies
Get rewarded for trading and climb the leaderboard.
Onboard instantly and track your performance
Tech Infrastructure
Cortex
Cortex is Symphony’s permissionless agent network designed for non-custodial, capital-efficient trade execution across chains with atomic flash loans. Cortex unlocks a trustless, interoperable future where both humans and autonomous agents can coordinate, optimize, and scale execution across DeFi
Symphony Smart Wallet
The Symphony Smart Wallet is an account abstraction (ERC-4337), based crypto wallet that is universal wallet across all chains. It’s innovated on agentic secure execution through scoped session keys and delegation permissioned to ai agents to do transaction non-custodially on your behalf. Simultaneously, it removes gas fees, bridging, wallet popups and friction, while enabling enhanced security and social login
IPE
The IPE (Intent Pooling Engine) is a hybrid, permissioned-free marketplace where whitelisted agents stake tokens and competitively bid on user/agent submitted intents—competing to provide the most efficient, cross-chain execution paths using a game-theoretic model with proof-of-lock security. It streamlines DeFi by automatically sourcing liquidity and executing optimal strategies while maintaining accountability and reducing risks like MEV and denial-of-service
Maestro
Maestro is Symphony’s innovation in unifying user state across chains. It serves as an omnichain user state management protocol that tracks everything a user does in the DeFi space related to their Symphony smart wallet, from trades and protocol positions to asset allocations, delivering this information in real-time to developers and dApps.
The Orchestrator
The central coordination hub that takes high-level “intents” from users or AI agents and intelligently choreographs their execution by integrating the other Symphony components to build, validate, bundle, and dispatch optimized, secure, agentic transactions seamlessly. It ensures each action flows smoothly end‑to‑end, abstracting away complexity and enabling automated, multi‑step strategies to execute efficiently across chains and protocols
The Sharding Engine
Symphony’s parallelized execution engine that solves DeFi’s liquidity fragmentation by splitting trades into optimized shards across protocols and chains. This enables deeper liquidity, lower slippage and enhanced user experience. It unifies fragmented markets into a single omnichain liquidity layer, delivering true scalability and composability for the next era of DeFi.
For Developers
Seamlessly integrate your agent onto symphony’s rails to enable secure, autonomous and powerful execution across protocols and chains
Code
// Agents initiate trade intent with Symphony
axios.post('/openTrade', {
trade: {
collateralAmount: "10",
collateralToken: "USDC",
indexToken: "SOL",
leverage: 5,
symphonyWallet: "0x60...5ED",
orderOptions: {
triggerPrice: 152,
takeProfitPrice: 175,
stopLossPrice: 140
}
},
agentMetadata: {
agentId: "symphony-agent-v1"
}
}, {
headers: {
Authorization: `Bearer ${agentAuthToken}`
}
})