Interoperability has been a big deal for some time, just as it was in the early days of networking and many other technologies.
Still, unlike traditional technologies, permissionlessness makes it hard to standardize, and now, there’s a colony of approaches, each with its pros and cons for interoperability on different layers.
This article is your last stop. You’ll finally understand blockchain interoperability, learn its fundamentals, and how different stacks work and compare.
State of The Blockchain Interoperability Problem
Blockchains are trust-optimized systems. From a high-level overview, the problem is simple: Different networks have different architectures and run on different tech stacks, consensus mechanisms and protocols that cannot communicate directly. There’s also:
- Different Consensus Mechanisms: Blockchains validate their transactions differently to achieve consensus, which can be challenging, especially with trusted data from third-party chains.
- Different Data Structures: Bitcoin's Unspent Transaction Output (UTXO) model contrasts Ethereum's account-based model and Sui’s object model, so supporting the same data on other chains would be generic.
- Smart Contract Compatibility: The different virtual machines execute smart contracts based on the primitives they’re built on. Executing smart contracts is a big part of blockchain interoperability, and since there’s no standard environment, there are limits.
- Token Standards: ERC-20 on Ethereum and CW-20 on Cosmos are far from similar, and wrapping and pegging are risky.
...and many other issues.
Many projects are building solutions to these issues, from bridges to sidechains, relay chains with shared security, atomic swaps, interoperability protocols, and networks of networks.
You can classify the systems of an interoperability solution into four layers/components.
- The Fundamental Technical Layers: Messaging, Transport, and Consensus Layers.
- Security and Validation Components: Relayers, Validators, Oracles, and Verifiers.
- Cross-Chain Operations: Wrapped Tokens, Multisig Wallets, and Cross-Chain Liquidity.
- Innovative Mechanisms: Zero-Knowledge Proofs, State Synchronization, and Event Listeners.
The different interoperability solutions have different components. Bridges, Interoperability Protocols, and cross-chain messaging protocols are the most prominent interoperability solutions. Let’s overview how each of these works to achieve cross-chain operations, down to their implementation aspects like light clients, relayers, validator networks, liquidity pools, and messaging frameworks.
Bridges
Bridges are interoperability solutions that connect L1<>L2 and L2<>L2 and L1<>L1 communication, usually running on similar virtual machines, e.g. EVM chains.
There are two types of bridges: trusted bridges and trust-minimized bridges.
- Trusted Bridges rely on centralized parties to verify and execute the operation, e.g. (Axelar and IBC).
- Trust-minimized bridges, such as the Optimism to ETH official bridge, use on-chain mechanisms like fraud and validity proofs to verify transactions.
Most bridges use smart contracts on the Lock-and-Release or Burn-and-Mint Mechanism, where the bridge locks or burns the asset on the originating chain and mints or releases the same asset on the corresponding chain. For example, Circle CCTP uses the burn-and-mint mechanism, while Orbiter Finance uses lock-and-release.
Relayers are the intermediaries between the chains. They confirm the asset's status on the originating chain and update the bridge’s smart contract on the destination chain. Relayers usually run nodes on both chains to verify state changes or initiate transactions.
Trust-minimized bridges like Axelar also use a validator set for verifiability and more security. The number and security of the validators impact the bridge’s security.
Interoperability Protocols
Interoperability protocols provide a shared protocol layer for blockchains to connect to multiple blockchains and communicate natively, regardless of their primitive features.
Most interoperability protocols are networks of networks, e.g. Polkadot and Cosmos. Cosmos uses IBC (Inter-Blockchain Communication), while Polkadot relies on a relay chain and parachains.
Interoperability protocols use light clients that run on every chain in the network to verify the state of another chain. These light clients hold a simplified version of the chain’s state and verify block headers to confirm transactions.
On Polkadot, a relay chain connects multiple parachains (independent chains) and handles consensus, security and messaging. Collators in parachains gather transactions and produce blocks, while validators on the relay chain finalize the blocks.
Cosmos’s IBC Protocol uses a handshake mechanism to establish secure communication between blockchains. Each chain must have IBC modules set with light clients
Cross-Chain Messaging Protocols
Cross-chain messaging protocols are great for secure messaging across blockchains with different virtual machines. They’d usually allow smart contract calls, data exchange and complex cross-chain apps.
Popular solutions in this category are Axelar, LayerZero, Wormhole, Union, and Hyperlane. Axelar provides secure cross-chain messaging and transaction interoperability through a decentralized validator network, and Wormhole uses a guardian network to observe, validate, and relay messages.
These cross-chain messaging protocols transmit data between chains through standard messaging formats that contain instructions (e.g. to execute a smart contract on another chain) or any data.
Some protocols use external validators or Oracle-based verification systems to confirm the state of the source and destination chains. They also use protocol-specific relayers and messaging agents to send messages and submit validity proofs to contracts on the destination chain.
Also, messaging contracts on each chain process incoming messages to determine whether they’re valid before executing them after the validators and guardians have signed them.
Comparing Interoperability Solutions
Interoperability solutions vary in architecture, security models, core components implementation and many other aspects.
Here’s a table that overviews the three categories with more insight into their aspects.
Aspect | Bridges | Interoperability Protocols | Cross-Chain Messaging |
---|---|---|---|
Examples | Circle CCTP, Orbiter Finance, Optimism Bridge | Cosmos (IBC), Polkadot (Relay Chain) | Wormhole, LayerZero, Axelar, Hyperlane |
Architecture | Point-to-point connections between chains; Lock-and-Release or Burn-and-Mint pattern | Hub-and-spoke or network-of-networks with shared security | Universal messaging layer with standardized formats |
Security Model | Trusted (centralized) or Trust-minimized (on-chain verification) | Shared security model with validator networks | Hybrid model with guardian networks/oracle systems |
Core Components | Smart contracts, Relayers, Token wrapping mechanisms | Light, clients, Relay chain/hub, Protocol modules | Messaging contracts, Validator networks, Standard interfaces |
Scalability | n² relationship (linear growth with new chains) | n relationship (efficient with new chains) | Highly scalable, minimal additional infrastructure |
Implementation | Medium effort, high maintenance per bridge | High initial effort, lower subsequent integration | Medium effort, low maintenance |
Best Use Cases | Direct asset transfers, simple cross-chain transactions | Ecosystem-wide connectivity, complex applications | Universal messaging, cross-ecosystem applications |
Limitations | Limited scalability, higher security risks | Protocol lock-in, high initial setup cost | Message complexity, reliance on external networks |
The wheel is the best of its kind, so nobody is trying to reinvent it; in the same vein, every interoperability solution has its strong foot and Achilles heel.
Bridges are great! but they cannot transfer messages using interoperability protocols and cross-chain messaging apps.
Interoperability and cross-chain messaging protocols have bridges, and they can send messages and perform more complex operations, such as executing smart contracts and managing governance across chains.
Conclusion
Now, You Understand Blockchain Interoperability. If you’re building a project, you should overview these features and choose the best for your app, or use a bridge aggregator like LIFI if you’re building DeFi apps.
Interoperability is just getting started. We’re seeing features like restaking and tokenization take-off powered by interoperability between chains. I think with great interoperability, chains can focus on their strengths, and everyone wins.
Top comments (0)