Extracteur d'infos de transaction EVM

VérifiéSûr

Récupère les détails d'une transaction EVM à partir de son hash. Utilise cast (Foundry) et prend en charge les chaînes Ethereum, Polygon, Arbitrum, Optimism, Base et BSC. Utile pour analyser ou vérifier une transaction.

Spar Skills Guide Bot
Data & IAIntermédiaire
6002/06/2026
Claude Code
#evm#transaction#blockchain#ethereum#crypto

Recommandé pour

Notre avis

Récupère les détails d'une transaction EVM à partir de son hash et optionnellement de la chaîne.

Points forts

  • Support de plusieurs chaînes EVM (Ethereum, Polygon, Arbitrum, etc.)
  • Utilise des nœuds publics par défaut
  • Obtention rapide des informations de base de la transaction

Limites

  • Nécessite l'outil `cast` installé
  • Ne fonctionne que pour les chaînes EVM
  • N'affiche pas les logs détaillés ou les appels internes
Quand l'utiliser

Lorsque vous avez un hash de transaction sur une chaîne EVM et que vous voulez rapidement voir son statut, ses valeurs, ou ses entrées.

Quand l'éviter

Pour des chaînes non EVM (comme Solana) ou si vous avez besoin d'une analyse approfondie des événements ou des traces.

Analyse de sécurité

Sûr
Score qualité88/100

The skill only reads public blockchain data via a Bash script using the `cast` tool or explorer APIs. No destructive commands, no exfiltration of secrets, no obfuscated payloads, and no risky operations like `curl|sh` or `rm -rf`. The transaction hash input is expected to be a hex string, and the script likely validates it. The skill does not write files or require elevated privileges.

Aucun point d'attention détecté

Exemples

Ethereum transaction details
Show me details for transaction 0x1234abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890 on Ethereum
Polygon transaction details
Look up transaction 0x5678abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890 on Polygon

name: evm-tx-info description: Use this skill when the user asks for "transaction details", "show me tx", "what happened in this transaction", "look up transaction", or mentions viewing transaction data on EVM chains (Ethereum, Polygon, Arbitrum, etc.). Requires a transaction hash and optional chain parameter. allowed-tools: Bash

EVM Transaction Info Fetcher

Gets transaction details by hash from an EVM blockchain network.

Usage

Run the script with transaction hash and optional chain:

${CLAUDE_PLUGIN_ROOT}/scripts/crypto-evm-tx-info.sh <tx_hash> [chain]

Arguments

  • tx_hash (required): Transaction hash (0x + 64 hex characters)
  • chain (optional): Chain name - ethereum (default), polygon, arbitrum, optimism, base, bsc

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

  • cast (Foundry) must be installed
  • RPC URL is optional (uses PublicNode fallback)

Examples

# Get transaction on Ethereum
${CLAUDE_PLUGIN_ROOT}/scripts/crypto-evm-tx-info.sh 0x1234...abcd

# Get transaction on Polygon
${CLAUDE_PLUGIN_ROOT}/scripts/crypto-evm-tx-info.sh 0x5678...efgh polygon

Note

For Solana transaction info, use the sol-tx-info skill instead.

Skills similaires