← Back to Skills Marketplace
ivangdavila

Blockchain

by Iván · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
2033
Downloads
3
Stars
20
Active Installs
1
Versions
Install in OpenClaw
/install blockchain
Description
Understand blockchain technology, interact with smart contracts, and evaluate when distributed ledgers solve real problems.
README (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.

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install blockchain
  3. After installation, invoke the skill by name or use /blockchain
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug blockchain
Version 1.0.0
License
All-time Installs 20
Active Installs 20
Total Versions 1
Frequently Asked Questions

What is Blockchain?

Understand blockchain technology, interact with smart contracts, and evaluate when distributed ledgers solve real problems. It is an AI Agent Skill for Claude Code / OpenClaw, with 2033 downloads so far.

How do I install Blockchain?

Run "/install blockchain" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Blockchain free?

Yes, Blockchain is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Blockchain support?

Blockchain is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Blockchain?

It is built and maintained by Iván (@ivangdavila); the current version is v1.0.0.

💬 Comments