h hoge.gg
Subscribe
BTC$67,432.18+2.34%ETH$3,521.44+1.08%SOL$178.62-0.62%BNB$612.30+0.41%XRP$0.6234-0.18%ADA$0.4521+3.12%DOGE$0.1623+1.86%AVAX$38.71-1.24%LINK$17.84+0.92%HOGE$0.00004120+4.21%
BTC$67,432.18+2.34%ETH$3,521.44+1.08%SOL$178.62-0.62%BNB$612.30+0.41%XRP$0.6234-0.18%ADA$0.4521+3.12%DOGE$0.1623+1.86%AVAX$38.71-1.24%LINK$17.84+0.92%HOGE$0.00004120+4.21%
● DeFi & On-chain

The Interoperability Wars: Who Moves Your Crypto Across Chains

When you bridge crypto, a hidden protocol carries the message. Here is how LayerZero, CCIP, Wormhole, Axelar, Hyperlane and IBC each secure your money, and where each has failed.

The last time you moved a token from one chain to another, you probably clicked a button labelled Bridge, waited a minute or two, and watched the balance reappear somewhere else. The part that actually mattered stayed invisible. Underneath that button sits a piece of infrastructure that most users never name and never knowingly choose: a cross-chain messaging protocol. It is the thing that convinces the second chain your money is real. In 2026, the security of that hidden layer is the single biggest variable in whether your funds arrive or disappear.

Bridges have bled more money than almost any other category in crypto. By several 2026 tallies, attackers have taken more than $2.8 billion from cross-chain bridges since 2021, close to 40 percent of all the value ever stolen on-chain, according to a Phemex analysis of bridge exploits. Yet the word bridge hides an important truth: there is no single design behind it. One of a handful of interoperability protocols is doing the real work, and each answers the core security question a different way.

This is a field guide to those protocols: LayerZero, Chainlink CCIP, Wormhole, Axelar, Hyperlane, the Cosmos IBC family, and Circle’s stablecoin-focused CCTP. It is not a leaderboard. It is a map of who verifies your transfer, how many independent parties must agree, what happens when one of them is fed a lie, and where each design has already been tested in production by someone trying to steal from it. The exercise is the same one behind asking who really secures a blockchain in the first place: a bridge is only as trustworthy as the smallest group that can approve a transfer on your behalf.

The bridge is a website; the protocol is underneath

Most bridges you touch are front ends. The domain, the token list, the progress bar: that is the application layer, and it is largely interchangeable. The security lives one floor down, in the messaging protocol that carries a signed instruction from the source chain to the destination chain. Two different bridge websites can route over the same protocol, and one protocol can power hundreds of apps at once. When people say a bridge was hacked, they almost always mean the protocol underneath it, or a specific configuration of that protocol, failed.

That distinction changes the question you should ask. Instead of is this bridge safe, the sharper question is which protocol moves my assets, and how does that protocol decide a cross-chain message is genuine. The answer sets your real counterparty risk far more than the branding on the page. A polished interface can sit on top of a single-signer setup; a plain one can route over a network of sixteen independent verifiers. You cannot tell from the button.

The market for that plumbing is now large enough to fight over. Total value locked across roughly four dozen interoperability protocols has passed $8 billion, and one 2026 market breakdown put the leading cross-chain routes at more than $41 billion in volume across ten months. The protocols competing for that flow, and the very different promises they make about safety, are the subject of the rest of this guide.

It helps to know the three mechanical shapes a transfer can take, because they carry different risks. Lock-and-mint bridges lock your asset in a contract on chain A and mint a wrapped stand-in on chain B; the locked pool is the thing thieves target. Burn-and-mint bridges destroy the asset on A and issue a native version on B, which works cleanly only when a single issuer controls both sides. Liquidity-network bridges never mint anything: they pay you out of a pool of the real asset already sitting on chain B, then rebalance later. Most of the protocols below are really messaging layers that can drive any of these three, which is why the security question keeps returning to the message, not the money.

What every cross-chain message has to prove

