Optimize blockchain gas costs by analyzing prices, patterns, and timing. Use when checking gas prices, estimating costs, or finding optimal windows. Trigger with phrases like "gas prices", "optimize gas", "transaction cost", "when to transact".
Gas fee optimization skill that:
ETHERSCAN_API_KEY for higher rate limitsCheck current gas prices (optionally for a specific chain):
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py current
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py current --chain polygon
Estimate transaction cost for known operations or custom gas limits (available operations: eth_transfer, erc20_transfer, erc20_approve, uniswap_v2_swap, uniswap_v3_swap, sushiswap_swap, curve_swap, nft_mint, nft_transfer, opensea_listing, aave_deposit, aave_withdraw, compound_supply, compound_borrow, bridge_deposit):
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py estimate --operation uniswap_v2_swap --all-tiers
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py estimate --gas-limit 150000 --tier fast # 150000 = configured value
Find the optimal transaction window with lowest expected gas:
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py optimal
View gas patterns (hourly or daily):
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py patterns
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py patterns --daily
Predict future gas prices for a given hour:
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py predict --time 14
Compare gas prices across multiple chains:
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py compare
View base fee history for recent blocks:
cd ${CLAUDE_SKILL_DIR}/scripts && python3 gas_optimizer.py history --blocks 50
| Chain | Native Token | Block Time | |-------|--------------|------------| | Ethereum | ETH | ~12 sec | | Polygon | MATIC | ~2 sec | | Arbitrum | ETH | ~0.25 sec | | Optimism | ETH | ~2 sec | | Base | ETH | ~2 sec |
| Tier | Percentile | Confirmation Time | |------|------------|-------------------| | Slow | 10th | 10+ blocks (~2+ min) | | Standard | 50th | 3-5 blocks (~1 min) | | Fast | 75th | 1-2 blocks (~30 sec) | | Instant | 90th | Next block (~12 sec) |
See ${CLAUDE_SKILL_DIR}/references/errors.md for:
See ${CLAUDE_SKILL_DIR}/references/examples.md for:
下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer