LogoLogo
back to urani.trade
  • Welcome
  • URANI App
    • The Urani App
    • MEV Projects
  • URANI SWAP
    • Swap tl; dr
    • Technicals
      • MEV tl; dr
      • Urani's Intents
      • Intent Transaction Flow
      • Batch Auctions
      • Urani's Intent Specs
      • Order Types
  • URANI PROTOCOL
    • Protocol tl; dr
    • Technicals
      • Optimization Problems
      • Raking the Agents' Solution
      • Batch Auction Specs
      • Ring (DAG) Trades
      • Order Execution
      • Multidimensional Price Free Market
        • On Solana
          • Solana Fees Overview
          • Solana Transactions Overview
          • Understanding Slippage
        • Urani's Dynamic Fees
      • Oracle Market Data Proxy
      • Security Considerations
      • Intent Gossip Layer Specs
      • Settlement Specs
  • URANI ARENA
    • Arena tl; dr
    • Technicals
      • The PvP Competition
      • Incentives for Operators
      • Reputation Dashboard
      • The Competition Seasons
  • MEV AGENTS
    • Agents tl; dr
    • Technicals
      • Urani's In-house Agents
        • MEV Agent Aleph
        • MEV Agent Bet
      • The Onboarding Process
      • Economic Incentives
      • MEV Agent Specs
      • Setting up an Agent's Graph
      • Building an initial AMM Strategy
      • Liquidity Strategies
        • On Solana
          • Raydium
          • Phoenix
          • Orca
          • Meteora
          • Jupiter
      • Performance and Reputation
      • Solving Cryptomarkets
        • Quantitative Theories and AI-Centric Agents
        • DeFi Glossary
        • In Honor of Jim Simons (1938-2024)
Powered by GitBook
  1. MEV AGENTS
  2. Technicals
  3. Urani's In-house Agents

MEV Agent Aleph

PreviousUrani's In-house AgentsNextMEV Agent Bet

Last updated 8 months ago

Agent Aleph is Urani's first in-house arbitrage agent, written in Python.

, allowing operators to use it as a template and plug in their favorite strategies.

Agent Aleph is one of the agents running in the Protocol to help with gauging and fallback. Nevertheless, in-house agents are not intended to outperform MEV agents outsourced by operators.


Current Agent Aleph's Strategies

In its first version (v1), this agent runs the following algorithm:

1️⃣ Listen for incoming batches.

2️⃣ Parse these batches to extract the order intents.

3️⃣ Check for peer-to-peer matches among the intents.

4️⃣ Spin a new thread for each intent to calculate solutions for best quotes through arbitrage in different liquidity sources.

5️⃣ Pack the solutions and send them to the protocol.

More advanced strategies should be incorporated into future versions of the protocol, both in terms of arbitrage algorithms and liquidity searching.

Additionally, agents will also be responsible for the settlement, allowing the system to become fully permissionless.

Its source code is open-sourced