A blockchain cannot see outside itself. Ethereum has no native way to know what happened on Solana; Solana cannot read Ethereum’s state on its own. So every bridge has to solve one problem: convince chain B that something specific happened on chain A, usually that you locked or burned an asset there. Whoever gets to make that claim, and whoever chain B is willing to believe, is the entire security model. Everything else is user interface.

Ben Fisch, chief executive of Espresso Systems, described the weak point plainly after the roughly $292 million KelpDAO exploit in April 2026. Most bridges, he told CoinDesk, do not fully verify what happened on another chain; instead, they rely on a smaller system to report it. His verdict on the hack was blunt: the bridge, he said, “worked as designed. It just believed the wrong information.”

This is why Vitalik Buterin has argued since early 2022 that a multi-chain world is safer than a cross-chain one. There are, he wrote, “fundamental limits to the security of bridges that hop across multiple ‘zones of sovereignty,’” a warning that aged well as the losses mounted. The more chains an asset traverses, the more independent trust assumptions stack on top of one another, and each one is a place the report can be forged.

The dilemma is not unique to bridges. Any time a blockchain needs to know something it cannot observe directly, it has to trust a reporter, which is exactly the tension behind who settles the bet in a prediction market. A bridge is an oracle answering a single question, did this deposit really happen, and its strength comes down to how hard it is to make that oracle lie. The protocols below differ mainly in how they make lying expensive.

The security spectrum, from committees to math

The clearest way to line the protocols up is by how much they trust people versus how much they trust math. At one end, a small named committee signs off on every transfer, so you are trusting those signers not to be phished, bribed, or fooled. At the other end, the destination chain checks a cryptographic proof of what the source chain’s validators actually agreed, and no human attestation is involved at all. Most protocols sit somewhere in between, and several let the application slide the dial itself.

The spectrum is not a ranking, because every point on it trades something away. Committees are simple and fast but concentrate trust in a set an attacker can study. Light clients are the hardest to fool but were historically slow and expensive to build for each chain pair. The defining trend of 2026 is a steady migration from the trusting end toward the math end, driven by a run of hacks that all rhymed.

Verification modelHow it decides a message is realProtocols that use itThe core thing you trust
External signer committeeA fixed, known set signs each transferWormhole (19 guardians); early Ronin and Harmony multisigsA majority of a named group stays honest and uncompromised
Configurable verifier networkThe app picks which parties must verifyLayerZero (DVNs), Hyperlane (ISMs)Whoever the app selected, and that it selected well
Proof-of-stake validator setA staked network attests and can be slashed for lyingAxelarThe staked majority values its stake above the theft
Independent oracle plus risk networkOracles report; a separate network can vetoChainlink CCIPTwo independent systems would both have to fail
OptimisticAssumed valid unless challenged inside a windowNomad, AcrossA watchdog is online to challenge fraud in time
Light client or ZK proofChain B cryptographically checks chain A’s consensusCosmos IBC, IBC Eureka, zkBridgesMath, plus each chain’s own validators
Native burn-and-mintThe asset’s issuer destroys it on A, reissues on BCircle CCTPA single trusted issuer

Keep this map in mind through the rest of the guide. Note the second row in particular: LayerZero and Hyperlane do not fix a security model at all. They hand the choice to the application, which is powerful and, as the year’s biggest bridge loss showed, dangerous when that choice is made carelessly.

Wormhole: nineteen guardians and a $325 million lesson

Wormhole is the veteran, and its design is the easiest to picture. A network of 19 institutional operators, called guardians, watches the source chain. When a qualifying event happens, each guardian signs it, and once a supermajority of 13 of the 19 agree, they produce a signed message known as a Verified Action Approval, or VAA, which the destination chain accepts as proof. The guardian quorum is the whole model: reach 13 signatures and the transfer is real, fall short and nothing moves.

It is fast and it has moved serious volume, more than $60 billion in lifetime transfers and over a billion cross-chain messages across dozens of chains by third-party market breakdowns. It has also drawn institutional issuers, carrying tokenized products such as BlackRock’s BUIDL fund and Ripple’s RLUSD stablecoin between chains. The W token, launched through a community airdrop in 2024, governs the protocol and is meant to underpin staking as the guardian set decentralizes over time.

