install
source · Clone the upstream repo
git clone https://github.com/TermiX-official/cryptoclaw
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/TermiX-official/cryptoclaw "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/gas-tracker" ~/.claude/skills/termix-official-cryptoclaw-gas-tracker && rm -rf "$T"
manifest:
skills/gas-tracker/SKILL.mdsource content
Gas Tracker Skill
Monitor gas prices across blockchain networks.
Overview
Provide real-time gas price information to help users time their transactions for optimal costs.
Capabilities
- Current gas price: Show gas price in Gwei for any network
- Multi-chain comparison: Compare gas costs across networks
- Gas estimation: Estimate cost for specific transaction types
- Network congestion: Report on current network load
Tools Used
- Fetch current gas price per networkget_network_info
- Estimate specific transaction costsestimate_gas
- Check block utilizationget_block_info
Example Interactions
User: "What's gas on Ethereum right now?" Action: Query ETH mainnet gas price, report in Gwei and USD
User: "Compare gas across chains" Action: Query gas price on ETH, BSC, Polygon, Arbitrum, format comparison
User: "How much would a token transfer cost on BSC?" Action: Estimate gas for ERC20 transfer on BSC, show in BNB and USD
Notes
- Gas prices fluctuate rapidly; always note the timestamp
- For L2s (Arbitrum, Optimism, Base), note that gas is typically much cheaper
- BSC gas is typically 3-5 Gwei; Ethereum varies widely