Layer 2가 필요한 이유
Ethereum 확장하기
Layer 2가 필요한 이유은(는) CoddyKit의 무료 Web3 & DApp Development Fundamentals 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 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.
자주 묻는 질문
“Layer 2가 필요한 이유” 강의는 무료인가요?
네 — “Layer 2가 필요한 이유” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Web3 & DApp Development Fundamentals 강의 전체를 잠금 해제할 수 있습니다. Web3 & DApp Development Fundamentals 강의에는 총 4개의 강의가 포함되어 있습니다.
“Layer 2가 필요한 이유”에서 뭘 배우나요?
Ethereum 확장하기 브라우저에서 직접 실행하는 실습 코드로 Web3 & DApp Development Fundamentals을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Web3 & DApp Development Fundamentals을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Web3 & DApp Development Fundamentals은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.
“Layer 2가 필요한 이유” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Web3 & DApp Development Fundamentals 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Web3 & DApp Development Fundamentals 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- Layer 2가 필요한 이유
- 롤업
- 자산 브리징
- Layer 2 선택하기