Wormhole is also the source of one of crypto’s canonical bridge disasters. In February 2022, an attacker exploited a flaw in its Solana verification: a deprecated function failed to confirm that a signature account genuinely belonged to the guardian set, which let the attacker forge a VAA and mint roughly $325 million of wrapped ETH, about 120,000 coins, with no real deposit behind it, according to a Halborn post-mortem. The 13-of-19 threshold was never actually met; the code simply never checked. Jump Crypto, then closely tied to the project, replaced the full amount within about a day, which is why the episode is remembered as a rescue rather than a ruin.

The lesson generalizes to every committee model: a high signing threshold protects you only if the software correctly checks the signatures. When it does not, the number of guardians is beside the point. Wormhole has since rebuilt its verification and broadened into native token transfers, queries, and governance tooling, but its history remains the cleanest illustration of why a named committee is at once the simplest bridge to reason about and a permanent, well-labelled target.

LayerZero: security you configure yourself

LayerZero made a different bet. Instead of shipping one fixed committee, it lets each application assemble its own. Verification is handled by Decentralized Verifier Networks, or DVNs, independent services that each check the hash of a cross-chain message. An app configures an X-of-Y-of-N rule: it names N possible verifiers, requires X specific ones, and can demand a threshold of additional optional verifiers before a message is accepted. Just as important, the design separates verification from execution, so compromising a verifier does not by itself hand over the assets.

On paper this is the most flexible model on the market, and the volumes are large. By one 2026 market breakdown, LayerZero has carried more than $44 billion in bridged assets, delivered over 150 million messages since 2022, connects upward of 150 chains, and handles the majority of cross-chain messaging volume. That reach is exactly why its configuration choices matter to so many users at once.

The flexibility is also the risk. LayerZero’s own documentation warns, almost verbatim, that “production deployments should explicitly configure their security stack with at least one required DVN that is not operated by LayerZero Labs,” and that applications should never rely on defaults. Some default pathways run with a single verifier until an app reconfigures them. In other words, the protocol can be as strong as sixteen independent checks or as weak as one, and the difference is a setting most users never see.

That warning was not hypothetical. In April 2026, the KelpDAO rsETH bridge was running with a 1-of-1 DVN, a single verifier, when attackers compromised the internal RPC infrastructure feeding it while knocking out external RPC providers, fed the lone verifier a forged message, and minted about $292 million of unbacked rsETH, per a Chainalysis reconstruction. With one verifier, there was no second opinion to catch the lie. LayerZero and Kelp then argued publicly over who had chosen the risky setting, the kind of dispute worth reading alongside the contested autopsy that follows almost every large hack. LayerZero has since raised its minimums so production deployments can no longer run 1-of-1. The episode is the strongest argument both for configurable security and against letting anyone configure it badly.

Chainlink CCIP: defense in depth and the flight to safety

Chainlink’s Cross-Chain Interoperability Protocol answers the single-verifier problem with redundancy. A committee of Chainlink oracle nodes relays each message, then a completely separate set of nodes, the Risk Management Network, independently re-checks it and can block anything that looks wrong. The two layers run different software implementations on purpose, an approach borrowed from safety engineering called N-version programming, so a bug in one is unlikely to live in the other. The network is also tuned to favor safety over liveness: faced with a suspicious transfer, it would rather halt than approve. The pitch is defense in depth rather than blind trust.

In 2026 the market voted for that pitch with its feet. After the KelpDAO loss, assets began migrating from LayerZero to CCIP: by mid-May, roughly $4 billion had switched, including Kraken’s kBTC, Lombard, and Solv, according to CoinDesk. In August, BitGo moved more than $7 billion of Wrapped Bitcoin to make CCIP its sole cross-chain provider, pushing the running tally of the migration toward $15 billion. Johann Eid of Chainlink Labs described the shift to CoinDesk as a “continued flight to safety.”

