tessl install github:jeremylongshore/claude-code-plugins-plus-skills --skill analyzing-mempoolMonitor blockchain mempools for pending transactions, gas analysis, and MEV opportunities. Use when analyzing pending transactions, optimizing gas prices, or researching MEV. Trigger with phrases like "check mempool", "scan pending txs", "find MEV", "gas price analysis", or "pending swaps".
Review Score
84%
Validation Score
12/16
Implementation Score
73%
Activation Score
100%
Monitor Ethereum mempool for pending transactions, analyze gas prices, detect DEX swaps, and identify potential MEV opportunities. Useful for traders, MEV researchers, and protocol developers.
Before using this skill, ensure you have:
cd {baseDir}/scriptsView Pending Transactions:
python mempool_analyzer.py pending
python mempool_analyzer.py pending --limit 100Gas Price Analysis:
python mempool_analyzer.py gas
# Shows distribution, recommendations for slow/standard/fast/instantPending DEX Swaps:
python mempool_analyzer.py swaps
# Detects Uniswap, SushiSwap, 1inch pending swapsMEV Opportunity Scan:
python mempool_analyzer.py mev
# Detects sandwich, arbitrage, liquidation opportunitiesMempool Summary:
python mempool_analyzer.py summary
# Quick overview of pending count, gas, opportunitiesWatch Specific Contract:
python mempool_analyzer.py watch 0x7a250d...
# Monitor pending transactions to specific contractGas Recommendations:
MEV Warnings:
See {baseDir}/references/errors.md for:
Check gas before sending transaction:
python mempool_analyzer.py gas
# Use "Fast" for quick confirmationMonitor for large pending swaps:
python mempool_analyzer.py swaps --limit 200Research MEV opportunities:
python mempool_analyzer.py mev -vUse different chain:
python mempool_analyzer.py --chain polygon gas
python mempool_analyzer.py --chain arbitrum pendingSee {baseDir}/references/examples.md for more usage patterns.