Monitor 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".
Install with Tessl CLI
npx tessl i github:jeremylongshore/claude-code-plugins-plus-skills --skill analyzing-mempool84
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
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.
22fc789
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.