CCIP now secures large institutional flows: by the same market breakdown, roughly $7 billion of Coinbase’s wrapped assets such as cbBTC, and more than $3 billion of Maple Finance’s cross-chain deposits, across 60-plus chains. The trade-off is philosophical rather than technical. You are still trusting Chainlink’s node operators and their governance, not a cryptographic proof of the source chain’s state. Redundancy lowers the odds that a single failure drains the bridge, but it does not remove the human element; it multiplies it and works to keep the pieces independent.

There is a counterargument worth stating. Concentrating a large share of cross-chain value behind one provider recreates, at the ecosystem level, the single point of failure that redundancy is meant to remove. If a bug or a governance capture ever reached CCIP’s core, the blast radius would now be enormous. Chainlink’s answer is that its two independent layers and conservative, safety-first defaults make that far less likely than a lone verifier failing, which is why the 2026 flows moved its way. Both things can be true: CCIP is one of the sturdier designs on offer, and the market leaning this hard on a single protocol is its own kind of systemic risk.

Axelar: a proof-of-stake chain for messages, and Circle’s bet

Axelar takes the validator-set idea and makes it an entire blockchain. Rather than a fixed committee or an app-chosen network, Axelar runs its own delegated proof-of-stake chain whose validators observe connected networks, reach consensus on cross-chain events, and can be slashed if they attest to something false. Its Interchain Amplifier lets new chains connect without gatekeeping, and by 2026 the network reported more than $13 billion in total cross-chain volume across 80-plus chains, per one market survey. The AXL token secures the chain through staking and pays for message routing.

The security logic is economic. To forge a transfer, an attacker would need to control a supermajority of staked value, which is expensive to acquire and self-defeating to use, because the stake itself would crater in value the moment the fraud was seen. That is the same assumption that secures most layer-1 chains, pointed at messaging. It is meaningfully stronger than a small multisig and still weaker than a proof that does not rely on anyone’s honesty at all.

The biggest 2026 development around Axelar was corporate rather than technical. In April, Circle, the issuer of USDC, signed an agreement to acquire Interop Labs, the team that originally built Axelar, along with its intellectual property. Circle said the technology would be folded into its Arc blockchain and its Cross-Chain Transfer Protocol, while the Axelar Network, its foundation, and the AXL token would stay independent and community-governed, with another contributor, Common Prefix, taking over day-to-day development. Markets read it as a stablecoin giant absorbing a core interoperability team, and AXL fell more than 16 percent on the news. It is a tell about where the value in interoperability is drifting: toward whoever controls the assets that need to move.

Hyperlane: permissionless interop and the module you never see

Hyperlane pushes LayerZero’s philosophy to its conclusion: not just configurable security, but permissionless deployment. Any chain, a fresh rollup, an app-chain, a bespoke layer-1, can deploy Hyperlane’s contracts and connect to every other Hyperlane-enabled network without asking a foundation, a multisig, or a governance committee for approval. By 2026 that had produced the widest footprint of any messaging protocol, more than 140 chains spanning several virtual-machine families, among them EVM, Solana, and the Cosmos SDK.

Its signature feature is the Interchain Security Module, or ISM, a smart contract that answers a single question for each incoming message: is this valid. Developers pick an ISM from a menu, a multisig, a proof-of-stake validator set, an optimistic scheme, combine several, or write their own. Security becomes a parameter of the application rather than a fixed property of the protocol. Default validator sets stake the HYPER token and face slashing for misconduct, and relayers and validators earn HYPER for keeping messages flowing.

The strength of the model is sovereignty: an app is never stuck with a security level someone else chose. The weakness is the same one that sank KelpDAO, only spread wider. When every team hand-rolls its own trust model, the ecosystem is only as safe as its least careful integrator, and a user typically has no idea which ISM sits behind the bridge they just used. Permissionless is a feature for builders and a warning label for everyone downstream of them.

Cosmos IBC: when the chain checks the math itself

For most of a decade, the Cosmos ecosystem moved assets over the Inter-Blockchain Communication protocol without a marquee bridge hack, and the reason is structural. IBC uses light clients: each chain runs a compact on-chain client of the other chain’s consensus and verifies its block headers and validator signatures directly. No external committee attests to anything. Chain B checks for itself that chain A’s validators really signed the state it is being shown. When the destination chain enforces the source chain’s own rules, there is no smaller system left to lie to it. That is the closest thing in production to Buterin’s ideal.

