Claude-skill-registry evm-gas-price
Use this skill when the user asks "gas price", "how much is gas", "current gas", "check gas fees", or mentions checking gas costs on EVM chains (Ethereum, Polygon, Arbitrum, etc.). Optional chain parameter.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/evm-gas-price" ~/.claude/skills/majiayu000-claude-skill-registry-evm-gas-price && rm -rf "$T"
manifest:
skills/data/evm-gas-price/SKILL.mdsource content
EVM Gas Price Fetcher
Gets current gas price for an EVM blockchain network.
Usage
Run the script with optional chain:
${CLAUDE_PLUGIN_ROOT}/scripts/crypto-evm-gas-price.sh [chain]
Arguments
(optional): Chain name - ethereum (default), polygon, arbitrum, optimism, base, bscchain
Supported Chains
| Chain | Aliases | Explorer |
|---|---|---|
| ethereum | eth, mainnet | Etherscan |
| polygon | matic | Polygonscan |
| arbitrum | arb | Arbiscan |
| optimism | op | Optimism Etherscan |
| base | - | Basescan |
| bsc | binance | BSCScan |
Requirements
(Foundry) must be installedcast- RPC URL is optional (uses PublicNode fallback)
Examples
# Get gas price on Ethereum ${CLAUDE_PLUGIN_ROOT}/scripts/crypto-evm-gas-price.sh # Get gas price on Polygon ${CLAUDE_PLUGIN_ROOT}/scripts/crypto-evm-gas-price.sh polygon
Note
For Solana fees, use the
sol-fees skill instead.