SolutionsProductsAuditsBlogContactRequest an Audit
BlogThe Most Expensive Cross-Chain Bridge Hacks in History
The Most Expensive Cross-Chain Bridge Hacks in History
security-analysis11 min readAugust 7, 2026
0xTeam Author
Share

The Most Expensive Cross-Chain Bridge Hacks in History

Ronin ($625M), Poly Network ($610M+), and Wormhole ($326M) — over $1.5B affected across three exploits. What each failure teaches about validator authority, cross-chain message verification, and why bridge security cannot rely on a single audit or a single line of defense.

Ronin. Poly Network. Wormhole.

Cross-chain bridges were built to solve one of blockchain's biggest problems: blockchains do not naturally communicate with each other. A bridge allows users to move assets or messages from one ecosystem to another.

But connecting two blockchains also means connecting two security models. And over the years, that has created some of the largest attack surfaces in Web3. The numbers tell the story.

  • Ronin Bridge — approximately $625 million
  • Poly Network — more than $610 million
  • Wormhole — approximately $326 million

These three incidents alone represented more than $1.5 billion in assets affected at the time of their exploits. The exact value varies depending on the asset prices and reporting methodology used.

In 2022, the problem became impossible to ignore. Chainalysis reported that cross-chain bridges accounted for 64% of the value stolen from DeFi protocols that year, while its earlier analysis estimated that roughly $2 billion had been stolen across 13 bridge hacks by August 2022.

The question is: why have bridges become such attractive targets — and what can builders learn from the industry's biggest failures?

What Makes a Cross-Chain Bridge Different?

A typical bridge works by creating a relationship between assets or messages on different blockchains. A simplified asset transfer might look like this:

User deposits ETH → Bridge locks the asset → Message is verified → Destination chain → Equivalent wrapped assets are minted

The reverse happens when the user wants to return the asset. This sounds straightforward. But the bridge must answer a critical question: how can Chain B be certain that something actually happened on Chain A? The answer may involve:

  • Validators
  • Guardians
  • Relayers
  • Multisignature systems
  • Oracles
  • Smart contracts
  • Cross-chain messaging protocols

Every additional component introduces another security assumption. And if one of those assumptions fails, the bridge's assets can be at risk.

01 — Ronin Bridge: Approximately $625 Million

March 2022. The Ronin Network bridge attack remains one of the largest crypto hacks in history. Ronin was built as a sidechain supporting Axie Infinity. Its bridge allowed assets to move between Ethereum and the Ronin network. The security model depended on a group of validators approving withdrawals.

The attacker gained control of five of the nine validator private keys, which was enough to satisfy the bridge's approval threshold and authorize fraudulent withdrawals. The attackers then withdrew 173,600 ETH and 25.5 million USDC. At the time, the stolen assets were widely valued at roughly $625 million, although reported figures differ slightly depending on the valuation date.

What Failed?

The core failure was not a traditional smart contract vulnerability such as reentrancy. The attackers compromised the bridge's validator infrastructure and signing authority. Once they controlled enough keys, the bridge effectively accepted fraudulent withdrawals as legitimate.

A decentralized protocol can still have centralized points of failure. If a small number of compromised keys can authorize hundreds of millions of dollars in withdrawals, those keys become one of the protocol's most valuable attack targets.

The Security Lesson

Bridge security is not only about auditing smart contracts. It must also include:

  • Key management
  • Validator decentralization
  • Access controls
  • Signing thresholds
  • Infrastructure security
  • Monitoring for abnormal withdrawals
  • Incident response

Because secure code cannot compensate for compromised authority.

02 — Poly Network: More Than $610 Million

August 2021. Before Ronin, the Poly Network attack was one of the largest DeFi exploits ever recorded. On August 10, 2021, an attacker exploited vulnerabilities in Poly Network's cross-chain smart contract infrastructure and extracted more than $610 million in digital assets across multiple blockchains. The incident affected assets across networks including Ethereum, BNB Chain, and Polygon.

What Failed?

Poly Network's cross-chain architecture included privileged components responsible for managing and verifying cross-chain transactions. The attacker exploited weaknesses in the cross-chain contract logic to manipulate privileged functionality and redirect assets. In simple terms: the attacker found a way to influence a highly trusted component of the bridge. And in cross-chain infrastructure, privileged components can control enormous amounts of value.

The Twist

