← 返回 Skills 市场
ivangdavila

Blockchain

作者 Iván · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
2033
总下载
3
收藏
20
当前安装
1
版本数
在 OpenClaw 中安装
/install blockchain
功能描述
Understand blockchain technology, interact with smart contracts, and evaluate when distributed ledgers solve real problems.
使用说明 (SKILL.md)

What This Covers

Blockchain fundamentals and practical interaction — the technology, not the speculation.

In scope: Distributed ledgers, consensus, transactions, smart contract interaction, wallets, token standards. Out of scope: Trading strategies, price analysis, specific DeFi protocols, Solidity development (see dedicated skills).

Core Concepts

Concept One-liner
Distributed ledger Shared database synchronized across nodes, no single owner
Consensus How strangers agree on truth without trusting each other
Immutability Changing history requires re-doing all subsequent work
Smart contract Code that executes automatically when conditions are met
Gas Fee paid to network for computation

For mental models and analogies, see concepts.md.

Developer Quick Reference

// Read contract (viem)
const balance = await client.readContract({
  address: TOKEN, abi: erc20Abi,
  functionName: 'balanceOf', args: [wallet]
})

// Write requires wallet + confirmation wait
const hash = await walletClient.writeContract({...})
const receipt = await client.waitForTransactionReceipt({ hash })

Common traps: missing allowance checks, wrong decimals (ETH=18, USDC=6), not awaiting confirmations.

For full patterns, see dev.md.

When to Use Blockchain

Use when: Multiple parties need shared truth, no trusted authority exists, immutability is critical, settlement costs are high.

Don't use when: Single org controls data, you trust a central authority, data needs deletion (GDPR), or a database solves it.

The Database Test: Would PostgreSQL with audit logs solve this? If yes, skip blockchain.

For decision framework and enterprise platforms, see evaluation.md.

Security Essentials

  • Seed phrase = master key — never share, never screenshot
  • Hardware wallet > software wallet > exchange
  • Test transactions before large transfers
  • Verify URLs obsessively — phishing clones are sophisticated

For wallet security and scam patterns, see security.md.

安全使用建议
This skill is an educational/developer guide and appears to be what it says. It does not request secrets or install code. Two practical cautions: (1) dev.md shows examples that use process.env.RPC_URL and wallet clients; if you run those examples you will need an RPC endpoint and a signer — never paste seed phrases or private keys into chat or into places you don't control, and prefer hardware wallets or ephemeral keys. (2) The SKILL.md metadata declares no environment variables while examples reference RPC_URL; treat that as a documentation gap and confirm where you should store configuration before running any code. If you plan to let an agent perform transactions automatically, make sure you understand how keys are provided and never give full-control credentials to an automated skill.
功能分析
Type: OpenClaw Skill Name: blockchain Version: 1.0.0 The skill bundle provides comprehensive educational and reference material on blockchain technology, covering concepts, developer patterns, evaluation frameworks, and security best practices. All files are purely informational, with code snippets serving as illustrative examples rather than executable instructions for the AI agent. There is no evidence of prompt injection attempts, malicious code execution, data exfiltration, persistence mechanisms, or any other harmful behavior. The content consistently promotes secure development practices and awareness of common scams.
能力评估
Purpose & Capability
The name/description (blockchain fundamentals, smart contract interaction, evaluation) match the included content: conceptual notes, developer patterns, evaluation framework, and security guidance. All files (concepts.md, dev.md, evaluation.md, security.md) are coherent with the stated purpose and do not request unrelated capabilities.
Instruction Scope
The SKILL.md and dev.md contain concrete code snippets for reading and writing contracts and reference real-world operations (RPC client, wallet.writeContract). As an instruction-only skill it does not itself run code, but the developer examples imply actions that require network/RPC endpoints and signing keys. Importantly, the dev.md snippet references process.env.RPC_URL even though the skill declares no required env vars — instructions therefore reference runtime configuration not declared in the metadata. This is a documentation mismatch that could confuse less technical users into supplying credentials in the wrong place.
Install Mechanism
No install/spec is present (instruction-only). This is the lowest-risk model: nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no required environment variables or credentials, which is appropriate for an educational/instruction-only skill. However, dev.md demonstrates use of process.env.RPC_URL (an RPC endpoint) and implicitly requires wallet signers for write operations. The skill does not request or require any secrets in its metadata, so there is no immediate credential demand — but users following the instructions to perform writes will need to supply RPC endpoints and keys externally. This is reasonable for a developer guide, but callers should be careful not to paste seed phrases or private keys into chat or untrusted environments.
Persistence & Privilege
always:false and no install means the skill does not request persistent presence or elevated platform privileges. disable-model-invocation is false (normal); the skill being user-invocable and allowed to be invoked autonomously is the platform default and not concerning here, given the low-scope, read-only metadata.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install blockchain
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /blockchain 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug blockchain
版本 1.0.0
许可证
累计安装 20
当前安装数 20
历史版本数 1
常见问题

Blockchain 是什么?

Understand blockchain technology, interact with smart contracts, and evaluate when distributed ledgers solve real problems. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2033 次。

如何安装 Blockchain?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install blockchain」即可一键安装,无需额外配置。

Blockchain 是免费的吗?

是的,Blockchain 完全免费(开源免费),可自由下载、安装和使用。

Blockchain 支持哪些平台?

Blockchain 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Blockchain?

由 Iván(@ivangdavila)开发并维护,当前版本 v1.0.0。

💬 留言讨论