Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Understand blockchain technology, interact with smart contracts, and evaluate when distributed ledgers solve real problems.
Understand blockchain technology, interact with smart contracts, and evaluate when distributed ledgers solve real problems.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
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).
ConceptOne-linerDistributed ledgerShared database synchronized across nodes, no single ownerConsensusHow strangers agree on truth without trusting each otherImmutabilityChanging history requires re-doing all subsequent workSmart contractCode that executes automatically when conditions are metGasFee paid to network for computation For mental models and analogies, see concepts.md.
// 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.
β 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.
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.
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.