docs: add architecture diagram for EVM node component (#20162)

This commit is contained in:
sashass1315
2025-12-06 15:35:45 +02:00
committed by GitHub
parent 56e60a3704
commit 6655a9377a

View File

@@ -13,7 +13,18 @@ The EVM component manages:
- State management and caching
## Architecture
```mermaid
graph TD
Config[EVM Configuration] --> Env[EVM Environment]
Config --> Executor[Block Executor]
Config --> Builder[Block Builder]
Executor --> State[(State Database)]
Builder --> State
Builder --> Assembler[Block Assembler]
Assembler --> State
```
## Key Concepts