크로스체인 통신 (Cross-Chain Communication)
서로 다른 독립 블록체인 네트워크들이 데이터, 토큰 또는 메시지를 교환할 수 있게 하는 프로토콜과 기술의 총칭.
주요 프로토콜: 토큰 브리지(Wormhole), 범용 메시징(LayerZero, Axelar, CCIP), 네이티브 상호운용성(IBC, XCM), 원자적 스왑(HTLC).
graph LR
Center["크로스체인 통신 (Cross-Chain Communication)"]:::main
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
브리지 아키텍처: 잠금-발행(Lock-and-Mint, 허니팟 위험), 유동성 브리지(자본 비효율), 메시지 전달(LayerZero, CCIP), IBC(라이트 클라이언트를 통한 신뢰 불필요). 주요 해킹: Ronin($625M), Wormhole($320M), Nomad($190M).
❓ 자주 묻는 질문
Why are cross-chain bridges so often hacked?
Bridges are high-value targets because they hold large amounts of locked assets. The most common attack vectors are: compromised validator keys (Ronin Bridge), smart contract bugs (Wormhole), and economic exploits on governance logic (Beanstalk). Trusted bridges with small validator sets are especially vulnerable.
What is the difference between a bridge and IBC?
A traditional bridge relies on external validators (a trusted third party) to attest that an event happened on the source chain. IBC (Inter-Blockchain Communication) uses on-chain light clients to cryptographically verify the source chain's state directly, requiring no trusted intermediary.
What is an atomic swap?
An atomic swap is a trustless exchange of tokens between two different blockchains using Hash Time-Locked Contracts (HTLCs). It either completes in full (both parties get their tokens) or fails completely (both get their tokens back). No bridge or intermediary needed, but both chains must support the same hash function.