The historical limit was reach. Light clients are cheap to run between similar chains but costly to verify on Ethereum, and awkward to build for every possible pair. That wall is what IBC Eureka set out to break. Launched by Interchain Labs in 2025, Eureka extends IBC to Ethereum using a Rust-based Tendermint light client compiled into a zero-knowledge proof through Succinct’s SP1, so Ethereum can verify Cosmos consensus cheaply. By 2026 the Ethereum-to-Cosmos leg was live and routing onward to more than 115 IBC-connected chains, with Solana and further layer-2s in development.

Eureka is one instance of a broader shift: replacing trusted reporters with succinct proofs. Teams such as Polyhedra and Succinct have driven the gas cost of verifying another chain’s consensus down by orders of magnitude, turning light-client bridges from a research idea into something shippable. Charles Hoskinson, the Cardano founder, has argued that this is where bridging must go, contending after one 2026 exploit that zero-knowledge proofs should replace trust in bridge operators and multisigs outright. “All software,” he warned, “is under this enormous assault” from automated, increasingly AI-assisted attackers, per CoinDesk. Running a light client is, in the end, the same discipline as running your own validator instead of trusting someone else’s: you verify rather than delegate.

Math is not magic, though. A ZK light client still depends on the integrity of its trusted setup, the correctness of its circuits, and the liveness of whoever generates the proofs, and it has to be updated whenever a connected chain changes its consensus rules. Trust-minimized is the honest label, not trustless. The difference that matters is that the trust which remains lives in code anyone can audit, not in a signer who can be phished.

Circle’s CCTP: delete the wrapped token entirely

The most direct answer to bridge risk is to remove the thing that gets stolen. Most bridges create a wrapped IOU: you lock USDC on Ethereum, and the bridge mints a claim on another chain backed by that locked pool. The pool is the honeypot. Circle’s Cross-Chain Transfer Protocol takes a different route for USDC specifically. It burns your USDC on the source chain and mints native, canonical USDC on the destination, with no locked pool, no wrapped derivative, and no third-party committee vouching for a deposit. The issuer that created the dollar simply reissues it somewhere else.

Because there is no pooled collateral to drain and no committee to fool, CCTP removes the two failure modes behind most bridge losses at once. The trade-off is scope: it works only for assets whose issuer runs the burn-and-mint machinery, which today mostly means Circle’s own stablecoins. You are also swapping a distributed trust set for a single one, Circle, which can freeze addresses and answers to regulators in ways a permissionless protocol does not. That regulatory tie is becoming central to the entire category as the stablecoin rulebook hardens toward its January 2027 deadlines.

CCTP points at the endgame native issuance implies. If every major asset were minted natively on every chain and moved by burn-and-mint, the classic lock-and-mint bridge, with its pool and its committee, would be needed far less often. Circle’s acquisition of the Axelar team reads as exactly that ambition: own the dollar, own the rails it travels on, and make the risky middle layer quietly disappear.

Why the target never comes off a bridge’s back

Whichever protocol carries the message, a bridge holds a concentrated pile of value: the locked collateral, or the mint authority, for everything it has ever moved. That concentration is why bridges remain crypto’s favorite hunting ground. The designs differ, but the prize does not, and attackers optimize for prizes.

The scale is documented. Chainalysis found that about $2 billion was stolen across 13 bridge hacks in 2022 alone, roughly 69 percent of all crypto taken that year, in its cross-chain bridge report. The method has shifted since. TRM Labs’ review of the first half of 2026 found that infrastructure, key, and operational compromises accounted for only about 15 percent of incidents but roughly 76 percent of the value lost, in its half-year report. That is the empirical backbone of the industry’s keys-not-code refrain: most big bridge losses are not clever contract bugs but stolen credentials or forged reports.

