Snapshots
You can quickly set up a GIWA node using a snapshot.
A GIWA node snapshot is a compressed archive of recent node data. By starting from a snapshot and syncing from that point, you can set up a node much faster than syncing from genesis.
Snapshot data is updated once per week.
Set up a node using a snapshot
This guide assumes you are running a node using the Docker-based setup provided in the giwa-io/node repository.
1. Clean up existing resources
Stop your existing node and remove (or back up) the node data directory.
Geth:
docker compose down && rm -rf ./geth_dataReth:
docker compose down && rm -rf ./reth_data2. Prepare the node data directory
Geth:
Reth:
3. Download the snapshot
Depending on the execution client and pruning mode you plan to run, execute one of the commands below.
Before downloading, make sure you have sufficient disk space available.
GIWA Sepolia
Geth
Full
GIWA Sepolia
Geth
Archive
GIWA Sepolia
Reth
Full
GIWA Sepolia
Reth
Archive
4. Extract the snapshot
Extract the downloaded snapshot archive into your data directory.
Geth:
Reth:
5. Start your GIWA node
Follow the instructions in the giwa-io/node repository and start your node using docker compose.
Last updated