Cross-chain Bridges

Cross-chain bridges let users move assets or data between different blockchains, enabling interoperability across otherwise separate networks.

cross chain bridges glossary banner image

What are Cross-Chain Bridges?

Two places in this series have already touched on cross-chain bridges; our Blockchain SecurityBlockchain SecurityBlockchain security is the protection of blockchain networks and assets against attacks, fraud, and vulnerabilities using cryptography and consensus mechanisms.Keep learning article flagged them as the single most financially costly category of exploit the industry has seen, and our Blockchain ProtocolBlockchain ProtocolA blockchain protocol is the set of rules and standards that govern how a blockchain network operates, validates transactions, and reaches consensus.Keep learning article briefly introduced the broader concept of interoperability protocols. This article gives bridges the dedicated treatment the topic deserves: what they actually do, why the problem they're solving is harder than it might initially appear, the fundamentally different approaches that exist for solving it, and why their security record is what it is.

Why Bridges Need to Exist at All

Our Blockchain NetworkBlockchain NetworkA blockchain network is a system of computers connected to each other that follow the same set of rules to record, share, and validate transactions.Keep learning article established that different Blockchain NetworkBlockchain NetworkA blockchain network is a system of computers connected to each other that follow the same set of rules to record, share, and validate transactions.Keep learning make different trade-offs; and our articles on BitcoinBitcoinBitcoin is a decentralized digital currency that enables secure peer-to-peer transactions without relying on a central authority.Keep learning, EthereumEthereumEthereum is a decentralized blockchain platform that runs smart contracts and dApps, using its native cryptocurrency (ETH) for transactions and fees.Keep learning, and SolanaSolanaSolana is a high-performance blockchain designed for fast, low-cost transactions and scalable decentralized applications.Keep learning demonstrated, concretely, what those different trade-offs look like in practice across three major networks. The inevitable consequence of an ecosystem where multiple, genuinely different networks exist; each with its own assets, its own validator set, its own consensus rules, and its own state; is that those networks have no natural way to talk to each other.

Bitcoin has no inherent knowledge of Ethereum's existence. Ethereum has no inherent knowledge of Solana's. A Crypto TokensCrypto TokensCrypto tokens are digital assets built on existing blockchains that represent value, access, or utility within a specific project or ecosystem.Keep learning native to one chain is, by default, simply nonexistent on any other. An ETH held on Ethereum cannot be directly sent to a Solana address, any more than a euro can be spent in a shop that only accepts dollars; not because either is inferior, but because they operate within entirely separate, mutually unaware systems.

This fragmentation creates a genuine practical problem for users who might want to move value or interact with applications across multiple networks; and a cross-chain bridge is the infrastructure designed to solve it: a mechanism allowing assets or data to move from one blockchain to another, despite each chain having no native awareness of the other's state.

The Fundamental Challenge: Trustless Communication Between Isolated Systems

The core technical difficulty of building a bridge is considerably deeper than it might initially appear, and understanding it properly explains why bridge design involves such difficult security trade-offs.

Within a single blockchain network, the Blockchain consensus mechanismsBlockchain consensus mechanismsA consensus mechanism is a method for validating transactions and securing a blockchain without relying on a central authority.Keep learning and cryptographic HashingHashingHashing is the process of converting data into a fixed-length code using a cryptographic function, ensuring data integrity and security.Keep learning covered throughout this series ensure that every Blockchain NodesBlockchain NodesA node is simply a computer that participates in a blockchain network. Each node stores a copy of the blockchain and helps verify transactions.Keep learning can verify any claim about the network's state independently; nobody needs to trust anyone's word about whether a transaction occurred or an address holds a given balance, because anyone can verify it themselves against the same canonical chain. This trustless verification is the entire point of DecentralizationDecentralizationDecentralization is the distribution of control and decision-making across a network instead of a single central authority.Keep learning consensus, and it works elegantly within the boundaries of a single network.

Between two separate networks, this elegance breaks down entirely. Ethereum's consensus mechanism tells Ethereum nodes what's true on Ethereum; but it says absolutely nothing about what's happening on Solana. A claim made on one chain about what happened on another chain cannot be verified using the destination chain's own consensus mechanism, because that consensus mechanism only has knowledge of its own history. Bridging therefore requires some mechanism for one chain to become convinced that something genuinely happened on a different chain; without being able to verify that claim natively.

Everything in bridge design is, ultimately, a different answer to that single underlying challenge.

How Bridges Actually Work: The Lock-and-Mint Model

