Use this skill when the user asks "block info", "what's in block", "latest block", "get block details", or mentions viewing block data on blockchain. Optional block number/tag and chain parameter.
/plugin marketplace add cheolwanpark/useful-claude-plugins/plugin install crypto@personal-curationThis skill is limited to using the following tools:
Gets information about a blockchain block.
Run the script with optional block and chain:
${CLAUDE_PLUGIN_ROOT}/scripts/crypto-block-info.sh [block] [chain]
block (optional): Block number, hex, or tag (latest, pending, earliest, finalized, safe). Default: latestchain (optional): Chain name - ethereum (default), polygon, arbitrum, optimism, base, bsc| Chain | Aliases | Explorer |
|---|---|---|
| ethereum | eth, mainnet | Etherscan |
| polygon | matic | Polygonscan |
| arbitrum | arb | Arbiscan |
| optimism | op | Optimism Etherscan |
| base | - | Basescan |
| bsc | binance | BSCScan |
cast (Foundry) must be installed# Get latest block on Ethereum
${CLAUDE_PLUGIN_ROOT}/scripts/crypto-block-info.sh
# Get specific block
${CLAUDE_PLUGIN_ROOT}/scripts/crypto-block-info.sh 18000000
# Get latest block on Polygon
${CLAUDE_PLUGIN_ROOT}/scripts/crypto-block-info.sh latest polygon