High Risk:This skill has significant security concerns. Review the findings below before installing.

ethereum

Caution·Scanned 2/18/2026

Dangerous skill: instructs running curl -L https://foundry.paradigm.xyz | bash (a piped remote install) and executing cast commands that contact RPC endpoints such as https://eth.llamarpc.com. It documents Ethereum CLI usage and recommends setting the ETH_RPC_URL environment variable.

from clawhub.ai·vf1f6de2·3.4 KB·0 installs
Scanned from 1.0.0 at f1f6de2 · Transparency log ↗
$ vett add clawhub.ai/sakaen736jih/ethereumReview security findings before installing

Ethereum Wallet CLI

Setup

Install Foundry (includes cast):

curl -L https://foundry.paradigm.xyz | bash
foundryup

Set RPC (optional):

export ETH_RPC_URL="https://eth.llamarpc.com"

Check ETH Balance

cast balance <ADDRESS> --rpc-url https://eth.llamarpc.com

In ether (human readable):

cast balance <ADDRESS> --ether --rpc-url https://eth.llamarpc.com

ENS Lookup

Resolve ENS to address:

cast resolve-name vitalik.eth --rpc-url https://eth.llamarpc.com

Reverse lookup (address to ENS):

cast lookup-address <ADDRESS> --rpc-url https://eth.llamarpc.com

ERC-20 Token Balance

# USDC balance (6 decimals)
cast call 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 \
  "balanceOf(address)(uint256)" <ADDRESS> \
  --rpc-url https://eth.llamarpc.com

# Format with decimals
cast call 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 \
  "balanceOf(address)(uint256)" <ADDRESS> \
  --rpc-url https://eth.llamarpc.com | xargs -I {} cast --to-unit {} 6

Token Info

# Token name
cast call <TOKEN_CONTRACT> "name()(string)" --rpc-url https://eth.llamarpc.com

# Token symbol
cast call <TOKEN_CONTRACT> "symbol()(string)" --rpc-url https://eth.llamarpc.com

# Decimals
cast call <TOKEN_CONTRACT> "decimals()(uint8)" --rpc-url https://eth.llamarpc.com

# Total supply
cast call <TOKEN_CONTRACT> "totalSupply()(uint256)" --rpc-url https://eth.llamarpc.com

Transaction Info

cast tx <TX_HASH> --rpc-url https://eth.llamarpc.com

Transaction receipt:

cast receipt <TX_HASH> --rpc-url https://eth.llamarpc.com

Gas Price

Current gas price:

cast gas-price --rpc-url https://eth.llamarpc.com

In gwei:

cast --to-unit $(cast gas-price --rpc-url https://eth.llamarpc.com) gwei

Block Info

Latest block:

cast block latest --rpc-url https://eth.llamarpc.com

Specific block:

cast block 17000000 --rpc-url https://eth.llamarpc.com

NFT (ERC-721) Owner

cast call <NFT_CONTRACT> "ownerOf(uint256)(address)" <TOKEN_ID> --rpc-url https://eth.llamarpc.com

Account Nonce

cast nonce <ADDRESS> --rpc-url https://eth.llamarpc.com

Chain Info

cast chain-id --rpc-url https://eth.llamarpc.com

Common Token Contracts

TokenContract
USDC0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
USDT0xdAC17F958D2ee523a2206206994597C13D831ec7
DAI0x6B175474E89094C44Da98b954EescdeCB5BE3830
WETH0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
LINK0x514910771AF9Ca656af840dff83E8264EcF986CA

Public RPC Endpoints

Notes

  • Addresses are 0x-prefixed hex (42 characters)
  • 1 ETH = 10^18 wei
  • Gas prices fluctuate; check before transactions
  • Rate limits apply on public RPCs
  • Use --rpc-url or set ETH_RPC_URL environment variable