# Joining Network Using Snapshot

You may join SEDA network using snapshots that we update every two weeks.

<table><thead><tr><th width="128">Network</th><th>Snapshot Download Link</th></tr></thead><tbody><tr><td>Mainnet</td><td><a href="https://seda-1-snapshots.s3.eu-west-2.amazonaws.com/seda_mainnet_snapshot.tar.lz4">https://seda-1-snapshots.s3.eu-west-2.amazonaws.com/seda_mainnet_snapshot.tar.lz4</a></td></tr><tr><td>Testnet</td><td><a href="https://testnet-snapshots.s3.eu-west-2.amazonaws.com/seda_testnet_snapshot.tar.lz4">https://testnet-snapshots.s3.eu-west-2.amazonaws.com/seda_testnet_snapshot.tar.lz4</a></td></tr></tbody></table>

Check the  [Version History](/home/tech/for-chain-operators/version-history.md) page to identify the current binary version of the network you would like to join. Then, download the binary release from the [SEDA Chain repository](https://github.com/sedaprotocol/seda-chain).

Run the following sequence of commands to download and decompress the snapshot.

```
# Initialize your node.
sedad join <moniker> --network mainnet

# Download snapshot and decompress it under chain directory.
# For mainnet:
wget https://seda-1-snapshots.s3.eu-west-2.amazonaws.com/seda_mainnet_snapshot.tar.lz4

lz4 -dc < seda_mainnet_snapshot.tar.lz4 | tar xvf - -C $HOME/.sedad
```

You may have to disable SEDA signer to start the node. If you are a validator, please read [SEDA Keys](/home/tech/for-chain-operators/seda-keys.md) to set up SEDA signer after you finish the current instructions.

```
sedad config set app seda.enable-seda-signer false
```

Start the node.

```
sedad start
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.seda.xyz/home/tech/for-chain-operators/joining-network-using-snapshot.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
