チェーン分析(Chain Analysis)
ブロックチェーンのデータを調査し、資金の流れを追跡して、仮名のアドレスを現実世界の人物や組織と結びつけるフォレンジック手法。
主要な手法には、アドレスのクラスタリング、ヒューリスティクス、トランザクショングラフ分析が含まれます。ChainalysisやEllipticなどの主要な分析企業は、法執行機関が盗まれた資金を追跡したり、仮想通貨取引所がマネーロンダリング防止(AML)規制を遵守したりするためのツールを提供しています。
graph LR
Center["チェーン分析(Chain Analysis)"]:::main
Pre_blockchain["blockchain"]:::pre --> Center
click Pre_blockchain "/terms/blockchain"
Pre_cryptocurrency["cryptocurrency"]:::pre --> Center
click Pre_cryptocurrency "/terms/cryptocurrency"
Rel_blockchain_forensics["blockchain-forensics"]:::related -.-> Center
click Rel_blockchain_forensics "/terms/blockchain-forensics"
Rel_transaction_tracing["transaction-tracing"]:::related -.-> Center
click Rel_transaction_tracing "/terms/transaction-tracing"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧒 5歳でもわかるように説明
すべてのお金の送金が記録されている巨大な公開ノートを調査する探偵だと想像してください。ただし、全員が偽名を使っています。チェーン分析とは、その偽名が本当は誰なのかを突き止めるために、ページからページへとお金を追いかける探偵作業です。
🤓 Expert Deep Dive
分析手法は、UTXOベース(ビットコイン)とアカウントベース(イーサリアム)のブロックチェーンで異なります。UTXO分析は、CIOH(Common Input Ownership Heuristic)に強く依存しています。アナリストはクラスタリングアルゴリズムを使用して数千のアドレスを単一のエンティティにグループ化し、テイント分析(Taint Analysis)を使用して不正な資金の割合を追跡します。これを回避するためにミキサー(Tornado Cashなど)やプライバシーコイン(Monero)が使用されます。
❓ よくある質問
Isn't cryptocurrency supposed to be anonymous?
Most cryptocurrencies (like Bitcoin and Ethereum) are pseudonymous, not anonymous. While your real name isn't on the blockchain, every transaction you make is public permanently. If someone links your real identity to your address once, your entire financial history on that chain becomes visible.
Who uses chain analysis?
Law enforcement uses it to catch criminals and recover stolen funds. Cryptocurrency exchanges use it to comply with Anti-Money Laundering (AML) laws by blocking deposits from known illicit sources. Researchers use it to study market behavior.
Can chain analysis track privacy coins like Monero?
It is extremely difficult. Privacy coins use advanced cryptography (like ring signatures and zero-knowledge proofs) specifically designed to hide the sender, receiver, and amount, breaking the transaction graph that chain analysis relies on.