LayerZero, Wormhole, and Axelar all promise the same thing: get your assets or data from one chain to another without trusting a single centralized custodian. They do it in three genuinely different ways, and those differences decide how much you stand to lose if something breaks. If you are choosing a bridge to move six figures of stablecoins, or you are a developer picking infrastructure for a cross-chain app, the architecture behind each protocol matters more than the marketing copy. This article breaks down how each one actually secures messages, what has gone wrong historically, and which one fits which situation.
Panaprium ist unabhängig und wird vom Leser unterstützt. Wenn Sie über unseren Link etwas kaufen, erhalten wir möglicherweise eine Provision. Wenn Sie können, unterstützen Sie uns bitte monatlich. Die Einrichtung dauert weniger als eine Minute und Sie werden jeden Monat einen großen Beitrag leisten. Danke schön!
How Cross-Chain Bridges Actually Work
None of these three protocols is a bridge in the classic "lock and mint" sense you'd associate with older hacks like Ronin or Poly Network. They are messaging layers. Applications built on top of them, like Stargate on LayerZero or Squid on Axelar, handle the actual asset transfers.
That distinction matters for security. A messaging protocol that never custodies funds cannot be drained directly, but the applications built on it can still be exploited if the underlying message verification is weak or misconfigured. Understanding who verifies a message, and how many independent parties have to agree, is the entire security question.
LayerZero: Configurable Security, Configurable Risk
LayerZero is a messaging primitive, not a bridge itself. Version 2 replaced its original fixed Oracle-and-Relayer model with what it calls Decentralized Verifier Networks, or DVNs. In LayerZero V2, message verification and execution have been separated into two distinct phases, giving developers control over their application's security configuration.
Each application chooses its own DVN set, from a single verifier up to an "X of Y of N" combination pulled from a marketplace. As of April 2026, more than 50 DVN operators run on LayerZero, including LayerZero Labs, Google Cloud, and Polyhedra. That flexibility is the whole pitch, but it is also the whole risk.
The catch: security is not protocol-wide. It is set per application, and many developers do not configure it carefully. On-chain data from a rsETH deployment on Unichain, for example, showed a required-DVN configuration of exactly one verifier with zero optional DVNs, making that specific route effectively a single point of trust rather than a decentralized one. This is not a flaw unique to that app. It is the structural tradeoff of LayerZero's design: LayerZero's security is only as strong as the DVN set the app picks. A well-configured OApp with multiple independent DVNs is hard to attack. A lazy 1-of-1 configuration is not.
Strengths:
- No core protocol exploit to date; LayerZero never custodies the assets being transferred, since apps built on it handle asset movement separately
- Wide chain coverage and fast, low-latency message delivery
- Configurable security lets serious teams harden their setup with reputable DVNs like Google Cloud or Chainlink
Weaknesses:
- Security is only as strong as the weakest DVN configuration an app chooses, and many apps under-configure it
- Verifying an app's actual DVN setup requires reading on-chain config, something most users never do
- Phishing attacks targeting fake LayerZero-branded airdrop sites have stolen over $12 million from users, though this is a user-facing scam rather than a protocol vulnerability
Before depositing into any LayerZero-based app, check its DVN configuration on the protocol's explorer. A single-DVN route run by an unaudited operator carries meaningfully more risk than one verified by three or more independent, reputable verifiers.
Wormhole: Fixed Validator Set, One Real Hack
Wormhole takes the opposite approach. Instead of letting each app pick its own security, it runs one fixed Guardian network for everyone. Nineteen independent validator companies observe contract events on every supported chain and sign attestations using a t-Schnorr multisig scheme. Once a 13-of-19 supermajority has signed, the signatures are aggregated into a VAA that any destination-chain Core Contract can verify. Consensus here is reputation-based, not stake-weighted: every Guardian has equal weight, and the only thing standing between a bridged dollar and a stuck dollar is whether enough honest operators saw the same event.
Wormhole is also the protocol with the clearest cautionary tale in this comparison. In February 2022, an attacker exploited a flaw in signature verification on the Solana side of the bridge. The exploit resulted from Wormhole's failure to properly validate guardian accounts, allowing the attacker to mint 120,000 wrapped ETH out of thin air, worth roughly $325 million at the time, making it one of the largest DeFi exploits ever recorded. Jump Crypto, Wormhole's backer, replaced the stolen funds within a day, which kept the protocol solvent but did not undo the fact that a single implementation bug in one function led to a nine-figure loss.
Since then, Wormhole has expanded to 45+ chains and shipped Native Token Transfers (NTT), a framework that lets projects move tokens without pooled liquidity, reducing exposure to the kind of wrapped-asset accounting bugs that caused the 2022 exploit.