The Poly Network attack became particularly unusual because the attacker eventually returned the stolen assets. Poly Network later reported that the stolen assets had been returned and the incident was resolved, but the fact that funds were ultimately recovered does not reduce the importance of the vulnerability. The attack had already demonstrated that a flaw in cross-chain authorization logic could expose hundreds of millions of dollars.

The Security Lesson

Cross-chain messages should never be treated as ordinary data. They may represent instructions such as:

  • Release funds
  • Mint tokens
  • Change ownership
  • Update validators
  • Execute privileged operations

That means every message must have clearly defined authentication, authorization, validation, replay protection, and trust boundaries. One mistake in this chain can give an attacker access to the bridge's entire liquidity pool.

03 — Wormhole: Approximately $326 Million

February 2022. The Wormhole exploit demonstrated another critical bridge risk: what happens when the bridge believes collateral exists when it doesn't?

Wormhole connects multiple blockchain ecosystems, including Ethereum and Solana. In February 2022, an attacker exploited a vulnerability in the bridge's verification process and caused the system to accept a fraudulent message. This allowed the attacker to mint 120,000 wrapped ETH on Solana without providing the corresponding ETH collateral required by the bridge. The incident was widely valued at approximately $326 million.

What Failed?

The vulnerability involved improper signature verification. The bridge accepted a message that should not have been considered valid. That single failure allowed the attacker to create bridged assets backed by collateral that did not actually exist. This is particularly dangerous because the entire security model of wrapped assets depends on trust. When a user receives wrapped ETH, the assumption is: there is real ETH backing it somewhere else. If an attacker can mint the wrapped asset without locking the original collateral, that assumption collapses.

The Security Lesson

For cross-chain bridges, verification logic is the protocol. A small failure in validation can have consequences far beyond the individual function containing the bug.

The bridge is responsible for deciding whether assets can be minted or released. That decision must be treated as a critical security boundary.

Why Are Cross-Chain Bridges Such a Major Attack Surface?

The three attacks were different. Ronin involved compromised validator authority. Poly Network involved flaws in cross-chain contract logic and privileged functionality. Wormhole involved verification failures that enabled unbacked wrapped assets to be minted. But they all shared one thing: a bridge connects multiple systems while holding or controlling significant amounts of value. That creates several major attack surfaces.

1. Bridges Are Massive Liquidity Honeypots

Most bridges need to secure assets that back tokens on another chain. That means a bridge can accumulate enormous value in one location. Chainalysis described bridges as particularly attractive targets because the locked funds backing bridged assets can effectively become large centralized repositories of value.

For an attacker, the economics are simple. If discovering one vulnerability can provide access to hundreds of millions of dollars, the incentive to search for that vulnerability becomes extremely high. A single successful exploit can justify months of research, complex attack preparation, infrastructure compromise, social engineering, and custom exploit development. The larger the bridge becomes, the more attractive the target can become.

2. Bridges Depend on Multiple Security Assumptions

A normal smart contract might depend primarily on: is the code correct? A bridge may depend on:

  • Is the source chain secure?
  • Are the validators honest?
  • Are enough validators decentralized?
  • Are the private keys secure?
  • Is the message correctly formatted?
  • Is the message correctly verified?
  • Can the message be replayed?
  • Can privileged contracts be manipulated?
  • Is the destination-chain implementation secure?

That is a significantly larger threat model. The security of the bridge can depend on the weakest assumption in the entire system.

3. Cross-Chain Message Verification Is Extremely Sensitive

Bridges often receive messages that effectively say: "This event happened on another blockchain. Take action here." The destination chain cannot simply trust that statement. It needs a secure method to verify it. If an attacker can forge a message, bypass verification, replay an old message, manipulate a validator set, or exploit signature validation, they may be able to trigger actions that should never have occurred. Wormhole demonstrated how catastrophic a failure in this layer can become.

4. Key Management Can Become a Single Point of Failure

Ronin showed that decentralization on paper is not always decentralization in practice. If a small group of validators or administrators controls a bridge, compromising enough of them can compromise the entire protocol. Private keys protecting bridge infrastructure should be treated like critical financial infrastructure. That means implementing controls such as:

  • Hardware-backed key protection
  • Threshold signatures
  • Multi-party computation where appropriate
  • Separation of duties
  • Key rotation
  • Strict access management
  • Continuous monitoring

The goal should be to ensure that compromising one employee, server, or organization cannot automatically compromise the bridge.

5. Complexity Creates Blind Spots

