为什么需要 Layer 2
扩展 Ethereum
为什么需要 Layer 2 是 CoddyKit 上的免费 Web3 & DApp Development Fundamentals 课时。 这是第 1 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Web3 & DApp Development Fundamentals 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Web3 & DApp Development Fundamentals 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
The Scaling Problem
Ethereum can only process a limited number of transactions per second. When demand surges, blocks fill up and gas fees spike.
Layer 2 (L2) solutions exist to scale throughput without sacrificing the security of the base chain.
Layer 1 vs Layer 2
Layer 1 (L1) is the base blockchain like Ethereum. Layer 2 is a separate system that processes transactions off the main chain but settles back to it.
- L1: maximum security, limited throughput
- L2: high throughput, inherits L1 security
The Blockchain Trilemma
The trilemma says a chain struggles to be simultaneously scalable, secure, and decentralized at L1.
L2s sidestep this by handling scale off-chain while leaning on L1 for security and decentralization.
How Gas Fees Arise
Every operation costs gas, paid in ETH. Limited block space means users bid against each other, pushing fees up during congestion.
By moving execution off L1, L2s drastically cut the cost per transaction.
L1 swap fee: ~$15 during congestion
L2 swap fee: ~$0.05
// same action, far cheaperInheriting Security
The key insight of L2s: they do the heavy computation off-chain but post data or proofs to L1.
This lets them inherit Ethereum's security rather than bootstrapping a brand-new validator set.
Batching Transactions
L2s batch many transactions together and submit a single compressed summary to L1.
Hundreds of L2 transactions share the cost of one L1 submission, slashing per-user fees.
L2 collects 500 transactions
-> compress into 1 batch
-> post batch to L1
// cost split across all 500Rollups: The Dominant Approach
The leading L2 design is the rollup. Rollups execute transactions off-chain and post the resulting data to L1, where it can be verified.
We will explore Optimistic and ZK rollups in detail next lesson.
Other Scaling Approaches
Besides rollups, there are:
- State channels — off-chain payment channels
- Sidechains — independent chains with their own security
- Validiums — ZK proofs with off-chain data
Each trades off security, cost, and complexity differently.
Sidechains Are Not True L2
A sidechain runs in parallel with its own consensus and validators. It does not inherit L1 security.
If a sidechain's validators are compromised, funds can be lost — a key difference from rollups.
User Experience Improvements
For users, L2s mean near-instant confirmations and cheap fees, while still being able to bridge back to Ethereum.
This makes everyday actions like swaps, mints, and games economically viable on-chain.
Putting It Together
Layer 2s scale Ethereum by executing transactions off-chain and batching results to L1, inheriting its security while cutting fees dramatically.
Rollups lead the way, with sidechains and channels as alternatives. Next: how rollups actually work.
Quick Check
Test your Layer 2 fundamentals.
Recap: Why Layer 2
You learned that:
- L2s scale L1 by executing off-chain and settling on-chain
- They sidestep the trilemma and cut gas fees
- Batching shares L1 costs across many transactions
- Rollups inherit L1 security; sidechains do not
Next: rollups in depth.
用 AI 导师学习 Web3 & DApp Development Fundamentals — 免费
在浏览器中编写并运行真实代码,获得全天候 AI 导师的即时帮助,并在网页或应用中继续学习。
- 课程
- 29
- 课程
- 105
常见问题解答
「为什么需要 Layer 2」课时是免费的吗?
是的 — 「为什么需要 Layer 2」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Web3 & DApp Development Fundamentals 课程的其余内容,请升级到 CoddyKit PRO。 Web3 & DApp Development Fundamentals 课程共包含 4 节课。
「为什么需要 Layer 2」这节课中我会学到什么?
扩展 Ethereum 你通过在浏览器中直接运行的动手代码来练习 Web3 & DApp Development Fundamentals,全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 Web3 & DApp Development Fundamentals 需要有经验吗?
无需任何先前经验。CoddyKit 上的 Web3 & DApp Development Fundamentals 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 1 节课,共 4 节。
「为什么需要 Layer 2」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 Web3 & DApp Development Fundamentals 课中编写并运行代码吗?
能。每节 Web3 & DApp Development Fundamentals 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。
此课程中的所有课时
- 为什么需要 Layer 2
- Rollups
- 跨层转移资产
- 选择 Layer 2