The most common and conceptually straightforward bridge mechanism is lock-and-mint. It works as follows:

  1. A user sends native assets; say, ETH on Ethereum; to a Smart ContractsSmart ContractsA smart contract is a self-executing computer program deployed on a blockchain. It contains rules and conditions written directly into code.Keep learning or CustodyCustodyCustody in crypto is the secure storage and management of private keys or assets, handled either by the user (self-custody) or a third party.Keep learning on the source chain. Those assets are locked, temporarily or permanently, in this holding contract.
  2. A corresponding, representative token; commonly called a wrapped token; is minted on the destination chain in the same quantity. This wrapped token represents a claim on the locked original asset.
  3. The user can now use this wrapped token within the destination chain's ecosystem; trading it, using it as collateral in DeFiDeFiDeFi stands for Decentralized Finance. It refers to a collection of applications and platforms built on blockchain that allow people to transact without banks.Keep learning protocols, and so on; as if it were the original asset.
  4. To retrieve the original asset, the process is reversed: the wrapped tokens are burned on the destination chain, and the original assets are released from the holding contract on the source chain.

The most widely recognized example of this pattern is Wrapped Bitcoin (WBTC); a token on Ethereum representing Bitcoin held in custody elsewhere, allowing Bitcoin's value to be accessed within Ethereum's DeFi ecosystem through ERC-20 compatible smart contracts. You can verify WBTC's total circulating supply and the corresponding custodied Bitcoin balance directly using Etherscan's WBTC token tracker, offering a transparent, live view of how much Bitcoin is currently bridged into the Ethereum ecosystem through this mechanism.

Trusted vs. Trustless Bridges

Within the lock-and-mint model and its variants, there's a critical design dimension that shapes the entire security profile of any bridge: how the claim that an asset has been locked on the source chain is actually communicated to, and verified by, the destination chain.

Trusted (Custodial) Bridges

In a trusted bridge, a centralized or semi-centralized entity; or a committee of entities; monitors the source chain, observes the lock event, and attests to the destination chain that it occurred. The destination chain's minting logic trusts these attestations and mints wrapped tokens accordingly.

This is simple to implement and fast to operate, but it reintroduces exactly the kind of centralized trust that blockchain technology, as established from our very first article onward, was specifically designed to remove. If the trusted entity or committee is compromised, colluded with, or simply makes an error, the bridge can be exploited; and because bridges typically hold enormous concentrations of assets (all the locked tokens backing the wrapped tokens on the other side), a single compromise can result in losses of genuinely extraordinary scale.

Trustless (Cryptographic) Bridges

A trustless bridge attempts to verify cross-chain events using CryptographyCryptographyCryptography is the science of securing information using mathematical techniques to protect data, ensure privacy, and verify authenticity.Keep learning proof rather than relying on a trusted intermediary's attestation. Several approaches exist along this spectrum.

Light client bridges run a simplified version of the source chain's consensus verification logic inside a smart contract on the destination chain; allowing the destination chain to cryptographically verify, for itself, that a given block was genuinely produced by the source chain's consensus mechanism, and therefore that transactions within it actually occurred. This is the most fundamentally trustless approach, but the most computationally expensive: verifying another chain's consensus proofs inside an Ethereum Virtual Machine (EVM)Ethereum Virtual Machine (EVM)EVM (Ethereum Virtual Machine) is the software environment that executes smart contracts and decentralized applications on compatible blockchains.Keep learning smart contract consumes substantial Gas FeesGas FeesGas fees are transaction costs paid to network validators to process and secure operations on a blockchain, varying with demand and complexity.Keep learning, making this approach historically costly and slow.

Zero-knowledge proof bridges are an increasingly prominent area of research and development, using a category of cryptographic proof; the zero-knowledge proof, or ZK proof; that allows one party to prove to another that a statement is true, with complete mathematical certainty, without revealing any of the underlying data. Applied to bridging, a ZK bridge generates a compact, efficiently verifiable proof that a specific event occurred on the source chain, which the destination chain's smart contract can verify at considerably lower computational cost than a full light client verification. This approach represents one of the most active, promising frontiers in cross-chain infrastructure, directly connecting to the broader ZK rollup technology referenced in our Ethereum and Layer 2 BlockchainLayer 2 BlockchainLayer 2 blockchain is a secondary protocol built on top of a Layer 1 chain to improve scalability, reduce fees, and speed up transactions.Keep learning discussions.

