Cross-Chain Bridge Definition

A cross-chain bridge is software that lets one blockchain talk to another so users can move tokens or data between them. Blockchains normally work in their own bubbles with their own rules, so a bridge acts like a translator and courier between two networks.

Why bridges exist

Most chains cannot check what happens on other chains. That isolation blocks simple asset transfers and limits apps to a single network. Bridges solve this by sending verified messages between chains so an action on Chain A can trigger a related action on Chain B. This unlocks liquidity and features across ecosystems.

How a bridge transfer works

In a common flow, you deposit an asset into a contract on the source chain, the bridge records that deposit, then a corresponding asset appears on the destination chain. When you go back, the wrapped asset on the destination chain is destroyed and the original asset on the source chain is released to you. The exact steps vary by design, but the idea is to keep total supply consistent across chains.

Types of bridges

Cross-chain bridges are classified into three different types as listed below.

Lock and mint

You lock tokens on the source chain. The bridge mints a wrapped version on the destination chain. To return, you burn the wrapped token and unlock the original. Avalanche Bridge is an example of this pattern.

Burn and mint

You burn a native token on the source chain. A native token is minted on the destination chain. This is a one-way action for that hop. Circle’s Cross-Chain Transfer Protocol is a well-known example.

Lock and unlock via liquidity pools

You deposit into a pool on the source chain and withdraw from a pool on the destination chain, using relayers and market makers for settlement. Protocols like Celer, Connext, and Hop use variations of this model. 

Atomic swap and other methods

Some systems skip wrapped assets and use cryptographic swaps to exchange one chain’s asset for another directly, coordinated across chains. This is less like “moving” a single asset and more like a trust-minimized trade. 

Wrapped assets

Wrapped tokens are stand-ins that represent assets held or accounted for on another chain. They let users spend or stake value on a chain where the original token does not exist. The bridge’s rules make sure wrapped supply and locked supply line up. 

Use cases

  • Access DeFi on another chain without selling the original asset
  • Move liquidity between ecosystems to chase lower fees or faster confirmation times
  • Build apps that can accept users and assets from multiple chains in one place
    These are common patterns seen across major networks and help explain why bridge volumes can be large during active market periods.

Risks and trade-offs

Bridges add moving parts. Smart contracts, oracles, multisigs, relayers, and liquidity pools can fail or be attacked. History shows that bugs or key compromises on any piece of the bridge can lead to losses. Tracing funds across chains is also harder because activity gets split over multiple networks and contracts. Users should weigh security models and operational costs before using a bridge.

Fees, latency, and UX

Bridge transfers often include on-chain fees on both networks and a service fee to the bridge. Finality can take longer than a normal same-chain transfer because messages must be verified across chains. Designs that rely on liquidity networks may be faster but can have slippage or liquidity limits during busy periods.

Trust models and governance

Bridges range from “trustless” setups that depend on on-chain verification to “trusted” ones that rely on a set of operators. Many popular designs sit in the middle with committees, auditors, and external monitors. The model you choose affects security assumptions and how upgrades or pauses are handled.