> For the complete documentation index, see [llms.txt](https://utsa.gitbook.io/services/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://utsa.gitbook.io/services/testnet/dora-factory/updates.md).

# Updates

##

{% hint style="success" %}

### After update you can check prevotes/precommits status

{% endhint %}

```shell
FOLDER=.dora

# find out RPC port
echo -e "\033[0;32m$(grep -A 3 "\[rpc\]" ~/$FOLDER/config/config.toml | egrep -o ":[0-9]+")\033[0m"

PORT=<enter_your_port>

curl -s localhost:$PORT/consensus_state | jq '.result.round_state.height_vote_set[0].prevotes_bit_array' && \
curl -s localhost:$PORT/consensus_state | jq '.result.round_state.height_vote_set[0].precommits_bit_array'
```

{% hint style="warning" %}
Updates are available for information. Boot via State sync or Snapshot to avoid installing all updates. In this case, you must use the actual version of the binary file and genesis
{% endhint %}

## UPD 🕊 on 0.4.0 (Update Height: 2031111)

```shell
cd
rm -rf doravota
git clone https://github.com/DoraFactory/doravota && cd doravota
git checkout 0.4.0
make build
$HOME/doravota/build/dorad version --long
# version: 0.4.0
# commit: 

# AFTER THE NETWORK IS STOPPED ON THE REQUIRED BLOCK!!!
systemctl stop dorad
mv $HOME/doravota/build/dorad $(which dorad)
dorad version --long | grep -e version -e commit
# 

systemctl restart dorad && journalctl -u dorad -f -o cat
```

## UPD 🕊 on 0.4.2 (Update Height: 6120500)

<pre class="language-shell"><code class="lang-shell"><strong>cd
</strong>rm -rf doravota
git clone https://github.com/DoraFactory/doravota &#x26;&#x26; cd doravota
git checkout 0.4.2
make build
$HOME/doravota/build/dorad version --long
# version: 0.4.2
# commit: 

# AFTER THE NETWORK IS STOPPED ON THE REQUIRED BLOCK!!!
systemctl stop dorad
mv $HOME/doravota/build/dorad $(which dorad)
dorad version --long | grep -e version -e commit
# 

systemctl restart dorad &#x26;&#x26; journalctl -u dorad -f -o cat
</code></pre>

## UPD 🕊 on 0.4.3 (Update Height: 7578888)

<pre class="language-shell"><code class="lang-shell"><strong>cd
</strong>rm -rf doravota
git clone https://github.com/DoraFactory/doravota &#x26;&#x26; cd doravota
git checkout 0.4.3
make build
$HOME/doravota/build/dorad version --long
# version: 0.4.3
# commit: 

# AFTER THE NETWORK IS STOPPED ON THE REQUIRED BLOCK!!!
systemctl stop dorad
mv $HOME/doravota/build/dorad $(which dorad)
dorad version --long | grep -e version -e commit
# 

systemctl restart dorad &#x26;&#x26; journalctl -u dorad -f -o cat
</code></pre>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://utsa.gitbook.io/services/testnet/dora-factory/updates.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.
