/install blockchain
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.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install blockchain - After installation, invoke the skill by name or use
/blockchain - Provide required inputs per the skill's parameter spec and get structured output
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.