NFTs & Tokens

What Is a Crypto Bridge? Cross-Chain Transfers Explained

By CryptoMarketDashboard Editorial Team Updated July 23, 2026 7 min read

Educational content · reviewed for accuracy · not financial advice

What Is a Crypto Bridge? Cross-Chain Transfers Explained
Quick answer

A crypto bridge is a protocol that lets you move tokens from one blockchain to another. Because blockchains are isolated systems that cannot natively communicate, bridges fill that gap — but they do so by introducing a new layer of smart contract risk. Bridge hacks have cost DeFi users billions of dollars and represent the single largest attack surface in all of crypto. Understanding how bridges work — and why they are risky — is essential before using one.

Live price right now

Prices update automatically every minute · data from CoinMarketCap.

On this pagetoggle

Why Blockchains Need Bridges

Every major blockchain is an isolated system. Ethereum does not natively know what is happening on Solana. Bitcoin has no way to send value directly to an Avalanche smart contract. Each chain maintains its own ledger, its own consensus rules, and its own token standards — and by design, none of them communicate with each other out of the box.

This isolation creates a real problem as the ecosystem has grown. Billions of dollars of value sit on Bitcoin, but the richest DeFi protocols exist on Ethereum, Arbitrum, and other EVM-compatible chains. Users who hold assets on one chain but want to participate in an application on a different chain have historically had only one option: sell on one chain, transfer to an exchange, and rebuy on the other. This is slow, expensive, and requires trusting a centralized intermediary.

Crypto bridges were built to solve this. A bridge is a protocol — a set of smart contracts and off-chain validators — that creates a representation of an asset from Chain A on Chain B, and manages the lifecycle of that representation so its value stays synchronized with the original.

How Bridges Work: The Lock-and-Mint Mechanism

The most common bridge design is called lock-and-mint. Here is how it works step by step:

  1. You send tokens to a bridge smart contract deployed on Chain A. The contract takes custody of your tokens and locks them — they cannot move while you hold the bridged version.
  2. The bridge's off-chain infrastructure detects this deposit, verifies it, and instructs a corresponding smart contract on Chain B to mint a new "wrapped" token representing that deposit.
  3. You receive the wrapped token on Chain B. Its value is designed to track the original 1:1 — one wrapped ETH (wETH) on Polygon should always be redeemable for one real ETH on Ethereum.
  4. When you want to bridge back, you return the wrapped tokens to the Chain B contract. Those wrapped tokens are burned (permanently destroyed). The bridge then releases your original tokens from the lock contract on Chain A.

This mechanism is elegant in concept but carries a significant structural vulnerability: the lock contract on Chain A holds a pool of real assets that backs every single wrapped token in circulation. That pool is an enormous, permanently visible target.

The Burn-and-Mint Alternative

Some newer bridge designs skip the custody step entirely using a burn-and-mint model:

  • Instead of locking your tokens on Chain A, the bridge permanently burns them — they cease to exist on the origin chain.
  • The bridge then mints an equivalent number of native tokens on the destination chain.

This eliminates the custodial lock pool that makes traditional bridges so attractive to attackers. However, it requires tight coordination between the two chains and works best when the same protocol controls token issuance on both ends. Circle's CCTP (Cross-Chain Transfer Protocol) for USDC uses this approach: USDC is burned on the origin chain and natively minted on the destination chain, with no wrapped intermediary.

Types of Crypto Bridges

Not all bridges are built the same. Understanding the spectrum helps you assess the tradeoffs before using one.

Centralized (custodial) bridges are operated by a company that holds the locked assets in its own custody. You trust that company to remain solvent, honest, and secure. The user experience is typically simpler, but you are reintroducing the same counterparty risk that self-custody is meant to eliminate.

Decentralized (trustless) bridges replace the central custodian with smart contracts and a network of validators or relayers. No single entity controls the locked funds. In theory, this is more trust-minimized — but it transfers the risk from counterparty trust to smart contract trust, and smart contract bugs have proven catastrophically exploitable.

Official/native bridges are maintained by the chain's own development team or foundation. Examples include the Ethereum to Polygon PoS bridge and the Optimism Gateway. These tend to have simpler architecture (and thus smaller attack surfaces), but they are often slower — optimistic rollup bridges, for instance, impose a seven-day withdrawal delay to allow time for fraud proofs.

