Skip to content

Latest commit

 

History

History
1390 lines (1161 loc) · 60.1 KB

File metadata and controls

1390 lines (1161 loc) · 60.1 KB

Layer 2终极指南:怎么把Gas费从50块降到5毛?

前面三期我们讲了:

  • 区块链和Web3的基本概念
  • 以太坊是什么
  • Gas费为什么这么贵

今天终于到了解决方案:Layer 2

看完这篇,你就明白为什么Layer 2是以太坊的救星了。


一、为什么需要Layer 2?

问题回顾

以太坊问题三联图:慢 / 贵 / 堵 <style> .title{fill:#e6edf3;font:700 18px system-ui,Segoe UI,Arial;} .label{fill:#9fb3c8;font:600 14px system-ui,Segoe UI,Arial;} .big{fill:#ffcc00;font:700 44px system-ui,Apple Color Emoji,Noto Color Emoji;} .met{fill:#a8c7fa;font:600 12px system-ui,Arial} .metric{fill:#e6edf3;font:700 26px system-ui,Arial} .note{fill:#94a3b8;font:500 12px system-ui,Arial} </style> 以太坊主网的三大痛点
<g transform="translate(20,56)">
  <rect width="270" height="230" rx="12" fill="url(#panel)" stroke="#2e3a61"/>
  <text x="18" y="30" class="label">慢:吞吐量</text>
  <text x="20" y="100" class="big">🐌</text>
  <text x="90" y="96" class="metric">15–30 TPS</text>
  <text x="90" y="120" class="note">每秒交易笔数极低</text>
  <line x1="20" y1="160" x2="250" y2="160" stroke="#31406a"/>
  <text x="20" y="190" class="met">影响</text>
  <text x="60" y="190" class="note">确认慢 · 容易拥堵</text>
</g>

<g transform="translate(315,56)">
  <rect width="270" height="230" rx="12" fill="url(#panel)" stroke="#2e3a61"/>
  <text x="18" y="30" class="label">贵:Gas费用</text>
  <text x="20" y="100" class="big">🔥💵</text>
  <text x="120" y="96" class="metric">$5–$200+</text>
  <text x="120" y="120" class="note">高峰期飙升</text>
  <line x1="20" y1="160" x2="250" y2="160" stroke="#31406a"/>
  <text x="20" y="190" class="met">影响</text>
  <text x="60" y="190" class="note">小额交易不划算</text>
</g>

<g transform="translate(610,56)">
  <rect width="270" height="230" rx="12" fill="url(#panel)" stroke="#2e3a61"/>
  <text x="18" y="30" class="label">堵:网络拥塞</text>
  <text x="20" y="100" class="big">🚗🚗🚗</text>
  <text x="130" y="96" class="metric">Mempool↑</text>
  <text x="130" y="120" class="note">牛市易拥塞</text>
  <line x1="20" y1="160" x2="250" y2="160" stroke="#31406a"/>
  <text x="20" y="190" class="met">影响</text>
  <text x="60" y="190" class="note">失败率上升 · 滑点变大</text>
</g>

以太坊主链的三大问题: • 太慢:每秒只能处理15-30笔交易
太贵:Gas费动不动几十上百块
太堵:牛市直接瘫痪

但是: • 改造主链太难(就像重建北京二环)
• 速度、安全、去中心化三者不可兼得(区块链不可能三角)

区块链不可能三角:去中心化、安全性、可扩展性 <style> .t1{fill:#e6edf3;font:700 18px system-ui} .t2{fill:#9fb3c8;font:600 13px system-ui} .pill{fill:#1f2a48;stroke:#2e3a61} </style> 不可能三角:三者难以兼得 安全性
  <circle cx="20" cy="204" r="8" fill="#34d399"/>
  <rect class="pill" x="-20" y="190" rx="10" width="90" height="24"/>
  <text x="-12" y="207" class="t2">去中心化</text>

  <circle cx="540" cy="204" r="8" fill="#f59e0b"/>
  <rect class="pill" x="498" y="190" rx="10" width="100" height="24"/>
  <text x="506" y="207" class="t2">可扩展性</text>

  <g opacity="0.9">
    <path d="M150,120 L280,16 L410,120 Z" fill="#223055"/>
    <text x="238" y="120" class="t2" fill="#cbd5e1">以太坊主网:偏向 安全+去中心化</text>
  </g>
</g>

怎么办?

Layer 2就是答案:在主链上搭快速通道。


二、Layer 2到底是什么?

最简单的比喻

以太坊主链 = 北京西站
人山人海,安全但慢,手续费贵。

Layer 2 = 地铁线
快速通道,便宜方便,最终还是到北京西站。

分层示意图:应用层 / Layer 2 / Layer 1 <style> .cap{fill:#e6edf3;font:700 18px system-ui} .lab{fill:#9fb3c8;font:600 14px system-ui} .layer{fill:#1f2a48;stroke:#2e3a61} .small{fill:#cbd5e1;font:600 12px system-ui} </style> Layered Stack 应用层 Uniswap · OpenSea · Games
  <rect class="layer" x="0" y="100" width="780" height="90" rx="12"/>
  <text x="20" y="140" class="lab">Layer 2(快速通道)</text>
  <text x="20" y="165" class="small">Arbitrum · Optimism · zkSync</text>
  <g transform="translate(520,118)">
    <rect x="0" y="0" width="240" height="54" rx="10" fill="#203054" stroke="#2d3b64"/>
    <text x="12" y="23" class="small">大部分交易在此执行</text>
    <text x="12" y="41" class="small">压缩后再提交主链</text>
  </g>

  <rect class="layer" x="0" y="220" width="780" height="70" rx="12"/>
  <text x="20" y="250" class="lab">Layer 1(以太坊主链)</text>
  <text x="20" y="270" class="small">最终确认 · 安全保障 · 数据可用性</text>
</g>

Layer 2的核心原理

Layer 2工作原理:执行 → 打包 → 提交 <style> .lab{fill:#9fb3c8;font:600 13px system-ui} .cap{fill:#e6edf3;font:700 16px system-ui} </style> L2 执行(快) 批量处理交易 状态更新在 L2 ⚡
  <line x1="250" y1="80" x2="370" y2="80" stroke="#60a5fa" stroke-width="2.5" marker-end="url(#arrow)"/>

  <rect x="390" y="0" width="230" height="160" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="406" y="28" class="cap">压缩打包</text>
  <text x="406" y="54" class="lab">交易数据压缩</text>
  <text x="406" y="76" class="lab">生成摘要</text>
  <text x="406" y="120" class="cap">📦</text>

  <line x1="620" y1="80" x2="740" y2="80" stroke="#60a5fa" stroke-width="2.5" marker-end="url(#arrow)"/>

  <rect x="760" y="0" width="230" height="160" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="776" y="28" class="cap">提交 L1</text>
  <text x="776" y="54" class="lab">最终确认</text>
  <text x="776" y="76" class="lab">继承安全性</text>
  <text x="776" y="120" class="cap">🔐</text>
</g>
  1. 大部分计算在Layer 2完成(快)
  2. 把结果打包
  3. 提交到以太坊主链(安全)

就像快递打包: • 1000个包裹单独寄:运费1000元
• 打包成一箱寄:运费10元,大家平摊


三、什么是Rollup汇总技术?

Rollup是Layer 2的主流技术方案。

生活化理解

买菜结账对比:逐笔付款 vs 一次结算 <style> .cap{fill:#e6edf3;font:700 16px system-ui} .lab{fill:#9fb3c8;font:600 13px system-ui} </style> 逐笔付款(贵) 🥬 + 💸 🥕 + 💸 🍅 + 💸 总费用高
  <rect x="440" y="0" width="380" height="170" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="456" y="30" class="cap">一次结算(省)</text>
  <text x="456" y="62" class="lab">🥬🥕🍅 → 📦</text>
  <text x="456" y="88" class="lab">统一付款一次</text>
  <text x="800" y="150" class="cap" text-anchor="end">费用平摊</text>
</g>

以前:
买个白菜给一次钱,买个萝卜又给一次钱,每次都要掏钱包。

Rollup:
全买完了,最后一起算账、一次性付钱。

技术原理

Rollup:1000→1 的打包与费用平摊 <style> .cap{fill:#e6edf3;font:700 16px system-ui} .lab{fill:#9fb3c8;font:600 13px system-ui} </style> 独立交易 x1000 tx1, tx2, ... tx1000
  <line x1="280" y1="85" x2="380" y2="85" stroke="#60a5fa" stroke-width="2.5" marker-end="url(#a6)"/>

  <rect x="400" y="0" width="180" height="170" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="416" y="30" class="cap">压缩</text>
  <text x="416" y="62" class="lab">Merkle 根 / 证明</text>

  <line x1="590" y1="85" x2="690" y2="85" stroke="#60a5fa" stroke-width="2.5" marker-end="url(#a6)"/>

  <rect x="710" y="0" width="160" height="170" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="726" y="30" class="cap">提交主网</text>
  <text x="726" y="62" class="lab">1 笔汇总交易</text>
  <text x="726" y="86" class="lab">Gas $50 / 1000人 = $0.05</text>
</g>

Rollup把成百上千笔交易:

  1. 在Layer 2处理
  2. 压缩打包
  3. 一次性提交到以太坊主链

费用大家平摊: • 主链Gas费:$50
• 1000人平摊:每人$0.05


四、Optimistic Rollup(乐观汇总)

核心思想:先相信,有问题再说

乐观:先放行,保留举报期 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 结账 🧾 放行
  <rect x="230" y="0" width="200" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="246" y="30" class="cap">离开</text>
  <text x="246" y="60" class="lab">✅ 暂时有效</text>

  <rect x="460" y="0" width="200" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="476" y="30" class="cap">7天内</text>
  <text x="476" y="60" class="lab">📣 可举报</text>

  <rect x="690" y="0" width="200" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="706" y="30" class="cap">最终</text>
  <text x="706" y="60" class="lab">🔒 确认</text>
</g>

就像你去超市买东西: • 收银员不会每件商品都检查真假
• 先相信都是正品,先给你结账
• 但保留小票,7天内可以投诉
• 发现假货,严肃处理

运作机制

Optimistic Rollup:提交 → 接受 → 挑战 → 最终 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> T0 提交 "我保证正确"
  <line x1="190" y1="70" x2="270" y2="70" stroke="#60a5fa" stroke-width="2.5" marker-end="url(#a8)"/>

  <rect x="280" y="0" width="180" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="296" y="30" class="cap">接受</text>
  <text x="296" y="60" class="lab">暂记状态</text>

  <line x1="460" y1="70" x2="540" y2="70" stroke="#60a5fa" stroke-width="2.5" marker-end="url(#a8)"/>

  <rect x="550" y="0" width="180" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="566" y="30" class="cap">挑战 7 天</text>
  <text x="566" y="60" class="lab">任何人可质疑</text>

  <line x1="730" y1="70" x2="810" y2="70" stroke="#60a5fa" stroke-width="2.5" marker-end="url(#a8)"/>

  <rect x="820" y="0" width="180" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="836" y="30" class="cap">最终确认</text>
  <text x="836" y="60" class="lab">不可逆</text>
</g>

步骤:

  1. 提交交易
    有人把一批交易提交到以太坊,说"这些都没问题"

  2. 乐观接受
    系统说"行,我信你",不立即验证

  3. 挑战期(7天)
    给其他人7天时间检查
    发现问题可以举报

  4. 惩罚机制
    如果被证明作假,要罚钱(罚的比赚的多得多)

  5. 最终确认
    7天后,交易最终确认


Optimistic Rollup的特点

Optimistic Rollup:优缺点 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}.ok{fill:#34d399}.bad{fill:#f87171}</style> 优点 ✅ 费用降低 10–50 倍 ✅ 兼容 EVM 生态 ✅ 技术路径成熟
  <rect x="420" y="0" width="380" height="160" rx="12" fill="#361c21" stroke="#2e3a61"/>
  <text x="436" y="30" class="cap bad">缺点</text>
  <text x="436" y="62" class="lab">❌ 提款等待 7 天</text>
  <text x="436" y="86" class="lab">❌ 成本仍高于 ZK</text>
</g>

优点: ✅ Gas费降低10-50倍
✅ 技术相对简单
✅ 兼容以太坊现有工具
✅ 生态发展快

缺点: ❌ 提款要等7天(挑战期)
❌ 虽然便宜,但没ZK Rollup便宜

代表项目

Optimistic 代表项目 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> Arbitrum 份额第一 · 生态丰富 TVL $3B+
  <rect x="288" y="0" width="260" height="160" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="304" y="30" class="cap">Optimism</text>
  <text x="304" y="62" class="lab">技术成熟 · 超级链</text>
  <text x="304" y="86" class="lab">OP 激励</text>

  <rect x="576" y="0" width="260" height="160" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="592" y="30" class="cap">Base</text>
  <text x="592" y="62" class="lab">Coinbase 支持</text>
  <text x="592" y="86" class="lab">入金便捷</text>
</g>

五、ZK Rollup(零知识汇总)

核心思想:立即证明,不用等

ZK:提交即附证明,快速确认 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 普通方式 交卷后再批改
  <rect x="420" y="0" width="360" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="436" y="30" class="cap">ZK 方式</text>
  <text x="436" y="60" class="lab">交卷时附有效性证明</text>
</g>

还记得考试的例子吗?

普通方式:
你说"我考了100分",老师要看每道题

ZK方式:
你交卷时附带一个证明(老师的签字盖章),证明你确实考了100分,老师只需验证签名

零知识证明是什么?

零知识:证明知道,但不泄露 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 知道密码 不展示密码本身
  <rect x="360" y="0" width="380" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="376" y="30" class="cap">数学证明</text>
  <text x="376" y="60" class="lab">证明陈述成立</text>
</g>

定义:
证明某件事是真的,但不透露具体内容。

例子:
• 你要证明知道保险柜密码
• 普通方式:当面输入(密码泄露了)
• 零知识方式:用数学证明"我知道密码",但不说密码是什么


运作机制

ZK Rollup:执行 + 证明 → 验证 → 立即确认 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> L2 执行 批量处理
  <line x1="230" y1="70" x2="310" y2="70" stroke="#60a5fa" stroke-width="2.5" marker-end="url(#a13)"/>

  <rect x="320" y="0" width="220" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="336" y="30" class="cap">生成证明</text>
  <text x="336" y="60" class="lab">有效性证明</text>

  <line x1="540" y1="70" x2="620" y2="70" stroke="#60a5fa" stroke-width="2.5" marker-end="url(#a13)"/>

  <rect x="630" y="0" width="220" height="140" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="646" y="30" class="cap">提交主链</text>
  <text x="646" y="60" class="lab">几分钟内验证</text>
</g>

ZK Rollup的特点

ZK Rollup:优缺点 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}.ok{fill:#34d399}.bad{fill:#f87171}</style> 优点 ✅ 费用降低 50–100 倍 ✅ 提款更快 ✅ 安全性更高
  <rect x="420" y="0" width="380" height="160" rx="12" fill="#361c21" stroke="#2e3a61"/>
  <text x="436" y="30" class="cap bad">缺点</text>
  <text x="436" y="62" class="lab">❌ 技术复杂</text>
  <text x="436" y="86" class="lab">❌ 兼容性一般</text>
</g>

代表项目

ZK 代表项目 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> zkSync Era 上线 · 生态增长
  <rect x="288" y="0" width="260" height="160" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="304" y="30" class="cap">StarkNet</text>
  <text x="304" y="62" class="lab">STARK · Cairo</text>

  <rect x="576" y="0" width="260" height="160" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="592" y="30" class="cap">Polygon zkEVM</text>
  <text x="592" y="62" class="lab">EVM 兼容</text>
</g>

六、Optimistic vs ZK Rollup

Optimistic vs ZK:关键对比 <style>.th{fill:#9fb3c8;font:700 13px system-ui}.td{fill:#e6edf3;font:600 13px system-ui}</style> 特点 Optimistic ZK 信任方式 先信任后验证 数学证明即验证 提款时间 约 7 天 分钟到小时 费用 降 10–50 倍 降 50–100 倍 兼容性 EVM 兼容好 部分兼容 生态 成熟 成长中

怎么选择?

选择指南:速度 / 生态 / 费用 / 成熟度 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 你的需求
  <rect x="0" y="90" width="220" height="48" rx="10" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="110" y="120" class="lab" text-anchor="middle">提款要快</text>
  <line x1="110" y1="138" x2="110" y2="170" stroke="#60a5fa" stroke-width="2" marker-end="url(#a17)"/>
  <rect x="0" y="170" width="220" height="48" rx="10" fill="#163a2a" stroke="#2e3a61"/>
  <text x="110" y="200" class="cap" text-anchor="middle">ZK Rollup</text>

  <rect x="260" y="90" width="220" height="48" rx="10" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="370" y="120" class="lab" text-anchor="middle">生态要丰富</text>
  <line x1="370" y1="138" x2="370" y2="170" stroke="#60a5fa" stroke-width="2" marker-end="url(#a17)"/>
  <rect x="260" y="170" width="220" height="48" rx="10" fill="#2a2440" stroke="#2e3a61"/>
  <text x="370" y="200" class="cap" text-anchor="middle">Optimistic</text>

  <rect x="520" y="90" width="220" height="48" rx="10" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="630" y="120" class="lab" text-anchor="middle">费用要最低</text>
  <line x1="630" y1="138" x2="630" y2="170" stroke="#60a5fa" stroke-width="2" marker-end="url(#a17)"/>
  <rect x="520" y="170" width="220" height="48" rx="10" fill="#163a2a" stroke="#2e3a61"/>
  <text x="630" y="200" class="cap" text-anchor="middle">ZK Rollup</text>
</g>

需要提款快 → ZK Rollup
适合频繁进出的用户

要生态丰富 → Optimistic Rollup
适合玩Dapp、DeFi的用户

要最低费用 → ZK Rollup
适合高频交易的用户

要稳定成熟 → Optimistic Rollup
适合保守型用户


七、Layer 2的实际使用

如何切换到Layer 2?

钱包切换网络:四步 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 1. 打开钱包 2. 选择网络 3. 添加 L2 4. 切换成功

方法一:在钱包里切换

  1. 打开MetaMask
  2. 点击顶部网络名称
  3. 选择Arbitrum/Optimism/zkSync
  4. 如果没有,点"添加网络"手动添加

方法二:访问Dapp时自动切换

很多Dapp会提示你切换网络,点"切换"就行。


如何把资产转到Layer 2?

跨链桥:主网 → L2 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 以太坊主网 跨链桥 Layer 2

使用跨链桥(Bridge):

  1. 官方桥
    • Arbitrum Bridge: bridge.arbitrum.io
    • Optimism Bridge: app.optimism.io/bridge
    • zkSync Bridge: bridge.zksync.io

  2. 第三方桥
    • Hop Protocol(多链)
    • Orbiter Finance(快速)
    • Across Protocol(便宜)

跨链桥操作界面关键步骤 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 选择链 输入金额 确认交易

步骤: • 连接钱包
• 选择从以太坊主网到Layer 2
• 输入金额
• 确认交易
• 等待几分钟(主网→Layer 2快)
• 等待几小时到7天(Layer 2→主网慢,取决于用哪种Rollup)


Layer 2上能做什么?

Layer 2 生态全景 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> DeFi Uniswap, Curve
  <rect x="200" y="0" width="180" height="220" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="216" y="30" class="cap">借贷</text>
  <text x="216" y="60" class="lab">Aave, Compound</text>

  <rect x="400" y="0" width="180" height="220" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="416" y="30" class="cap">NFT</text>
  <text x="416" y="60" class="lab">OpenSea, Blur</text>

  <rect x="600" y="0" width="180" height="220" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="616" y="30" class="cap">游戏/社交</text>
  <text x="616" y="60" class="lab">Immutable X, Lens</text>
</g>

DEX(去中心化交易所): • Uniswap(Arbitrum、Optimism都有)
• SushiSwap
• Curve

借贷平台: • Aave
• Compound

NFT市场: • OpenSea(支持多个Layer 2)
• Blur

游戏: • TreasureDAO(Arbitrum游戏生态)
• Immutable X(游戏专用Layer 2)

社交: • Lens Protocol
• Farcaster


八、Layer 2的费用对比

费用对比:主网 vs 各 L2 <style>.th{fill:#9fb3c8;font:700 13px system-ui}.td{fill:#e6edf3;font:600 13px system-ui}</style> 操作 主网 Arbitrum Optimism zkSync 转 ETH $5–50 $0.1–0.5 $0.1–0.5 $0.05–0.2 转代币 $10–100 $0.2–1 $0.2–1 $0.1–0.5 Uniswap 交易 $20–200 $1–5 $1–5 $0.5–2 买 NFT $30–300 $2–10 $2–10 $1–5

省钱效果:10-100倍!


九、Layer 2的问题和风险

风险提示 <style>.cap{fill:#fbbf24;font:700 16px system-ui}.lab{fill:#e6edf3;font:600 13px system-ui}</style> ⚠️ 风险:跨链桥 · 去中心化 · 技术复杂度

1. 流动性分散

流动性分散:多链资产分布 <style>.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 主网 L2-A L2-B L2-C

• 资产分散在不同Layer 2
• 跨Layer 2转账还是要回主网(慢且贵)
• 流动性不如主网集中

2. 跨链桥风险

• 跨链桥是黑客攻击重灾区
• 2022年多个跨链桥被盗,损失几十亿美元
• 使用官方桥相对安全,但慢

3. 技术风险

• Layer 2技术还在发展中
• Optimistic Rollup的挑战机制没被真正测试过
• ZK Rollup的零知识证明非常复杂,可能有bug

4. 中心化风险

排序器去中心化程度 <style>.lab{fill:#9fb3c8;font:600 13px system-ui}.cap{fill:#e6edf3;font:700 16px system-ui}</style> 更中心化 → 排序器去中心化:进行中

• 很多Layer 2的排序器(Sequencer)是中心化的
• 理论上可以审查交易
• 都在朝去中心化方向改进


十、Layer 2的未来

1. Layer 3出现了

Layer 3:专用应用层 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> Layer 3 · 专用链(游戏 / 社交) Layer 2 · 通用扩容 Layer 1 · 安全基础(以太坊)

在Layer 2上再搭一层: • 更专业化(游戏专用、社交专用)
• 更便宜(费用更低)
• 更灵活(定制化)

2. 超级链(Superchain)

Superchain:多 L2 互联 <style>.lab{fill:#9fb3c8;font:600 13px system-ui}</style> L2-A L2-B L2-C L2-D

Optimism在推的概念: • 把多个Layer 2连成一个网络
• 跨Layer 2转账像在一条链上一样方便
• Base、Zora等都加入了

3. 模块化区块链

模块化区块链:分层分工 <style>.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 执行层:Layer 2 共识层:以太坊 数据层:Celestia 等

专业分工: • Celestia:专门存储数据
• 以太坊:负责安全共识
• Layer 2:负责执行交易

各干各的擅长的事,效率更高。


十一、普通人怎么用Layer 2?

新手推荐流程

新手指南:3 步走 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 选择 L2 交易所直接提币 开始使用 Dapp

第一步:选择Layer 2

推荐新手: • Arbitrum:生态最丰富,稳定
Base:Coinbase出品,入金方便

第二步:在交易所直接买

交易所:选择提币网络到 L2 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 选择网络:Arbitrum / Optimism 确认提币地址与金额

现在很多交易所支持直接提币到Layer 2: • 币安:支持Arbitrum、Optimism
• OKX:支持多个Layer 2
• Coinbase:支持Base

这样就省了跨链桥的费用和时间!

第三步:开始使用

• 在Uniswap交易
• 在Aave存币赚利息
• 在OpenSea买NFT
• 体验Gas费只要几毛钱的感觉


进阶玩法

进阶玩法:空投 · 耕作 · NFT <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 撸空投 收益耕作 NFT 交易

1. 撸空投
• 很多Layer 2会发币奖励早期用户
• Arbitrum已发,zkSync、StarkNet可能会发
• 多用他们的应用,增加空投机会

2. 收益耕作(Yield Farming)
• 在Layer 2上的DeFi协议提供流动性
• 赚取交易费+代币奖励
• 风险和收益并存

3. NFT交易
• Layer 2上的NFT更便宜
• 买卖不心疼Gas费
• 很多新项目在Layer 2首发


十二、Layer 2常见问题

常见问题 FAQ <style>.q{fill:#e6edf3;font:700 14px system-ui}.a{fill:#9fb3c8;font:600 13px system-ui}</style> Q1: Layer 2安全吗? A: 继承主网安全,桥有风险。
  <rect x="420" y="0" width="380" height="80" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="436" y="28" class="q">Q2: 能转回主网吗?</text>
  <text x="436" y="52" class="a">A: 能。Optimistic 约7天,ZK更快。</text>

  <rect x="0" y="100" width="380" height="80" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="16" y="128" class="q">Q3: L2之间能直接转吗?</text>
  <text x="16" y="152" class="a">A: 需跨链桥,未来或无缝。</text>

  <rect x="420" y="100" width="380" height="80" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="436" y="128" class="q">Q4: L2会取代主网吗?</text>
  <text x="436" y="152" class="a">A: 不会,分工互补。</text>
</g>

Q1: Layer 2安全吗?
A: 继承以太坊主网的安全性,相对安全。但跨链桥有风险。

Q2: Layer 2上的资产能转回主网吗?
A: 能。但Optimistic Rollup要等7天,ZK Rollup几分钟到几小时。

Q3: 不同Layer 2之间能直接转吗?
A: 目前需要通过跨链桥,未来超级链可能实现无缝转账。

Q4: Layer 2会不会取代以太坊主网?
A: 不会,是补充关系。主网负责安全,Layer 2负责性能。

Q5: 我应该把所有资产都转到Layer 2吗?
A: 不建议。大额资产建议留在主网更安全,小额日常使用放Layer 2。


总结

Layer 2 知识图谱 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> Layer 2 = 快速通道 · Rollup = 汇总打包 Optimistic:先信后验 · 7天提款 ZK:数学证明 · 快速最终性 费用:10–100 倍降低 使用:交易所直达 L2 或跨链桥 风险:桥 · 分散 · 中心化

Layer 2是什么?
以太坊的快速通道,便宜又快,安全性由主网保障。

Rollup是什么?
Layer 2的主流技术,把很多交易打包处理。

两种Rollup的区别?
• Optimistic:先信任后验证,提款要等7天,生态成熟
• ZK:立即用数学证明,提款几分钟,技术更先进

费用能便宜多少?
10-100倍,从几十块降到几毛钱。

怎么使用?
在交易所直接提币到Layer 2,或用跨链桥转账。

有什么风险?
跨链桥风险、流动性分散、技术还在发展中。

未来趋势?
Layer 3、超级链、模块化区块链,Layer 2会越来越重要。


系列完结 · 成就解锁 <style>.cap{fill:#e6edf3;font:700 18px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 🎉 Web3 扫盲系列 · 全部完成 区块链基础 · 以太坊 · Gas 费用 · Layer 2

🎉 恭喜你,完成了整个Web3扫盲系列!

你已经了解了: ✅ 区块链和Web3的基本概念
✅ 以太坊是什么以及怎么运作
✅ Gas费为什么这么贵
✅ Layer 2如何解决问题

现在的你,已经比90%的人更懂Web3了!


关注与继续学习 <style>.cap{fill:#e6edf3;font:700 18px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 👍 点在看 · 🔁 转发 · ✅ 关注 项目分析 · 空投机会 · 安全防骗 · 实操教程
延伸阅读与工具 <style>.cap{fill:#e6edf3;font:700 16px system-ui}.lab{fill:#9fb3c8;font:600 13px system-ui}</style> 阅读 Arbitrum 文档 · Optimism 官网 zkSync 导航 · L2Beat · DeFiLlama
  <rect x="440" y="0" width="400" height="160" rx="12" fill="#1f2a48" stroke="#2e3a61"/>
  <text x="456" y="30" class="cap">工具</text>
  <text x="456" y="60" class="lab">MetaMask · Etherscan</text>
  <text x="456" y="84" class="lab">Hop · DeBridge</text>
</g>