Optimistic bridges take a different approach borrowed from Ethereum's own optimistic rollup model: they assume cross-chain messages are valid by default, process them immediately, but maintain a challenge window during which any observer who can prove the message was fraudulent can raise that challenge and reverse the action. This model trades speed (there's an inherent delay equal to the challenge window, often seven days) for a more favorable computational profile than either light client or ZK verification.

The Security Problem, Revisited Directly

Our blockchain security article flagged bridges as the category responsible for some of the largest single-incident losses in the industry's history, and it's worth being specific about why; with the full technical context now available; since the reason is considerably more nuanced than simply "bridges are poorly built."

The concentration of locked assets is inherently a target. A bridge contract holding billions of dollars of locked ETH, USDC, or BTC is, by the nature of the lock-and-mint model, a single point of value concentration in a way that no individual user Crypto WalletsCrypto WalletsA crypto wallet doesn’t store coins like a piggy bank. Instead, it keeps keys that let you access your crypto on the blockchain.Keep learning or DeFi protocol typically is. A vulnerability in that one contract; or in the off-chain attestation mechanism trusted bridges rely on; can result in an attacker minting unlimited wrapped tokens on the destination side, or draining the entire locked asset Liquidity PoolsLiquidity PoolsLiquidity pools are collections of crypto assets locked in smart contracts that enable decentralized trading by providing liquidity to exchanges.Keep learning on the source side, in a single transaction. There is no central authority to freeze the attack in progress or reverse the outcome, for the exact reasons established throughout this entire series.

The attack surface is also broader than an equivalent single-chain protocol, since it necessarily spans two separate security domains simultaneously; the security of the source chain, the security of the destination chain, and the security of whatever mechanism connects them. A chain of composable interactions that is perfectly secure on each individual chain can still be exploited through the cross-chain communication layer between them, because that layer operates outside both chains' native security guarantees.

DeFiLlama's Bridge Volume and TVL Tracker is a live, independently maintained dashboard tracking the current total value locked across every major bridge, alongside historical volume data; a useful, concrete view of exactly how much value flows through this infrastructure at any given time, and therefore why its security deserves the level of scrutiny our blockchain security article outlined.

Native Bridges vs. Third-Party Bridges

A distinction worth drawing explicitly is between native bridges; those built and maintained by the Layer 2 or chain's own development team specifically for moving assets between that chain and Ethereum; and third-party bridges built by independent teams supporting multiple networks simultaneously.

Native bridges, such as the official Arbitrum Bridge or the Optimism Gateway, generally benefit from being designed in close coordination with the underlying protocol and typically carry the implicit backing of the Layer 2 team's own security research. They tend to use optimistic verification matching the Layer 2's own security model, and are typically the most conservative, if not always the fastest or cheapest, option for moving assets between Ethereum and a specific Layer 2.

Third-party bridges often offer faster settlement, support for a broader range of networks, and sometimes lower Transaction feesTransaction feesTransaction fees are charges paid to process and validate transactions on a blockchain network.Keep learning; at the cost of introducing their own independent trust and security assumptions, which users should evaluate directly. Li.Fi and Socket are two widely used cross-chain bridging aggregators that compare available routes and fees across multiple bridge providers simultaneously, helping users make informed comparisons rather than defaulting to whichever bridge they happen to encounter first.

Interoperability Protocols: The Broader Vision

Bridges, in their current form, are largely an ad-hoc, pairwise solution to a fragmentation problem that grows more complex with every new chain added to the ecosystem. The broader, longer-term vision for the industry is general-purpose interoperability protocols; infrastructure that doesn't merely move specific assets between specific pairs of chains, but enables arbitrary message passing and cross-chain communication across an entire ecosystem of networks simultaneously.

Projects like Polkadot and Cosmos were designed, from their foundations, around this vision; building protocol-level infrastructure specifically for connecting independent blockchains, rather than treating interoperability as a feature to be added on top after the fact. Polkadot's parachain model connects specialized application-specific blockchains to a central relay chain providing shared security. Cosmos' Inter-Blockchain Communication (IBC) protocol establishes a standardized message-passing layer allowing any two IBC-compatible chains to communicate natively. LayerZero and Wormhole, meanwhile, represent newer approaches to bringing general message-passing interoperability to networks that weren't originally built with it in mind; including Ethereum and Solana.

You can track the volume and activity of the IBC protocol across the Cosmos ecosystem specifically using MapOfZones, a live visualization tool that maps IBC transaction flow between connected Cosmos chains in real time; one of the more visually striking illustrations available of what a genuinely interconnected multi-chain ecosystem actually looks like in operation.

Bringing It Together

