Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Introduction

- [Getting started](./getting-started/README.md)
- [Hardware requirements]()
- [Hardware requirements](./getting-started/hardware_requirements.md)
- [Installation](./getting-started/installation/README.md)
- [Binary distribution](./getting-started/installation/binary_distribution.md)
- [Package manager](./getting-started/installation/package_manager.md)
Expand Down
35 changes: 35 additions & 0 deletions docs/getting-started/hardware_requirements.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Hardware Requirements

> NOTE: The guidance in this document applies to running an L1 (Ethereum) node. L2 deployments (sequencers, provers and related infra) have different hardware profiles and operational requirements — see the "L2" section below for details.

Hardware requirements depend primarily on the **network** you’re running — for example, **Hoodi**, **Sepolia**, or **Mainnet**.

## General Recommendations

Across all networks, the following apply:

- **Disk Type:** Use **high-performance NVMe SSDs**. For multi-disk setups, **software RAID 0** is recommended to maximize speed and capacity. **Avoid hardware RAID**, which can limit NVMe performance.
- **RAM:** Sufficient memory minimizes sync bottlenecks and improves stability under load.
- **CPU:**
- 4–8 cores for standard nodes
- 8–16 cores for heavy or archival workloads
Copy link
Collaborator

@mpaulucci mpaulucci Oct 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dunno if I would mention archive since we don't support it (yet)



---

## Disk and Memory Requirements by Network



| Network | Disk (Minimum) | Disk (Recommended) | RAM (Minimum) | RAM (Recommended) |
|------|------------------|--------------------|----------------|-------------------|
| **Ethereum Mainnet** | 500 GB | 1 TB | 32 GB | 64 GB |
| **Ethereum Sepolia** | 200 GB | 400 GB| 32 GB | 64 GB |
| **Ethereum Hoodi** | 50 GB | 100 GB | 32 GB | 64 GB |

---

## L2

TBD

Loading