跳至主要内容
小龙虾小龙虾AI
🤖

Blockchain

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

下载926
星标2
版本1.0.0
金融财务
安全通过
💬Prompt

技能说明


name: "Blockchain" description: "Understand blockchain technology, interact with smart contracts, and evaluate when distributed ledgers solve real problems."

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-liner
Distributed ledgerShared database synchronized across nodes, no single owner
ConsensusHow strangers agree on truth without trusting each other
ImmutabilityChanging history requires re-doing all subsequent work
Smart contractCode that executes automatically when conditions are met
GasFee 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.

如何使用「Blockchain」?

  1. 打开小龙虾AI(Web 或 iOS App)
  2. 点击上方「立即使用」按钮,或在对话框中输入任务描述
  3. 小龙虾AI 会自动匹配并调用「Blockchain」技能完成任务
  4. 结果即时呈现,支持继续对话优化

相关技能