Third-party bridges like Stargate, Across Protocol, Hop Protocol, and LayerZero-based applications offer faster speeds and support for more chain combinations. They use liquidity pools to provide instant finality: instead of waiting for a lock-and-mint cycle, liquidity providers pre-fund the destination chain and get reimbursed asynchronously. This speed is convenient but adds another layer of contract complexity.

Why Bridges Are the Biggest Attack Surface in Crypto

If you remember only one thing about bridges, make it this: bridges hold large pools of locked assets, and those pools are permanent, public, and accessible to anyone who can find a bug in the contract code.

The scale of bridge hacks is staggering:

HackYearAmount Lost
Ronin Network (Axie Infinity)2022$625 million
Wormhole2022$320 million
Nomad2022$190 million
Harmony Horizon2022$100 million

The year 2022 alone saw over $1 billion lost specifically to bridge exploits. These were not obscure fringe protocols — Ronin was the backbone of one of the most popular blockchain games in the world, and Wormhole was a flagship cross-chain messaging system backed by major venture investors.

Why are bridges so hard to secure?

Cross-chain communication is technically complex. A bridge must verify events on one blockchain from the perspective of another blockchain — two systems that, by design, do not communicate. This requires message-passing infrastructure that has many moving parts: on-chain contracts, off-chain validators or relayers, and cryptographic attestation schemes. Each layer is a potential point of failure.

In the Ronin hack, attackers compromised private keys belonging to the bridge's validators and used them to authorize fraudulent withdrawals. In the Wormhole hack, an attacker found a flaw in the smart contract's signature verification logic and minted $320 million worth of wrapped tokens without depositing anything. In the Nomad hack, a flawed configuration update made the bridge's contract vulnerable to a copycat attack where hundreds of independent users simply replicated the same malicious transaction pattern to drain funds.

The common thread: the more complex the system, the more surface area exists for exploits.

Wrapped Tokens: What You Are Actually Receiving

When you use a lock-and-mint bridge, the asset you receive on the destination chain is not the original token — it is a wrapped representation of it. Understanding the distinction matters.

wBTC (Wrapped Bitcoin) is the most well-known example: it is Bitcoin bridged to Ethereum, existing as an ERC-20 token. Its value is designed to track Bitcoin 1:1, but it is not Bitcoin. It is a claim on Bitcoin held by the bridge's custodian. If the bridge is exploited or the custodian becomes insolvent, wBTC holders can lose their funds even though the underlying BTC still exists on the Bitcoin network.

This is sometimes called "de-pegging" risk. A wrapped token is only worth its claimed value as long as the bridge backing it is solvent and functional. Most of the time this holds — but the bridge hacks listed above are real examples of it failing catastrophically.

How to Use a Bridge More Safely

Bridges are not inherently off-limits. Millions of transactions cross bridges safely every day. But the risks are real and non-trivial, and the following practices meaningfully reduce your exposure.

Prefer official or native bridges for large transfers. An official bridge maintained by a chain's core team typically has simpler architecture and a longer security track record than a third-party application. The tradeoff is usually speed — optimistic bridges are slower — but for large transfers that tradeoff is usually worth making.

Check audit history before using a third-party bridge. Reputable bridges publish their security audits from recognized firms. If a bridge has no published audit or a very recent one for a large codebase, treat that as a warning sign. Audit history is not a guarantee, but it signals that the team takes security seriously.

Always start with a small test transfer. Before bridging a large amount, send a minimal amount first. Verify it arrives correctly, confirm you can interact with it on the destination chain, and understand the full round-trip before committing significant funds.

Only bridge when you have a clear reason to. Unnecessary bridging = unnecessary risk. Every transfer through a bridge is an exposure to that bridge's smart contract and validator security. If you do not need to use an asset on another chain, leaving it on its native chain is simply safer.

Account for destination-chain gas costs. When you receive tokens on a new chain, you will need that chain's native token to pay gas for any subsequent transactions. If you bridge ETH to Arbitrum, you receive ETH that can pay Arbitrum gas. But if you bridge USDC to a chain where you have no native token, your USDC will arrive and sit — you will not be able to do anything with it until you acquire the native gas token through another route.

The Future: Trust-Minimized Cross-Chain Communication

