-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(website): add sepolia node running guide (#14028)
- Loading branch information
Showing
6 changed files
with
5,341 additions
and
1,033 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import { Callout, Steps, Tab, Tabs } from "nextra-theme-docs"; | ||
|
||
# Run a Sepolia node | ||
|
||
## Overview | ||
|
||
This guide will help you get a Sepolia archive node up and running. | ||
|
||
## Prerequisites | ||
|
||
- [Docker](https://docs.docker.com/engine/install/) is installed and **running**. | ||
- [Git](https://github.com/git-guides/install-git/) is installed. | ||
- As of `2023-06-21T16:59:11+00:00` a full archive node sync takes **207.3 GB** with geth + lighthouse. Consult the hardware requirements of the execution + consensus clients you are using. | ||
|
||
## Steps | ||
|
||
<Steps> | ||
### Clone eth-docker | ||
```sh | ||
git clone https://github.com/eth-educators/eth-docker | ||
cd eth-docker | ||
``` | ||
|
||
### Enable archive mode | ||
|
||
First, copy `default.env` to `.env`: | ||
``` | ||
cp default.env .env | ||
``` | ||
|
||
Next, open the `.env` file in your preferred text editor and set: | ||
```filename=e | ||
ARCHIVE_NODE=true | ||
``` | ||
|
||
### Complete the eth-docker quickstart | ||
|
||
Complete the eth-docker quickstart: https://eth-docker.net/Usage/QuickStart/. | ||
</Steps> | ||
|
||
### Harden your network | ||
|
||
This is important especially if you `ssh` into machine or open ports to the internet (be careful about that). Here are some recommended resources: | ||
- https://eth-docker.net/Usage/LinuxSecurity | ||
- https://www.coincashew.com/coins/overview-eth/guide-or-how-to-setup-a-validator-on-eth2-mainnet/part-i-installation/guide-or-security-best-practices-for-a-eth2-validator-beaconchain-node | ||
- https://tailscale.com/kb/1077/secure-server-ubuntu-18-04/ (but also see: https://danthesalmon.com/ufw-docker-tailscale/, `tailscale0` may not behave as you think) |
Oops, something went wrong.