> For the complete documentation index, see [llms.txt](https://docs.cryptochemistry.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cryptochemistry.io/mainnets/kujira/upgrades/v0.8.3.md).

# v0.8.3

**Chain ID:** kaiyo-1

The upgrade is scheduled for 9225000.

## Cosmovisor Method

### Build the new binary verison

```bash
cd kujira
git pull
git checkout v0.8.3
make install
```

### Check the version

```bash
# The correct version should be 0.8.3
kujirad version
# Should be: 2c1ee82c63f42cce6090c11b31906a4930d08408
kujirad version --long | grep commit
```

### Make new Cosmovisor directory and copy binary

```bash
mkdir -p $HOME/.kujira/cosmovisor/upgrades/v0.8.3/bin
cp $HOME/go/bin/kujirad $HOME/.kujira/cosmovisor/upgrades/v0.8.3/bin
```

### Verify the Cosmovisor upgrade version

```bash
# The correct version should be 0.8.3
$HOME/.kujira/cosmovisor/upgrades/v0.8.3/bin/kujirad version
```

## Binary (Manual) Method

### Build the new binary verison

```bash
cd kujira
git pull
git checkout v0.8.3
make build
```

### Set Halt Height

```bash
sed -i.bak 's/halt-height = 0/halt-height = 9225000/' $HOME/.kujira/config/app.toml
```

Then, wait until the upgrade time. At the upgrade time, move to the next section.

### Replace the binaries

```bash
cp $HOME/kujira/build/kujirad $(which kujirad)
```

### Reset the Halt Height

```bash
sed -i.bak 's/halt-height = 9225000/halt-height = 0/' $HOME/.kujira/config/app.toml
```

### Restart The Node

```bash
# Replace kujirad.service with whatever your service file is called
sudo systemctl restart kujirad.service
```


---

# 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://docs.cryptochemistry.io/mainnets/kujira/upgrades/v0.8.3.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.
