모듈러 실행 레이어
실행 로직을 독립 모듈로 분리하여 유연성과 확장성을 높이는 시스템 구조.
블록체인 확장성의 핵심 기술로, 롤업(Rollups)이 대표적인 예입니다. 실행 레이어는 빠른 속도로 트랜잭션을 처리하고, 결과값만을 메인 체인(L1)에 기록하여 보안을 유지합니다. 이는 단일 체인이 모든 것을 처리하는 '모놀리식' 방식의 한계를 극복합니다.
graph LR
Center["모듈러 실행 레이어"]:::main
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧒 5살도 이해할 수 있게 설명
Generated ELI5 content
🤓 Expert Deep Dive
Generated expert content
❓ 자주 묻는 질문
왜 모듈러인가?
시스템을 레고 블록처럼 조립할 수 있어, 특정 기능을 수행하는 레이어를 교체하거나 업그레이드하기 쉽기 때문입니다.
📚 출처
1. HarmonyOS 5