Sergej Kunz, co-founder of 1inch, tied the pattern to incentives after the KelpDAO hack, telling CoinDesk that “security is often not the top priority” because “teams focus on launching quickly.” Speed to market and a nine-figure honeypot are a poor combination, and the 2026 record, from a federated Bitcoin sidechain to a single-verifier restaking bridge, shows how many different designs it can break. The table below sets the landmark failures beside the trust model that gave way in each. The common thread is not one bug class; it is that whatever the honest parties were checking turned out to be false.

BridgeYearApprox. lossTrust model that failedWhat actually broke
Ronin2022~$625MValidator multisig (5 of 9)Five signer keys phished; still the largest bridge theft on record
Poly Network2021~$611MContract privilegeAttacker rewrote the keeper role; funds later fully returned
BNB Bridge2022~$566M faceProof verificationForged IAVL proof minted BNB; a fast chain halt froze much of it
Wormhole2022~$325MGuardian committeeCode never checked the signatures; forged VAA, later backstopped
Liquid Network2026~$320MFederation multisig (11 of 15)A consensus bug an honest multisig could not have caught
KelpDAO2026~$292MSingle configurable verifierA 1-of-1 DVN fed a forged message via RPC compromise
Nomad2022~$190MOptimisticA blank root made every message valid; a crowd copied the first tx
Harmony2022~$100MMultisig (2 of 5)Two of five signer keys compromised

How to read a bridge’s security like an analyst

You do not need to be a cryptographer to size up a bridge. You need to find out which protocol it uses and run through a short list of questions. The most useful single question is this: how many independent parties would have to be compromised or fooled for a fraudulent transfer to clear. If the honest answer is one, treat the bridge as a hot wallet you do not control, and move only what you can afford to lose.

  • Who verifies the message: a fixed committee, an app-chosen set, a staked network, an oracle plus a risk layer, or a cryptographic proof.
  • How many verifiers, and can a single party forge a transfer. A 1-of-1 or a low multisig threshold is a red flag; KelpDAO ran on 1-of-1.
  • Is the security configurable, and if so, did this app configure it well or ship on defaults. LayerZero and Hyperlane put that choice in the app’s hands.
  • Who holds the upgrade and admin keys, and is there a timelock. A trust-minimized verifier sitting behind an instant-upgrade multisig is not trust-minimized.
  • What is the track record, and how did the team handle its worst day. Recovery behavior tells you as much as uptime.
ProtocolWho verifies a transferCan one party forge it?Reach in 2026Notable test
Wormhole19 guardians, 13-of-19 quorumNo, if the code checks signatures (once, it did not)Dozens of chains, $60B+ lifetime2022 forged VAA, $325M, backstopped
LayerZeroApp-chosen DVNs (X-of-Y-of-N)Only if configured down to one verifier150+ chains, $44B+ bridgedKelpDAO 1-of-1 DVN, $292M
Chainlink CCIPOracle nodes plus a separate Risk Management NetworkNo; both independent layers must agree60+ chains, billions secured~$15B in assets migrated in on safety
AxelarDelegated proof-of-stake validator setOnly by owning a staked supermajority80+ chains, $13B+ volumeNo headline bridge hack; team bought by Circle
HyperlaneApp-chosen ISM (any model)Depends entirely on the chosen ISM140+ chainsModel risk sits with each integrator
Cosmos IBC / EurekaOn-chain light clients, plus ZK proofsNot without breaking a chain’s consensus115+ chains via EurekaNo marquee IBC bridge hack in years
Circle CCTPCircle burns and reissues nativelyOnly Circle itself10+ chains for USDCRemoves the pool and the committee

Two honest caveats sit under that table. First, none of these protocols beats the simplest risk control, which is not bridging at all: use a centralized exchange, native issuance, or an intent-based router when you can, and keep bridged balances small and short-lived. Second, every model above still has a governance layer, and upgrade keys have drained more bridges than clever cryptography ever has.

What the SEC can and cannot do when a bridge fails

For a US user, the uncomfortable truth is that when a cross-chain bridge is drained, there is usually no one obliged to make you whole and often no clear defendant to pursue. The SEC and the CFTC spent much of 2026 sorting out which crypto assets even fall under their remit; a joint interpretation in March held that most crypto assets are not securities, grouping them instead into categories such as digital commodities, tools, and stablecoins, as Decrypt reported. Jurisdiction over a token, though, is not the same as recourse for a hack, and a bridge protocol is rarely a registered anything.

