0Pricing
Web3 & DApp Development Fundamentals · レッスン

Layer 2を使う理由

Ethereumをスケールさせます

「Layer 2を使う理由」はCoddyKit上の無料Web3 & DApp Development Fundamentalsレッスンです。 これはレッスン1/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応の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 cheaper

Inheriting 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 500

Rollups: 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時間対応のAIチューター)、Web3 & DApp Development Fundamentalsコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Web3 & DApp Development Fundamentalsコースには全4レッスンが含まれています。

「Layer 2を使う理由」で何を学びますか?

Ethereumをスケールさせます ブラウザで直接実行するハンズオンコードでWeb3 & DApp Development Fundamentalsを演習し、24時間対応の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フィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. Layer 2を使う理由
  2. ロールアップ
  3. アセットのブリッジ
  4. Layer 2の選定
← Web3 & DApp Development Fundamentalsに戻る