クロスチェーンブリッジ

クロスチェーンブリッジは、2つ以上の異なるブロックチェーンネットワーク間でトークン、データ、または命令の転送を可能にします。

A cross-chain bridge is a decentralized application (dApp) or protocol that enables the transfer of digital assets, data, or arbitrary messages between two or more independent blockchain networks. Blockchains are inherently siloed ecosystems, meaning they cannot natively communicate or interact with each other. Bridges act as intermediaries, facilitating this interoperability. The mechanism typically involves locking assets on the source chain and minting equivalent "wrapped" or representative assets on the destination chain, or vice-versa. For example, to move Bitcoin (BTC) to the Ethereum network, a bridge might lock BTC on the Bitcoin blockchain and issue ERC-20 tokens representing that BTC on Ethereum. When the user wants to move back, the ERC-20 tokens are burned on Ethereum, and the original BTC is unlocked on Bitcoin. Bridges can be centralized (operated by a single entity), federated (operated by a group of trusted entities), or fully decentralized (relying on smart contracts and validator networks). Key challenges include security (bridges are frequent targets for hacks due to the large value locked), trust assumptions (especially for centralized/federated bridges), and ensuring atomicity and finality of transactions across chains. Different bridge designs employ various consensus mechanisms and security models.

        graph LR
  Center["クロスチェーンブリッジ"]:::main
  Rel_bridges["bridges"]:::related -.-> Center
  click Rel_bridges "/terms/bridges"
  Rel_blockchain_interoperability_security["blockchain-interoperability-security"]:::related -.-> Center
  click Rel_blockchain_interoperability_security "/terms/blockchain-interoperability-security"
  Rel_bridging_protocol["bridging-protocol"]:::related -.-> Center
  click Rel_bridging_protocol "/terms/bridging-protocol"
  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;

      

🧠 理解度チェック

1 / 3

🧒 5歳でもわかるように説明

それは、おもちゃ(デジタルマネー)を安全に異なる遊び場(ブロックチェーン)の間で移動できる、特別な翻訳機兼フェリーサービスのようなものです。

🤓 Expert Deep Dive

クロスチェーンブリッジは、ブロックチェーンの相互運用性を実現するための重要なインフラストラクチャであり、異なる台帳間での流動性の流れと構成可能性を可能にします。アーキテクチャ的には、ブリッジは信頼モデルに基づいて分類できます。カストディアル(信頼された仲介者に資産を保持させる)、トラストレス(スマートコントラクトと暗号証明を使用し、多くの場合ロックアンドミント/バーンアンドリリースメカニズムを伴う)、またはハイブリッドモデルです。トラストレスブリッジは、一方のチェーンのイベントを監視し、もう一方のチェーンでアクションをトリガーするバリデーターセットまたはリレイヤーをしばしば使用します。例としては、ロックアンドミント(例:イーサリアム上のWBTC)、バーンアンドリリース、またはアトミックスワップ(ただし、通常は特定の資産タイプに限定され、同期条件が必要です)が挙げられます。セキュリティは最優先事項です。ブリッジは、価値の集約とクロスチェーン状態同期の複雑さにより、重大な攻撃ベクトルを表します。脆弱性は、スマートコントラクトのエクスプロイト、バリデーターの共謀、秘密鍵の侵害(カストディアルモデルの場合)、またはリレーメカニズムの欠陥から生じる可能性があります。設計では、チェーン間のトランザクションファイナリティの違い、潜在的なリオーグ、および一貫した資産表現の確保といった課題に対処する必要があります。高度なブリッジは、ゼロ知識証明または楽観的検証を探索して、セキュリティを強化し、信頼の仮定を減らします。

📚 出典