From mempool-analyzer
Monitors Ethereum mempools for pending transactions, gas prices, DEX swaps, and MEV opportunities via Python scripts. Useful for gas optimization and transaction analysis.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mempool-analyzerThis skill is limited to using the following tools:
[Overview](#overview) | [Prerequisites](#prerequisites) | [Instructions](#instructions) | [Output](#output) | [Error Handling](#error-handling) | [Examples](#examples) | [Resources](#resources)
Broadcasts transactions, estimates and simulates gas, checks status, and tracks orders on Ethereum, Solana, Base, BSC, Arbitrum, Polygon, and 20+ chains via OKX Onchain OS CLI.
Queries EVM blockchain data on Ethereum, Polygon, Arbitrum: transactions, address balances/tokens/history, blocks via Python CLI with Etherscan APIs.
Share bugs, ideas, or general feedback.
Overview | Prerequisites | Instructions | Output | Error Handling | Examples | Resources
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.
ETH_RPC_URL)cd ${CLAUDE_SKILL_DIR}/scripts
python mempool_analyzer.py pendingpython mempool_analyzer.py gaspython mempool_analyzer.py swapspython mempool_analyzer.py mevpython mempool_analyzer.py summarypython mempool_analyzer.py watch 0x7a250d...Alternatively, customize with flags:
python mempool_analyzer.py pending --limit 100 # Limit results
python mempool_analyzer.py --chain polygon gas # Use different chain
python mempool_analyzer.py --chain arbitrum pending # Or use Arbitrum
Gas Recommendations:
MEV Warnings:
--format json)See ${CLAUDE_SKILL_DIR}/references/errors.md for:
Example 1: Check gas before sending transaction:
python mempool_analyzer.py gas
# Use "Fast" for quick confirmation
Example 2: Monitor for large pending swaps:
python mempool_analyzer.py swaps --limit 200 # 200: max results to scan
Example 3: Research MEV opportunities:
python mempool_analyzer.py mev -v
See ${CLAUDE_SKILL_DIR}/references/examples.md for more usage patterns.
${CLAUDE_SKILL_DIR}/references/implementation.md - Gas analysis, MEV detection, multi-chain details