Image source: wormholescan.io/
Strengths:
- One consistent, fixed security model across every integration, no per-app configuration to get wrong
- 19 well-known, reputation-staked infrastructure operators rather than an anonymous validator set
- Broad chain support across EVM, Solana, Sui, Aptos, and Cosmos ecosystems
Weaknesses:
- A documented $325 million exploit in 2022 shows the model is not immune to implementation bugs
- Reputation-based consensus means there is no direct financial slashing for guardian misbehavior, unlike stake-based systems
- A 13-of-19 threshold is a relatively small validator set compared to a fully permissionless proof-of-stake chain
Axelar: Proof-of-Stake With Full Chain Validation
Axelar secures its network with delegated proof-of-stake, using validators that run full nodes of every chain they support rather than relying on light-client proofs. Every Guardian-equivalent validator runs full nodes of every blockchain in the network, so if a blockchain suffers a consensus attack or hard fork, it disconnects rather than potentially producing invalid attestations. The validator network comprises 70 active validators selected from a larger pool based on stake size and operational quality, and misbehavior is economically penalized: validators monitor smart contract gateways and process messages between chains, with the network built on a proof-of-stake model.
Axelar's biggest recent development has nothing to do with a hack and everything to do with consolidation. In February 2026, Circle signed an agreement to acquire the Interop Labs team and its proprietary intellectual property; Interop Labs has been a leading contributor to Axelar's core development. Circle was explicit that the deal covers the development team and IP, not the Axelar Network, the Axelar Foundation, or the AXL token, which continue operating independently. Still, it signals that the team that built much of Axelar's core stack is now working inside a stablecoin issuer's roadmap, which is worth watching if you rely on Axelar for continued protocol-level development.
Strengths:
- Slashing-based proof-of-stake gives validators direct financial skin in the game, unlike reputation-only models
- Full-node verification of every connected chain reduces the risk of light-client spoofing
- No core protocol exploit on record to date
Weaknesses:
- A 2023 Uniswap DAO security review flagged that key protocol upgrades still ran through a 4-of-8 multisig, a centralization point Axelar committed to phasing out
- Smaller validator set and lower name recognition among retail users compared to Wormhole
- The Interop Labs acquisition by Circle introduces uncertainty about long-term independent development incentives
Protocol Comparison
|
Protocol |
Security Model |
Known Major Incident |
Best For |
|
LayerZero |
Per-app configurable DVNs (X-of-Y-of-N) |
No core exploit; airdrop phishing scams targeting users |
Developers who will actively audit their app's DVN config |
|
Wormhole |
Fixed 19-guardian set, 13-of-19 multisig, reputation-based |
$325M exploit (Feb 2022), funds fully reinstated |
Users who want one consistent, well-tested trust model |
|
Axelar |
Delegated proof-of-stake, ~70 validators, slashing |
No core exploit; governance multisig flagged in 2023 audit |
Apps needing full-chain validation and stake-backed security |
Common Mistakes When Evaluating Bridge Security
Most losses tied to these protocols come from user error or shallow due diligence, not core protocol failure. Before moving meaningful capital across any of these networks, check the following:
- Assuming "LayerZero-powered" means one fixed security level. It doesn't. Look up the specific app's DVN configuration before depositing.
- Confusing the messaging layer with the app on top of it. A Stargate exploit is not the same as a LayerZero core exploit, and vice versa. Know which layer you're actually trusting.
- Ignoring validator or guardian concentration. If most of a network's signing power sits with a handful of related entities, that undermines the decentralization the model is supposed to provide.
- Skipping the audit trail. Check whether the specific integration you're using, not just the base protocol, has been independently audited.
- Treating "no hack yet" as proof of safety. LayerZero and Axelar have avoided a core exploit so far, but Wormhole had years of clean operation before its 2022 incident.
Chain finality assumptions compound all of these risks, since a bridge can only be as safe as the chains it connects. For a deeper look at how finality time affects bridge and chain selection, see Blockchain Finality Risk: How to Choose Safer Chains and Bridges for DeFi.

