# Upgrade

Upgrading your node is necessary to get the latest features, improvements, and security updates. Follow the instructions below:

## Update instruction on block [2988700](https://mainnet.block-pro.net/fuel/block/2988700)

### 1. Check Current Version

```bash
fuelsequencerd version --long
```

Make a note or remember your current version.

***

### 2. Download the New Version

```bash
cd $HOME
wget -O fuelsequencerd https://github.com/FuelLabs/fuel-sequencer-deployments/releases/download/seq-mainnet-1.3/fuelsequencerd-seq-mainnet-1.3-linux-amd64
chmod +x fuelsequencerd
```

***

### 3. Install the New Version

Before replacing the binary, check the path of the current version:

```bash
which fuelsequencerd
```

Then move the new binary to this path, replacing the old one:

```bash
sudo mv $HOME/fuelsequencerd $(which fuelsequencerd)
```

***

### 4. Verify Installed Version

```bash
fuelsequencerd version --long | grep -e commit -e version
```

Expected output:

```
#version:seq-mainnet-1.3
#commit:d25152c041602c16aced7fbdd207bede18ae1918
```

***

### 5. Restart the Service

```bash
sudo systemctl restart fuelsequencerd
```

***

### 6. Check Service Status and Logs

```bash
sudo systemctl status fuelsequencerd
sudo journalctl -fu fuelsequencerd -o cat
```

Make sure the service is running without errors.

***

### Important Note

Before upgrading, it is recommended to back up your data and have console access to your server in case any issues arise.

For more detailed information, refer to the [Fuel Node Installation Guide.](https://docs.fuel.network/docs/node-operator/fuel-sequencer/mainnet-validator/)


---

# 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://service.block-pro.net/mainnet/fuel/upgrade.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.
