← All skills
Tencent SkillHub Β· AI

Blockchain

Understand blockchain technology, interact with smart contracts, and evaluate when distributed ledgers solve real problems.

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

Understand blockchain technology, interact with smart contracts, and evaluate when distributed ledgers solve real problems.

⬇ 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, concepts.md, dev.md, evaluation.md, security.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 5 sections Open source page

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

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.

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.

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Docs
  • SKILL.md Primary doc
  • concepts.md Docs
  • dev.md Docs
  • evaluation.md Docs
  • security.md Docs