Image source: defillama.com/hacks
Decision Framework: Which Should You Use?
|
Situation |
Recommended Option |
Why |
|
Moving stablecoins between major EVM chains; want the most battle-tested option. |
Wormhole |
Largest chain footprint, transparent incident history, funds were made whole after its one exploit. |
|
Building or using an app where the team clearly hardened DVN config |
LayerZero |
Configurable security can exceed fixed models when set up correctly |
|
Prioritizing stake-backed slashing over reputation-based trust |
Axelar |
Validators have direct financial exposure for misbehavior |
|
Uncertain which app's security setup is trustworthy |
Whichever has the most third-party audits and smallest recent governance changes |
Verifiable configuration beats brand recognition |
If you are spreading capital across several chains rather than making a single transfer, bridge choice becomes a portfolio decision, not a one-time pick. For guidance on splitting capital and managing exposure across multiple bridges at once, see Multi-Chain Yield Allocation: How to Split Capital and Manage Bridge Risk.
My Take
Wormhole is the safer default for most users moving significant capital, not because its architecture is superior, but because its trust model is fixed, transparent, and has already been tested by a real, well-documented failure that was resolved without permanent user losses. That track record, warts included, is worth more than an unproven design.
LayerZero is the better choice for developers, not passive users, because its security is genuinely strong when configured properly but silently weak when it isn't, and most retail users have no way to check which situation they're in. If you're building on it, insist on a multi-DVN configuration with reputable independent verifiers. If you're using an app built on it, check that configuration yourself before depositing.
Axelar is the most conservative architecture on paper, with full-chain validation and slashing-backed proof-of-stake, but it carries two open questions: the lingering multisig dependency flagged in past governance reviews, and what the Interop Labs acquisition by Circle means for independent development going forward. I would still use it, but I would watch for updates on both fronts before treating it as equivalent to Wormhole in maturity.
Whichever you pick, never bridge more than you can afford to have stuck or delayed. Check the specific app's audit history and validator configuration, not just the base protocol's reputation, before you commit funds.
Conclusion
There is no single "safest" bridge protocol among LayerZero, Wormhole, and Axelar. Each handles the same core problem, verifying that a message actually happened on another chain, with a different tradeoff between fixed trust and configurable trust. Wormhole offers consistency and a proven recovery from its one major incident. LayerZero offers flexibility that rewards careful configuration and punishes carelessness. Axelar offers stake-backed validator security with an open question mark around its post-acquisition development path.
The practical next step is to stop evaluating "the protocol" and start evaluating the specific application built on it. Check the DVN set, the guardian history, or the validator configuration for the exact route you're about to use, not the brand name attached to it.
FAQs
1. Has LayerZero ever been hacked?
LayerZero's core protocol has not suffered a direct exploit as of 2026. Phishing scams targeting LayerZero-branded airdrop sites have cost users money, but those are user-facing scams, not protocol breaches.
2. Is Wormhole safe to use after the 2022 hack?
Wormhole's backer, Jump Crypto, fully replaced the $325 million stolen in the 2022 exploit, and the underlying vulnerability was patched. The Guardian network has expanded and added the NTT framework since then, though no security model is ever guaranteed exploit-free.
3. What is the difference between Axelar and LayerZero's security model?
Axelar uses a fixed proof-of-stake validator set with slashing across the whole network, while LayerZero lets each application choose its own verifier set. This means Axelar's security level is consistent everywhere, while LayerZero's varies by app.
4. Does the Circle acquisition affect Axelar's security?
The acquisition covers the Interop Labs development team and IP, not the Axelar Network, Foundation, or AXL token, which continue operating independently under Common Prefix. It does raise questions about long-term core development resourcing that are worth monitoring.
5. How can I check if a bridge app is configured safely?
For LayerZero-based apps, look up the app's DVN configuration through the protocol's official config tools or block explorer to see how many independent verifiers are required. For Wormhole and Axelar, check whether the specific integration has passed independent smart-contract audits beyond the base protocol's own audits.
References
LayerZero V2 Documentation: https://docs.layerzero.network/v2/concepts/v2-overview
LayerZero DVN Overview: https://docs.layerzero.network/v2/workers/off-chain/dvn-overview
Wormhole Security Documentation (GitHub): https://github.com/wormhole-foundation/docs.wormhole.com/blob/main/docs/reference/security.md
Chainstack: Chainstack Becomes the Wormhole Guardian: https://chainstack.com/chainstack-becomes-wormhole-guardian/
Elliptic: $325 Million Stolen From Wormhole DeFi Service: https://www.elliptic.co/blog/325-million-stolen-from-wormhole-defi-service
Web3 Is Going Great: Wormhole Bridge Hack: https://web3isgoinggreat.com/single/wormhole-bridge-hack.
Axelar Security Overview: https://docs.axelar.dev/learn/security
Uniswap DAO Cross-Chain Bridge Assessment: Axelar: https://uniswap.notion.site/Assessment-573ab8d5003544c29079cc4196e4002e
Circle: Circle Signs Agreement to Acquire Interop Labs Team & Intellectual Property: https://www.circle.com/blog/circle-signs-agreement-to-acquire-interop-labs-team-intellectual-property
DeFiLlama Hacks Dashboard: https://defillama.com/hacks
War dieser Artikel hilfreich für Sie? Bitte teilen Sie uns in den Kommentaren unten mit, was Ihnen gefallen oder nicht gefallen hat.
About the Author: Chanuka Geekiyanage
Wogegen Wir Kämpfen
Weltweit-Konzerne produzieren in den ärmsten Ländern im Übermaß billige Produkte.
Fabriken mit Sweatshop-ähnlichen Bedingungen, die die Arbeiter unterbezahlt.
Medienkonglomerate, die unethische, nicht nachhaltige Produkte bewerben.
Schlechte Akteure fördern durch unbewusstes Verhalten den übermäßigen Konsum.
- - - -
Zum Glück haben wir unsere Unterstützer, darunter auch Sie.
Panaprium wird von Lesern wie Ihnen finanziert, die sich unserer Mission anschließen möchten, die Welt völlig umweltfreundlich zu gestalten.
Wenn Sie können, unterstützen Sie uns bitte monatlich. Die Einrichtung dauert weniger als eine Minute und Sie werden jeden Monat einen großen Beitrag leisten. Danke schön.
0 Kommentare