An advanced interface for querying multi-chain EVM data, including balances, transactions, and smart contract details via the Etherscan API v2.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install etherscan
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install etherscan using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
This skill provides a robust bridge between AI agents and the Etherscan API v2, enabling seamless access to blockchain data across various EVM-compatible networks. By integrating this into Openclaw Skills, developers can automate tasks like monitoring wallet balances, retrieving contract ABIs, and tracking ERC-20, ERC-721, or ERC-1155 token transfers without manual lookups. It ensures high-fidelity data retrieval by dynamically fetching chain IDs and adhering to proper API modules for specific tasks like gas tracking or transaction verification.
The implementation focuses on accuracy and efficiency, requiring a session-based chain list fetch to ensure that chain names are correctly mapped to their respective IDs. Whether you are auditing a wallet or monitoring gas prices, this tool provides the necessary technical infrastructure to interact with the Ethereum ecosystem and its many Layer 2 solutions through the reliable Etherscan framework.
First, obtain an API key from the Etherscan dashboard. You can configure the skill by saving your key to a local credentials file to be used with Openclaw Skills:
mkdir -p ~/.config/etherscan
cat > ~/.config/etherscan/credentials.json << 'EOF'
{
"api_key": "YOUR_ETHERSCAN_API_KEY"
}
EOF
chmod 600 ~/.config/etherscan/credentials.json
Alternatively, you can set the key as an environment variable in your terminal session:
export ETHERSCAN_API_KEY=your_api_key_here
The skill organizes data based on the Etherscan v2 API structure. Results are typically returned in a standard format to ensure consistency across Openclaw Skills integrations:
| Field | Description |
|---|---|
| status | String '1' for success, '0' for failure or no results found |
| message | Status description such as OK or NOTOK for rate limit errors |
| result | The main payload containing requested balances, transaction arrays, or ABI strings |
| chainid | The unique identifier for the EVM chain targeted by the query |
Loading
A privacy-preserving identity integration that uses zero-knowledge proofs to verify passports and ID cards without exposing personal data.

A protocol-driven approach for AI agents to discover and execute structured skills directly from websites instead of relying on fragile web scraping.

An AI-powered utility for generating standardized git commit messages following the Conventional Commits specification.

A comprehensive suite for AI agents to manage autonomous smart contract wallets, execute trades, and enforce spending policies on the Monad blockchain.

A high-performance financial data skill for Openclaw agents to query A-share stock prices, intraday bars, and valuation factors.

A specialized browser automation tool that retrieves real-time bid, ask, and high/low prices for over 20 types of precious metals.








































