0Pricing
Web3 & DApp Development Fundamentals · Lesson

Bridging Assets

Moving between layers.

Bridging Assets is a free Web3 & DApp Development Fundamentals lesson on CoddyKit — lesson 3 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Web3 & DApp Development Fundamentals learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Why Bridges Are Needed

Each L2 (and each chain) has its own state. To use assets across them you need a bridge that moves value between layers.

Bridges let you take ETH on Ethereum and use it on Arbitrum, Optimism, or other networks.

What a Bridge Does

A bridge coordinates two chains so that locking or burning an asset on one side results in receiving it on the other.

The total supply is preserved — assets are not duplicated, just represented on the destination chain.

Lock and Mint

The most common pattern is lock-and-mint:

  • Lock the asset in a contract on the source chain
  • Mint a wrapped representation on the destination chain
Source (L1): lock 10 ETH in bridge contract
Dest (L2):   mint 10 bridged-ETH to user

Burn and Release

To move back, the reverse happens — burn-and-release:

  • Burn the wrapped asset on the destination chain
  • Release the locked original on the source chain
Dest (L2):  burn 10 bridged-ETH
Source(L1): release 10 ETH from lock

Native vs Third-Party Bridges

A native (canonical) bridge is operated by the rollup itself and is the most trust-minimized path.

Third-party bridges offer faster or cheaper transfers but add extra trust assumptions in their own contracts and operators.

Deposits vs Withdrawals

On rollups, deposits (L1 to L2) are usually fast. Withdrawals (L2 to L1) can be slow.

Optimistic rollup withdrawals wait out the challenge window; ZK rollup withdrawals wait for proof verification.

Liquidity-Based Fast Bridges

To avoid long waits, liquidity bridges keep pools of assets on both chains.

You hand assets to a pool on one side and instantly receive from the pool on the other, paying a small fee instead of waiting.

Wrapped Assets

Bridged tokens are often wrapped representations (like USDC.e). Their value depends entirely on the assets locked in the bridge.

If the bridge is hacked and the locked assets are stolen, the wrapped tokens can become worthless.

Message Passing

Bridges do more than move tokens — they pass messages between chains, enabling cross-chain calls and governance.

This general message-passing capability is the basis of advanced interoperability, covered in a later lesson.

Trust Assumptions Matter

The safety of bridged funds depends on the bridge's design. Always ask:

  • Who can mint the wrapped tokens?
  • How are the locked assets secured?
  • Is it canonical or third-party?

Putting It Together

Bridges move value across layers using lock-and-mint and burn-and-release, with native bridges being most trust-minimized. Liquidity bridges trade fees for speed.

Next we compare specific L2s to learn how to choose one.

Quick Check

Test your bridging knowledge.

Recap: Bridging Assets

You learned that:

  • Bridges move value between layers
  • Lock-and-mint and burn-and-release preserve supply
  • Native bridges are most trust-minimized
  • Liquidity bridges offer speed for a fee
  • Bridge trust assumptions determine safety

Next: choosing the right Layer 2.

Frequently asked questions

Is the “Bridging Assets” lesson free?

Yes — the full text of “Bridging Assets” is free to read here on the web, and the Web3 & DApp Development Fundamentals course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Web3 & DApp Development Fundamentals course, upgrade to CoddyKit PRO.

What will I learn in “Bridging Assets”?

Moving between layers. You practise Web3 & DApp Development Fundamentals with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Web3 & DApp Development Fundamentals?

No prior experience is required. Web3 & DApp Development Fundamentals on CoddyKit is structured for beginners through advanced learners; this is — lesson 3 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Bridging Assets” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Web3 & DApp Development Fundamentals lesson?

Yes. Every Web3 & DApp Development Fundamentals lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Why Layer 2
  2. Rollups
  3. Bridging Assets
  4. Choosing a Layer 2
← Back to Web3 & DApp Development Fundamentals