# Installation

<figure><img src="https://raw.githubusercontent.com/StakeandRelax-Validator/documentation/main/Logos/dymension.png" alt="" width="150"><figcaption></figcaption></figure>

**Chain ID**: dymension\_1100-1 | **Latest Version Tag**: v4.0.0

### Setup validator name

{% hint style="info" %}
Replace **YOUR\_MONIKER\_GOES\_HERE** with your validator name
{% endhint %}

```bash
MONIKER="YOUR_MONIKER_GOES_HERE"
```

### Install dependencies

#### Update system and install build tools

```bash
sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade
```

#### Install Go

```bash
sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.22.7.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)
```

### Download and build binaries

```bash
# Clone project repository
cd $HOME
rm -rf dymension
git clone https://github.com/dymensionxyz/dymension.git dymension
cd dymension
git checkout v4.0.0

# Build binaries
make build

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.dymension/cosmovisor/genesis/bin
mv target/dist/dymd $HOME/.dymension/cosmovisor/genesis/bin/
rm -rf build

# Create application symlinks
ln -s $HOME/.dymension/cosmovisor/genesis $HOME/.dymension/cosmovisor/current
sudo ln -s $HOME/.dymension/cosmovisor/current/bin/dymd /usr/local/bin/dymd
```

### Install Cosmovisor and create a service

```bash
# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest

# Create service
sudo tee /etc/systemd/system/dymension.service > /dev/null << EOF
[Unit]
Description dymension-main node service
After=network-online.target

[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.dymension"
Environment="DAEMON_NAME=dymd"
Environment="UNSAFE_SKIP_BACKUP=true"

[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable dymension
```

### Initialize the node

```bash
# Set node configuration
dymd config chain-id dymension_1100-1
dymd config keyring-backend test

# Initialize the node
dymd init $MONIKER --chain-id dymension_1100-1

# Download genesis and addrbook
curl -Ls https://snapshots.stakeandrelax.net/snapshots/dymension/genesis.json > $HOME/.dymension/config/genesis.json
curl -Ls https://snapshots.stakeandrealx.net/dymension/addrbook.json > $HOME/.dymension/config/addrbook.json

# Add seeds
sed -i -e "s|^seeds *=.*|seeds = \"a82ee2da234eb6df6f553b69da855083b3e5177e@65.109.26.242:20556\"|" $HOME/.dymension/config/config.toml

# Set pruning
sed -i \
  -e 's|^pruning *=.*|pruning = "custom"|' \
  -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
  -e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
  -e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
  $HOME/.dymension/config/app.toml

```

### Download latest chain snapshot

```bash
curl -L https://snapshots.stakeandrelax.net/snapshots/dymension/snapshot_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.dymension
[[ -f $HOME/.dymension/data/upgrade-info.json ]] && cp $HOME/.dymension/data/upgrade-info.json $HOME/.dymension/cosmovisor/genesis/upgrade-info.json
```

### Start service and check the logs

```bash
sudo systemctl start dymension && sudo journalctl -u dymension -f --no-hostname -o cat
```
