← ClaudeAtlas

defi-mev-battletestlisted

Expert knowledge for DeFi/MEV bot development including critical pitfalls, backtesting realities, AMM mechanics, MEV extraction strategies, and production failure modes
aiskillstore/marketplace · ★ 329 · Testing & QA · score 79
Install: claude install-skill aiskillstore/marketplace
# DeFi/MEV Battle-Tested Expert Skill **MANDATORY CONSULTATION**: This skill MUST be consulted for ANY DeFi bot development, MEV strategy implementation, or automated trading system. Real-world failures and lessons learned here prevent catastrophic losses. ## Trigger Keywords - arbitrage, MEV, searcher, bot, automated trading - backtest, simulation, paper trading - flash loan, sandwich, frontrun - slippage, price impact, execution - reorg, race condition, mempool - market making, liquidity provision --- ## 1. CRITICAL PITFALL #1: "Arbitrage is Risk-Free" MYTH **Reality**: Theoretical 0% risk, practical tail risk = DEATH ### Hidden Risks in "Risk-Free" Arbitrage: ``` ❌ Execution Risk - Transaction reverts after gas spent - Partial fills leave you with unwanted inventory - Contract bugs in target protocols ❌ Reorg Risk (CRITICAL) - Your profitable tx can be uncle'd - 1-2 block reorgs happen DAILY on Ethereum - Your "profit" disappears, gas cost remains ❌ Gas Spike Risk - Base fee can 10x mid-execution - Priority fee auctions drain profits - Failed tx still costs full gas ❌ Latency Risk - Block already mined before your tx lands - State changed between simulation and execution - Other searchers front-ran you ``` ### Real Numbers: ```typescript // What you see in backtest: const theoreticalProfit = 0.05; // 5% clean profit // What actually happens: const executionCosts = { gasOnSuccess: 0.01, // 1% gas failureRate: 0.30, // 30% of txs fail gasOnFailur