Bridge-Architekturen
Lock-Mint und Burn
Bridge-Architekturen ist eine kostenlose Web3 & DApp Development Fundamentals-Lektion auf CoddyKit. Dies ist Lektion 2 von 4. Du kannst die komplette Lektion unten kostenlos lesen – dann übst du sie direkt im Browser mit einem integrierten Code-Editor und einem KI-Tutor rund um die Uhr. Sie ist Teil des Web3 & DApp Development Fundamentals-Lernpfads, und dein Fortschritt wird über Web und CoddyKit-App synchronisiert. Der Web3 & DApp Development Fundamentals-Kurs umfasst insgesamt 4 Lektionen.
Teile dieser Lektion wurden noch nicht übersetzt und werden auf Englisch angezeigt.
Bridge Design Categories
Bridges differ mainly in how they represent assets on the destination chain and who secures the transfer.
The main architectures are lock-and-mint, burn-and-mint, and liquidity pool bridges.
Lock-and-Mint Architecture
In lock-and-mint, the original asset is locked on the source chain and a wrapped version is minted on the destination.
The wrapped token is fully backed by the locked collateral in the bridge contract.
Source: lock 100 USDC in bridge
Dest: mint 100 wUSDC to userBurn-and-Mint Architecture
In burn-and-mint, the token is burned on the source chain and an equal amount is minted natively on the destination.
This requires the token contract on both chains to be controlled by the bridge, but avoids wrapped representations.
Source: burn 100 TOKEN
Dest: mint 100 TOKEN (native)Liquidity Pool Bridges
Liquidity pool bridges hold reserves of the same asset on both chains.
You deposit into the source pool and instantly withdraw from the destination pool — no minting, just a swap from existing liquidity for a fee.
Source pool: user deposits 100 USDC
Dest pool: user receives 99.9 USDC
// 0.1% fee to liquidity providersWho Verifies the Transfer?
Every bridge needs to verify the source event happened. Verification models include:
- External multisig/federation
- Optimistic with fraud proofs
- Light client / native verification
- ZK proofs
Multisig and Federated Bridges
The simplest (and historically most exploited) model uses a multisig of signers who attest transfers.
Security equals the honesty of those signers — if enough keys are compromised, funds can be stolen.
require signatures >= threshold
// e.g. 5 of 8 validators must signOptimistic Bridges
Optimistic bridges assume a transfer is valid and allow a challenge window where watchers can dispute fraud.
This adds a delay but reduces reliance on a trusted signer set.
Light-Client (Native) Bridges
A light-client bridge verifies the source chain's block headers and proofs directly on the destination chain.
This is the most trust-minimized approach — security comes from the chains themselves, not external parties.
ZK Bridges
ZK bridges use validity proofs to attest that an event occurred on the source chain.
The destination verifies a succinct proof, combining strong security with efficient on-chain verification — an emerging frontier.
Canonical vs Generalized Bridges
A canonical bridge is purpose-built for one chain pair (e.g. an L2's official bridge). A generalized bridge connects many chains through one protocol.
Generalized bridges are convenient but concentrate risk across all connected chains.
Putting It Together
Bridge architectures combine an asset model (lock-mint, burn-mint, or liquidity pools) with a verification model (multisig, optimistic, light client, or ZK).
The verification model largely determines safety. Next we study why bridges get exploited.
Quick Check
Test your bridge architecture knowledge.
Recap: Bridge Architectures
You learned that:
- Asset models: lock-and-mint, burn-and-mint, liquidity pools
- Verification: multisig, optimistic, light client, ZK
- Light-client and ZK bridges are most trust-minimized
- Canonical vs generalized bridges trade convenience for concentrated risk
Next: bridge security risks.
Häufig gestellte Fragen
Ist die Lektion „Bridge-Architekturen“ kostenlos?
Ja — der vollständige Text von „Bridge-Architekturen“ ist hier im Web kostenlos zu lesen. Um sie interaktiv zu üben (integrierter Code-Editor und 24/7 KI-Tutor) und den Rest des Web3 & DApp Development Fundamentals-Kurses freizuschalten, upgrade auf CoddyKit PRO. Der Web3 & DApp Development Fundamentals-Kurs umfasst insgesamt 4 Lektionen.
Was lerne ich in „Bridge-Architekturen“?
Lock-Mint und Burn Du übst Web3 & DApp Development Fundamentals mit praktischem Code, den du direkt im Browser ausführst, und ein 24/7 KI-Tutor beantwortet deine Fragen während du die Lektion bearbeitest.
Brauche ich Erfahrung, um Web3 & DApp Development Fundamentals zu starten?
Keine Vorkenntnisse erforderlich. Web3 & DApp Development Fundamentals auf CoddyKit ist für Anfänger bis fortgeschrittene Lernende strukturiert, sodass du hier starten oder von Anfang an beginnen und in deinem eigenen Tempo voranschreiten kannst. Dies ist Lektion 2 von 4.
Wie lange dauert die Lektion „Bridge-Architekturen“?
Die meisten CoddyKit-Lektionen dauern etwa 5–10 Minuten. Jede ist kompakt und interaktiv, sodass du stetig Fortschritte machst und genau dort weitermachst, wo du aufgehört hast – im Web und in der App.
Kann ich in dieser Web3 & DApp Development Fundamentals-Lektion Code schreiben und ausführen?
Ja. Jede Web3 & DApp Development Fundamentals-Lektion enthält einen integrierten Code-Editor, sodass du echten Code direkt in deinem Browser schreibst und ausführst und sofort KI-Feedback erhältst — ohne lokale Einrichtung erforderlich.
Alle Lektionen in diesem Kurs
- Cross-Chain-Konzepte
- Bridge-Architekturen
- Sicherheitsrisiken von Bridges
- Messaging-Protokolle