Skip to content

Update running a scroll node documentation #459

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 15, 2025
Merged
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
22 changes: 6 additions & 16 deletions src/content/docs/en/developers/guides/running-a-scroll-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,22 +75,12 @@ Download the latest l2geth :

SNAPSHOT_URL = https://scroll-geth-snapshot.s3.us-west-2.amazonaws.com/mpt/latest.tar

1. Create a new folder for the snapshot
```bash
mkdir l2geth
```

2. Go to the created folder
```bash
push l2geth
```

3. Download the snapshot
1. Download the snapshot
```bash
wget $SNAPSHOT_URL
```

4. unarchive the snapshot
2. unarchive the snapshot
```bash
tar -xf latest.tar
```
Expand Down Expand Up @@ -144,10 +134,10 @@ Insert your config in the yaml file and save it, recommended config would be :
--da.blob.beaconnode "${Your beaconnode endpoint}"
--cache.snapshot=0
logging:
driver: "json-file"
options:
max-size: "100m"
max-file: "1"
driver: "json-file"
options:
max-size: "100m"
max-file: "1"
```

3. Run the docker
Expand Down