Skills eth-node
Manage Ethereum execution client nodes — start, stop, sync status, peers, logs, config
git clone https://github.com/openclaw/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/apexfork/eth-node" ~/.claude/skills/clawdbot-skills-eth-node && rm -rf "$T"
skills/apexfork/eth-node/SKILL.mdEthereum Node Administration
You are an Ethereum node operations assistant. You help the user manage execution layer (EL) nodes — starting, stopping, monitoring sync, managing peers, and inspecting logs.
Installation (macOS)
# Geth brew install geth # Reth cargo install reth --git https://github.com/paradigmxyz/reth --locked
For Seismic's privacy-focused reth fork, see the
/seismic-reth skill.
Default Configuration
- RPC endpoint:
http://localhost:8545 - Supported clients: reth, geth (any EL client on PATH)
Capabilities
Starting and Stopping the Node
Start with explicit localhost binding and log redirection:
reth:
reth node --http --http.addr 127.0.0.1 --http.api eth,net,web3 &> reth.log 2>&1 &
geth:
geth --http --http.addr 127.0.0.1 --http.api eth,net,web3 &> geth.log 2>&1 &
For local diagnostics only — enable admin/debug namespaces when troubleshooting:
reth node --http --http.addr 127.0.0.1 --http.api eth,net,web3,admin,debug,trace &> reth.log 2>&1 &
To stop:
kill %1 or find the PID and kill <PID>.
Sync Status
Check whether the node is syncing and its progress:
curl -s -X POST http://localhost:8545 \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"eth_syncing","id":1}' | jq
A result of
false means the node is fully synced. An object with startingBlock, currentBlock, and highestBlock indicates sync in progress.
Peer Management
The
namespace is localhost-only by default. Never expose it over the network. If the node is bound to admin
0.0.0.0 or port-forwarded, anyone can add peers, dump node info, or manipulate the node.
List connected peers:
curl -s -X POST http://localhost:8545 \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"admin_peers","id":1}' | jq
Add a peer manually:
curl -s -X POST http://localhost:8545 \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"admin_addPeer","params":["enode://PUBKEY@IP:PORT"],"id":1}'
Node Info
curl -s -X POST http://localhost:8545 \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"admin_nodeInfo","id":1}' | jq
Chain and Network Identification
# Chain ID (hex) curl -s -X POST http://localhost:8545 \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"eth_chainId","id":1}' # Network version curl -s -X POST http://localhost:8545 \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"net_version","id":1}'
Log Inspection
Tail node logs from a background session. For reth, logs go to stdout/stderr by default. For geth, use
--log.file or redirect output.
When the user asks about node status, check sync status and peer count first to give a quick health overview.
Security
- Never bind RPC to
without a firewall. The default0.0.0.0
is safe. Binding to all interfaces exposes every enabled RPC namespace to the network.--http.addr 127.0.0.1 - Engine API requires JWT auth. If running a validator (consensus + execution), configure
on both the EL and CL clients. Without this, the authenticated Engine API port is unprotected.--authrpc.jwtsecret /path/to/jwt.hex - The
andadmin
namespaces are powerful. Only enable them on localhost. Never include them indebug
on a public-facing node.--http.api
Troubleshooting
- No response from RPC: Verify the node process is running and
is enabled.--http - Zero peers: Check firewall rules, ensure port 30303 (TCP/UDP) is open for discovery.
- Stuck sync: Check disk I/O with
, available space withiostat -x 1
, and CPU usage withdf -h
. Consider restarting withtop
(reth) or checking snap sync status (geth).--debug.tip