ethereum-local-wallet

ethereum-local-wallet is a skill for Claude Code, Codex from ObolNetwork/obol-stack. It costs 55 tokens per session (1,532 once invoked), scanned A, original, Apache-2.0.

A wallet interface for signing Ethereum messages and transactions through a remote signer that keeps the private keys. Ethereum transactions can transfer assets or change data in smart contracts.

In plain words
What is it for?
Use it to send ETH or tokens, approve token spending, sign messages or typed data, and call smart contracts that change blockchain state.
Why use it?
It provides a controlled way to perform blockchain actions without giving the agent direct access to private keys.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/obolnetwork/obol-stack/ethereum-local-wallet
Any agent
npx skills add ObolNetwork/obol-stack --skill ethereum-local-wallet
Clone the repo
git clone --depth 1 https://github.com/ObolNetwork/obol-stack

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ethereum-local-wallet

README.md
[![agentmods](https://agentmods.dev/badge/skills/obolnetwork/obol-stack/ethereum-local-wallet.svg)](https://agentmods.dev/skills/obolnetwork/obol-stack/ethereum-local-wallet)
Your own site
<a href="https://agentmods.dev/skills/obolnetwork/obol-stack/ethereum-local-wallet"><img src="https://agentmods.dev/badge/skills/obolnetwork/obol-stack/ethereum-local-wallet.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,532 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00055 $0.01532
Opus 5 $0.00028 $0.00766
Sonnet 5 $0.00011 $0.00306
Haiku 4.5 $0.00006 $0.00153

Measured 6d ago against content hash c54f92b13b07, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

ethereum-local-wallet scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/signer.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

internal/embed/skills/ethereum-local-wallet/SKILL.md · 128 lines

How it starts

The opening of the file, as written. The whole thing — 128 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Ethereum Wallet

Sign and send Ethereum transactions through the local remote-signer service. The agent never accesses private keys directly — all signing is done via HTTP API calls to the remote-signer, which holds encrypted keystores.

When to Use

  • Sending ETH or ERC-20 tokens
  • Signing messages (EIP-191) or typed data (EIP-712)
  • Interacting with smart contracts that modify state (write operations)
  • Approving token allowances
  • Any operation that requires a transaction signature

When NOT to Use

  • Read-only queries — use the ethereum-networks skill instead (rpc.sh)
  • Key generation — keys are managed by the obol CLI, not by the agent
  • Cross-chain bridges — not supported in this skill

Quick Start

# List your signing addresses
python3 scripts/signer.py accounts

# Check remote-signer health
python3 scripts/signer.py health

# Sign a message
python3 scripts/signer.py sign-msg 0xYOUR_ADDRESS "Hello, Ethereum!"

# Sign a transaction (returns raw signed tx hex, does NOT broadcast)
python3 scripts/signer.py sign-tx \
  --from 0xYOUR_ADDRESS --to 0xRECIPIENT \
  --value 1000000000000000000 --network mainnet

# Sign AND broadcast a transaction via eRPC
python3 scripts/signer.py send-tx \
  --from 0xYOUR_ADDRESS --to 0xRECIPIENT \
  --value 1000000000000000000 --network mainnet

Available Commands

Command Description
accounts List all signing addresses from the remote-signer
health Check remote-signer /healthz endpoint
sign <address> <hex-data> Sign a raw 32-byte hash
sign-msg <address> <message> Sign a message with EIP-191 prefix
sign-tx --from --to [--value] [--data] [--gas] [--nonce] [--network] Sign an EIP-1559 transaction
send-tx --from --to [--value] [--data] [--network] Sign AND broadcast a transaction via eRPC
sign-typed <address> <json> Sign EIP-712 typed data
gas-info [--network] Print recommended base/tip/max fees from eth_feeHistory

Read the full file on GitHub · 128 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 128 lines · 55 tokens per session scan A c54f92b13b07

Subscribe to this mod's changes

ethereum-local-wallet is a skill published in the GitHub repository ObolNetwork/obol-stack (11 stars, last pushed 2d ago), licensed Apache-2.0. It adds 55 tokens to every session and 1,532 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

perp-cli

Multi-DEX perpetual futures trading via the perp-cli command-line tool. Use when user asks to: trade perps, check funding rates, scan/execute arbitrage (perp-perp or spot-perp), run delta-neutral strategies, bridge USDC across chains, manage positions/orders/leverage, deposit/withdraw, hedge spot+perp, trade HIP-3…

hypurrquant/perp-cli · 152 tokens

defi

Interact with DeFi protocols on MAINNET via the ChainGPT plugin. Aave V3 (supply/borrow/repay/withdraw + health-factor monitoring across 7 chains), Lido stETH staking, EigenLayer restaking. Yield discovery: Pendle yield-trading markets (PT/YT), Morpho Blue lending markets + MetaMorpho vaults. Custody-free — plugin…

ChainGPT-org/chaingpt-claude-skill · 186 tokens

scheduled-autonomy

Run trading/DeFi strategies on a schedule — DCA every morning, grid rebalances, recurring health checks — using saved plans + the execution journal (duesteps/markstep) + Claude Code scheduled agents, with the agent wallet executing inside hard policy caps. Triggers - run this daily, schedule a DCA, recurring buy, set…

ChainGPT-org/chaingpt-claude-skill · 92 tokens

trade

Execute live DEX trades on MAINNET via the ChainGPT plugin. EVM swaps via OpenOcean (default, no key, 10 mainnets), 1inch v6 (key-gated, better blue-chip routing), or CoW Protocol (MEV-protected intent-based for large trades). Solana swaps via Jupiter. Custody-free — the plugin builds unsigned tx / EIP-712 intent, the…

ChainGPT-org/chaingpt-claude-skill · 171 tokens

drift

Read live Drift Protocol mainnet data — Solana's largest non-custodial perps DEX. Use for market scanning, funding analysis, orderbook depth, and user position auditing. The Solana-native alternative to Hyperliquid: same custody-free model (on-chain collateral, user-held keys), different blockchain. Read-only in this…

ChainGPT-org/chaingpt-claude-skill · 133 tokens

tron

Tron (TVM) support via the ChainGPT plugin — at parity with the EVM + Solana surfaces. Read balances/resources/tx, research (DexScreener), risk (GoPlus), build UNSIGNED native TRX + TRC-20 transfers (custody-free), SunSwap quotes, JustLend lending, and autonomous agent-wallet signing behind a deterministic policy…

ChainGPT-org/chaingpt-claude-skill · 138 tokens