Cross-chain bridges are, at their core, a collection of engineering solutions to a problem that blockchain technology's inherent design creates: multiple powerful, independent networks with no native way to communicate. To summarize:

  • Bridges exist because separate blockchains are, by design, mutually unaware; each has its own consensus, its own state, and no native knowledge of what's happening elsewhere
  • The lock-and-mint model is the most common mechanism; assets are locked on the source chain, and representative wrapped tokens are minted on the destination chain
  • Trusted bridges rely on a centralized or semi-centralized committee to attest to cross-chain events, reintroducing a point of trust; trustless bridges (light client, ZK proof, and optimistic variants) attempt to verify claims cryptographically
  • Bridges are the highest-value single targets in the blockchain ecosystem due to their inherent concentration of locked assets, and their attack surface spans two separate security domains simultaneously
  • Native bridges offer conservative, protocol-aligned security for specific Layer 2 networks; third-party bridges offer broader reach and sometimes better rates, at the cost of independent trust assumptions
  • Interoperability protocols like Polkadot, Cosmos IBC, LayerZero, and Wormhole represent the broader, longer-term vision of general-purpose cross-chain communication rather than pairwise asset bridging

The bridge problem is, in many ways, a direct, practical consequence of the decentralization principles this series has examined from the very beginning: independent networks with no central coordinator are inherently difficult to connect, and every approach to doing so involves navigating a new version of the same fundamental trust trade-off; the same one that has shaped every design decision covered across all twenty-six articles in this series.

Recap

Cross-chain bridges are systems that allow assets or data to move between different blockchains that would otherwise be isolated from one another. Because each blockchain operates independently, bridges act as connectors, enabling interoperability across the crypto ecosystem.

Most bridges work by locking or burning assets on one chain and minting equivalent representations on another.

Tag System

The tags found in our glossary are there to help you better understand presented definitions. They showcase how certain concepts integrate and interact within the ecosystem.

Rectangular tags signal a concept related to BlockchainBlockchainThink of blockchain as a public notebook that everyone owns a copy of. Whatever gets written in it is permanent and visible to all.Keep learning as a technology. Whereas rounded tags represent CryptocurrencyCryptocurrencyCryptocurrency, often called “crypto,” is a form of digital currency that uses cryptography (advanced math and code) to keep it secure.Keep learning in more of a financial aspect. You’ll also see rectangular dashed tags for Web3Web3Web3 is the idea of a decentralized internet powered by blockchain.Keep learning and  rounded dashed tags for DeFiDeFiDeFi stands for Decentralized Finance. It refers to a collection of applications and platforms built on blockchain that allow people to transact without banks.Keep learning specifically.

Learn more about the relationship between all the tags and their respective concept with our Free Interactive Courses.

FAQ

No. In most cases, the original token never leaves its native chain. Instead, it is locked or burned, and a corresponding token is minted on the destination chain to represent it.

A wrapped token is a blockchain-native representation of an asset from another chain. For example, Wrapped Bitcoin (WBTC) represents Bitcoin on Ethereum and is backed by real BTC locked elsewhere.

Lock-and-mint bridges lock assets on the source chain and mint wrapped versions on the destination chain. Burn-and-mint bridges destroy the asset on the source chain and recreate it on the destination chain, ensuring it exists in only one place at a time.

Bridges often hold large amounts of locked assets and rely on complex mechanisms to verify cross-chain activity. This makes them attractive targets for hackers and difficult to secure perfectly.

Not necessarily. Decentralized bridges reduce reliance on a single trusted entity, but their complexity can introduce vulnerabilities. Centralized bridges are simpler but require users to trust the operator.

If a bridge is compromised, attackers may mint unbacked tokens or unlock funds improperly, potentially causing massive losses and destabilizing connected ecosystems.

In some cases, yes. Users can stay within a single blockchain ecosystem or use native assets. However, this limits flexibility and access to broader crypto functionality.

Possibly, through shared standards or native interoperability protocols, but for now, bridges remain the primary solution for cross-chain interaction.

More Blockchain fundamentals

proof of work glossary cover image

Proof of Work

Proof of Work (PoW) is a consensus mechanism where miners use computing power to validate transactions and secure the blockchain.

Keep learning
oracles glossary cover image

Oracles

A crypto oracle is a service that feeds external real-world data into blockchains so smart contracts can react to off-chain events.

Keep learning
blockchain glossary cover image

Blockchain

Think of blockchain as a public notebook that everyone owns a copy of. Whatever gets written in it is permanent and visible to all.

Keep learning