> 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/mainnet/genesis-l1/updates.md).

# Updates

{% hint style="success" %}

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

{% endhint %}

```shell
FOLDER=.genesisd

# 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 1.0.0 (Update Height: 7400000)

```shell
cd
rm -r genesisd/
git clone https://github.com/alpha-omega-labs/genesis-crypto && cd genesis-crypto
git checkout v1.0.0
make build
$HOME/genesis-crypto/build/genesisd version --long | grep -e version -e commit
# 1.0.0
# commit: 7cb02ad35442e00b7eb24dc06868577223d48141

# AFTER THE NETWORK STOPS AT THE RIGHT BLOCK!!!
systemctl stop genesisd
mv $HOME/genesis-crypto/build/genesisd $(which genesisd)
genesisd version --long | grep -e version -e commit
# 

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

## UPD 🕊 on 1.1.1 (Update Height: 13000000)

```shell
cd
rm -r genesis-crypto/
git clone https://github.com/GenesisL1/genesis-crypto && cd genesis-crypto
git checkout v1.1.1
make build
$HOME/genesis-crypto/build/genesisd version --long | grep -e version -e commit
# 1.1.1
# commit: bab909493ad4f56828b5ee30c21c97219fbb93c1

# AFTER THE NETWORK STOPS AT THE RIGHT BLOCK!!!
systemctl stop genesisd
mv $HOME/genesis-crypto/build/genesisd $(which genesisd)
genesisd version --long | grep -e version -e commit
# 

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

## UPD 🕊 on 1.6.2 (Update Height: 13000000)

```shell
cd
rm -r genesis-crypto/
git clone https://github.com/GenesisL1/genesis-crypto && cd genesis-crypto
git checkout v1.6.2
make build
$HOME/genesis-crypto/build/genesisd version --long | grep -e version -e commit
# 1.6.2
# commit: ee86be82183d4972c72a1a9acaaf0c9dc5c34787

# AFTER THE NETWORK STOPS AT THE RIGHT BLOCK!!!
systemctl stop genesisd
mv $HOME/genesis-crypto/build/genesisd $(which genesisd)
genesisd version --long | grep -e version -e commit
# 

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


---

# 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, and the optional `goal` query parameter:

```
GET https://utsa.gitbook.io/services/mainnet/genesis-l1/updates.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
