โ† All skills
Tencent SkillHub ยท Developer Tools

Etherscan

Use when you need to query Etherscan API V2 for onchain activity, contract metadata, ABI/source retrieval, proxy implementation discovery, and transaction/lo...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Use when you need to query Etherscan API V2 for onchain activity, contract metadata, ABI/source retrieval, proxy implementation discovery, and transaction/lo...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, agents/openai.yaml, references/rate-limits.md, references/endpoint-cheatsheet.md, references/explorer-url-patterns.md, references/network-map.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Overview

Use this skill to fetch onchain data from Etherscan-compatible explorers using the unified V2 API. Core model: One base URL: https://api.etherscan.io/v2/api One API key Switch chains via chainid Explorer URLs relevant to this workspace: Ethereum mainnet: https://etherscan.io/ Ethereum hoodi: https://hoodi.etherscan.io/ Taiko mainnet: https://taikoscan.io/ Taiko hoodi: https://hoodi.taikoscan.io/ Read first: references/network-map.md references/endpoint-cheatsheet.md references/rate-limits.md references/explorer-url-patterns.md

Required Inputs

Collect these before querying: ETHERSCAN_API_KEY Target chainid Address / tx hash / block range Endpoint intent (activity, logs, source, ABI, status)

Deterministic Workflow

Pick chainid from references/network-map.md. Choose endpoint by intent from references/endpoint-cheatsheet.md. Build request on https://api.etherscan.io/v2/api with required params. Parse status, message, result. If contract endpoint returns proxy metadata (Proxy == "1"), follow Implementation. For large history, paginate (page, offset) and/or narrow block ranges.

Method Selection

GoalModule / ActionAddress normal tx historyaccount / txlistAddress internal tx historyaccount / txlistinternalERC20 transfer historyaccount / tokentxEvent logslogs / getLogsContract ABIcontract / getabiContract source + proxy fieldscontract / getsourcecodeContract deployer + creation txcontract / getcontractcreationTx execution statustransaction / getstatusTx receipt statustransaction / gettxreceiptstatus

Quick Commands

Set key once: export ETHERSCAN_API_KEY="<your_key>" Get ABI (Taiko mainnet example): curl -s "https://api.etherscan.io/v2/api?chainid=167000&module=contract&action=getabi&address=<contract>&apikey=$ETHERSCAN_API_KEY" Get source + proxy metadata (Taiko hoodi example): curl -s "https://api.etherscan.io/v2/api?chainid=167013&module=contract&action=getsourcecode&address=<contract>&apikey=$ETHERSCAN_API_KEY" Get address activity in block window: curl -s "https://api.etherscan.io/v2/api?chainid=1&module=account&action=txlist&address=<address>&startblock=<from>&endblock=<to>&page=1&offset=100&sort=desc&apikey=$ETHERSCAN_API_KEY" Get logs for a contract in block window: curl -s "https://api.etherscan.io/v2/api?chainid=560048&module=logs&action=getLogs&address=<contract>&fromBlock=<from>&toBlock=<to>&page=1&offset=1000&apikey=$ETHERSCAN_API_KEY"

Proxy-Aware Contract Handling

When getsourcecode returns: Proxy: "1" non-empty Implementation then: Keep runtime call target as proxy address. Fetch ABI/source from implementation address. Decode selectors against implementation ABI. Re-check implementation before privileged write analysis.

Safety Rails

Never skip these checks: Always set correct chainid; wrong chain silently yields wrong context. Respect plan limits and add client-side throttling/retries. Treat status: "0" as non-success even with HTTP 200. For analytics windows, lock startblock/endblock explicitly. For logs, remember offset max is 1000 per query and paginate. Keep retries idempotent and resume scans from stored cursors/block checkpoints.

Expected Output

Return: exact URL/query used (without exposing secret key) chain (chainid + explorer) endpoint (module/action) parsed status/result summary proxy follow-up decisions (Proxy, Implementation) when contract-related

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Docs1 Config
  • SKILL.md Primary doc
  • references/endpoint-cheatsheet.md Docs
  • references/explorer-url-patterns.md Docs
  • references/network-map.md Docs
  • references/rate-limits.md Docs
  • agents/openai.yaml Config