Cross-chain infrastructure is inherently complex. Developers may need to reason about different virtual machines, different consensus mechanisms, different transaction models, different smart contract languages, off-chain infrastructure, relayer behavior, and validator communication. More complexity does not automatically mean insecurity. But complexity creates more assumptions. And assumptions are where attackers look.

The Cost of Bridge Security Failures

Cross-chain bridge exploits were not isolated incidents. According to Chainalysis, bridge hacks had already resulted in approximately $2 billion in stolen funds across 13 separate attacks by August 2022, accounting for 69% of the cryptocurrency value stolen that year at that point. By the end of 2022, DeFi protocols accounted for the majority of crypto theft, with Chainalysis reporting that 64% of the $3.1 billion stolen from DeFi protocols came from cross-chain bridge attacks.

These numbers explain why bridges require a different level of security thinking. A bridge is not simply a smart contract that transfers tokens. It is a security system responsible for maintaining trust between independent networks.

How Can Cross-Chain Bridges Be Secured?

There is no single solution. Bridge security requires a defense-in-depth approach.

1. Reduce Trust in Individual Validators

Avoid architectures where compromising a small number of entities gives an attacker complete control. Consider larger and more decentralized validator sets, higher security thresholds, independent operators, threshold cryptography, and separation between infrastructure operators. But decentralization alone is not enough — the validator implementation itself must also be secure.

2. Treat Message Verification as Critical Infrastructure

Cross-chain message handling should undergo rigorous testing for:

  • Signature validation
  • Replay attacks
  • Message uniqueness
  • Source-chain verification
  • Invalid guardian or validator data
  • Edge-case transaction ordering
  • Malformed payloads

Every path leading to asset minting or release should be considered high risk.

3. Limit the Blast Radius

Not every bridge action should have unlimited consequences. Protocols can introduce withdrawal limits, rate limits, circuit breakers, emergency pause mechanisms, anomaly detection, and delayed execution for unusually large transactions. These mechanisms may not prevent every exploit. But they can reduce the amount an attacker can extract before the attack is detected.

4. Audit More Than the Smart Contracts

A bridge audit should examine the complete system. That includes:

  • On-chain: smart contracts, verification logic, upgrade mechanisms, access controls
  • Off-chain: validators, relayers, APIs, key management, deployment infrastructure
  • Economic security: attack incentives, liquidity concentration, maximum possible loss, cost of compromise

The goal is to identify not only "can this function be exploited?" but also "what happens if this entire security assumption fails?"

5. Prepare for the Attack Before It Happens

Bridges should have an incident-response strategy before an incident occurs. Teams need to know who can pause the protocol, how quickly suspicious activity can be detected, what the maximum withdrawal possible is, how validators are notified, how exchanges and security partners are contacted, and how users will be informed. When hundreds of millions of dollars can move in minutes, response time matters.

The Bigger Lesson

Ronin, Poly Network, and Wormhole were very different attacks. But together, they exposed the same fundamental problem. Cross-chain infrastructure creates security dependencies between systems that were originally designed to operate independently. A bridge must answer one of the hardest questions in blockchain: how do you securely prove something happened somewhere else? Getting that answer wrong can be extremely expensive.

The future of Web3 depends heavily on interoperability. Assets, users, applications, and liquidity increasingly move across chains. But every new connection creates a new security boundary. And every security boundary must be tested.

Final Thoughts

Cross-chain bridges have helped make the blockchain ecosystem more connected. But connectivity comes with a cost. The Ronin, Poly Network, and Wormhole incidents showed that bridge failures can result from very different sources:

  • Compromised authority
  • Flawed cross-chain logic
  • Broken verification assumptions

That is why bridge security cannot rely on a single audit, a single validator, or a single line of defense. It requires security across the entire architecture.

ONE BRIDGE. MULTIPLE CHAINS. MULTIPLE TRUST ASSUMPTIONS. ONE EXPLOIT CAN BREAK THEM ALL.

Before you connect blockchains, make sure you've connected every layer of your security. Because in cross-chain infrastructure, the attack surface does not end at the smart contract. It extends everywhere trust has to cross a chain.

++
Worried? Get your security audit done today.

Don't launch vulnerable code. Our team will review your smart contracts and deliver a full audit report within 48 hours.

Request Audit

Tags

security-analysisDeFiSecurityWeb3

Get Audited

Protect your protocol before attackers do. Request a full smart contract audit from 0xTeam.

Request Audit
© 0xTeam space 2026. All rights reserved.