Bridges also expose the limit of after-the-fact enforcement. Treasury’s Office of Foreign Assets Control sanctioned the Tornado Cash mixer in 2022, naming funds laundered from bridge hacks including Ronin, Harmony, and Nomad in its designation. A federal appeals court then ruled in late 2024 that OFAC had overstepped, because immutable smart contracts that no one controls cannot be the property of a sanctionable person, and Treasury delisted Tornado Cash in March 2025. The same property that makes a bridge hard to secure once deployed, that no operator can claw back a transfer, is what makes it hard to sanction or unwind once the money is gone.

Enforcement has landed more reliably on people than on code. The Department of Justice has extradited and charged individuals tied to bridge exploits, and prosecutors have won cases against the builders of laundering tools even where sanctions on the protocols failed. For a victim, that is cold comfort: a criminal conviction years later is not a refund. The through-line of this entire guide is the same as the regulatory reality, then. On a bridge, prevention is the whole game, because the legal system offers very little cure.

So the question a careful user asks is never simply which bridge is best. It is which protocol sits under this button, how many independent parties can approve my transfer, and what happens on its worst day. Answer those three and you have done more diligence than most of the people moving billions across chains every month. The interoperability wars are, at bottom, a contest over that first question, and in 2026 the market is steadily rewarding whoever can shrink the group you have to trust.

Frequently Asked Questions

What is a cross-chain bridge, and why are bridges hacked so often?

A cross-chain bridge moves value between blockchains that cannot see each other, usually by locking an asset on one chain and issuing a claim on another. Bridges are hacked so often because they concentrate the collateral for everything they have moved into one place, and because a transfer’s safety rests on a small set of verifiers, or a piece of code, that an attacker only has to fool once. Chainalysis counted about $2 billion stolen from bridges in 2022, roughly 69 percent of that year’s crypto theft.

Which cross-chain bridge protocol is the most secure in 2026?

There is no single winner, because each design trades speed and reach against how much you must trust people. Light-client and zero-knowledge systems such as Cosmos IBC and IBC Eureka are the hardest to fool, because the destination chain checks the math itself. Committee and configurable-verifier models like Wormhole, LayerZero, and Hyperlane are faster and more flexible but concentrate or delegate trust. Chainlink CCIP adds a second independent risk network for redundancy, and Circle’s CCTP removes the wrapped token entirely for USDC. The most secure choice depends on the asset and the chains involved.

How can I tell which bridge protocol a website is using?

Check the bridge’s documentation or its smart contracts, which usually name the messaging layer, or look up the token you are bridging on a block explorer to see which protocol’s contracts mint it. If you cannot find out how many independent parties verify a transfer, treat that as a warning sign in itself. The safest habit is to prefer bridges that publish their security model plainly and to keep bridged balances small.

Why did billions of dollars move from LayerZero to Chainlink CCIP in 2026?

After the April 2026 KelpDAO exploit, in which a bridge running a single verifier was fed a forged message and lost about $292 million, large holders sought designs with more redundancy. Chainlink CCIP secures each transfer with an oracle committee plus a separate Risk Management Network that can veto suspicious activity. Assets including Kraken’s kBTC, Lombard, Solv, and more than $7 billion of BitGo’s Wrapped Bitcoin migrated to CCIP, pushing the shift toward $15 billion by August 2026.

Can I get my money back if a bridge I used is hacked?

Usually not automatically. Some bridges have been made whole by a wealthy backer, as Wormhole was, or by a coalition of the affected ecosystem, as KelpDAO was, and some attackers return funds for a bounty, but there is no guarantee and no deposit insurance. Because a deployed bridge has no operator who can reverse a transfer, and because US regulators have limited recourse after the fact, prevention matters far more than any hope of recovery.

By Yuki Tanaka, DeFi and on-chain infrastructure correspondent at HOGE Wire.

Share 𝕏 Post Telegram