The ecosystem is actively working to reduce bridge risk. Two approaches stand out.

LayerZero is an omnichain messaging protocol that allows applications to send messages between chains with configurable security assumptions. Rather than a single bridge holding custody, applications can use LayerZero's infrastructure to pass messages and handle asset transfers natively — distributing trust rather than concentrating it.

Chainlink CCIP (Cross-Chain Interoperability Protocol) is Chainlink's answer to the same problem. It combines Chainlink's decentralized oracle network with a separate Risk Management Network that independently monitors cross-chain transactions for anomalies. The goal is defense-in-depth: multiple independent layers must each pass verification before a cross-chain message is executed.

Neither approach has entirely solved the fundamental problem — cross-chain communication is still hard, and complexity is still the enemy of security — but these designs represent meaningful advances over the first generation of custodial lock-and-mint bridges.


This article is for educational purposes only and does not constitute financial, security, or investment advice. Using a crypto bridge involves real risk of loss, including the total loss of bridged assets due to smart contract exploits, validator compromise, or de-pegging events. No bridge is risk-free. Always research any bridge thoroughly, review its audit history, and verify its current security status before transferring funds. This is not a recommendation to use or avoid any specific protocol.

Frequently asked questions

Is it safe to use a crypto bridge?+

No bridge is fully safe, and bridge exploits have resulted in over $1 billion in losses in a single year. Risk varies by bridge design: official native bridges tend to have simpler code and smaller attack surfaces, while third-party bridges offer more speed and flexibility at higher risk. Best practices include using audited bridges, preferring native bridges for large transfers, and always starting with a small test amount before moving significant funds.

What is a wrapped token?+

A wrapped token is a representation of one blockchain's asset issued on a different blockchain. For example, Wrapped Bitcoin (wBTC) is an ERC-20 token on Ethereum whose value is designed to track Bitcoin 1:1. It is backed by actual Bitcoin held in custody by the bridge. Wrapped tokens let you use assets from one chain in applications on another chain, but they carry an additional risk: if the bridge backing them fails, the wrapped token can lose its peg or become worthless even though the underlying asset still exists.

How long does bridging take?+

It depends on the bridge design. Third-party bridges using liquidity pools (like Across or Stargate) often complete transfers in minutes or even seconds. Official bridges for optimistic rollups (like the Optimism Gateway or Arbitrum bridge when withdrawing back to Ethereum) impose a seven-day challenge window. Deposits into rollups are typically fast; withdrawals back to Ethereum mainnet are the slow step. Always check the expected time before initiating a transfer.

Can I bridge any token to any chain?+

Not necessarily. Support depends on which tokens and chains a specific bridge has integrated. Major assets like ETH, USDC, USDT, and wBTC are broadly supported across most bridges. Smaller or newer tokens may only be supported on specific bridges, or not at all. Always check the bridge interface for supported asset and chain combinations before assuming a transfer is possible.

What happened in the major bridge hacks?+

The largest bridge hacks exploited different vulnerabilities. The Ronin Network hack ($625M in 2022) involved attackers compromising the private keys of bridge validators and using them to authorize fraudulent withdrawals. The Wormhole hack ($320M in 2022) exploited a flaw in the bridge's signature verification smart contract, allowing the attacker to mint wrapped tokens without depositing any collateral. The Nomad hack ($190M in 2022) resulted from a misconfiguration that made any transaction replayable — hundreds of users independently exploited the same flaw to drain funds.

Do I need to pay gas fees when bridging?+

Yes, bridging typically involves gas fees on both the origin and destination chains. On the origin chain, you pay gas to interact with the bridge contract. On the destination chain, the bridge may cover the minting gas or pass it to you. More importantly, once you have tokens on the destination chain, you will need that chain's native token to pay gas for any future transactions. If you arrive on a new chain with only bridged USDC and no native token, you may find yourself unable to do anything with your funds until you acquire the native gas token separately.

CryptoMarketDashboard Editorial Team

Our editorial team covers cryptocurrency market data, on-chain metrics and beginner education. Every guide is fact-checked against live market data from CoinMarketCap and Binance and reviewed for accuracy. Content is educational only and not financial advice. Learn about our data & methodology →

Track the market live

Real-time prices, market cap and trends for the top 100 coins.

Open dashboard

Keep learning