Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs for v3.1.0-rc2 #359

Merged
merged 2 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion devnets/bitcanna-dev-1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ In the next section you will find the params for P2P and a *step by step* guide
| No break consensus | x | [v1.6.2](https://github.com/BitCannaGlobal/bcna/releases/download/v1.6.2/bcna_linux_amd64.tar.gz) | [Link](https://github.com/BitCannaGlobal/bcna/releases/tag/v1.6.2) | x |
| No break consensus | x | v1.6.3-rc1 | [Link](https://github.com/BitCannaGlobal/bcna/releases/tag/v1.6.3-rc1/bcna_linux_amd64.tar.gz) | x |
| 19th Apr 2023 14h UTC | 1.831.901 | v2.0.1-rc6 | [Link](https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.1-rc6/bcna_linux_amd64.tar.gz) | [Link](https://github.com/BitCannaGlobal/bcna/releases/tag/v2.0.1-rc6) |
| 9th Nov 2023 14h UTC | xxxxxxx420 | v3.0.0-rc3 | [Link](https://github.com/BitCannaGlobal/bcna/releases/download/v3.0.0-rc3/bcna_linux_amd64.tar.gz) | [Link](https://github.com/BitCannaGlobal/bcna/releases/tag/v3.0.0-rc3) |
| 9th Nov 2023 14h UTC | 5.001.067 | v3.0.0-rc3 | [Link](https://github.com/BitCannaGlobal/bcna/releases/download/v3.0.0-rc3/bcna_linux_amd64.tar.gz) | [Link](https://github.com/BitCannaGlobal/bcna/releases/tag/v3.0.0-rc3) |
| No break consensus | x | v3.0.1-rc1 | [Link](https://github.com/BitCannaGlobal/bcna/releases/tag/v3.0.1-rc1/bcna_linux_amd64.tar.gz) | x |
| No break consensus | x | v3.0.2-rc1 | [Link](https://github.com/BitCannaGlobal/bcna/releases/tag/v3.0.2-rc1/bcna_linux_amd64.tar.gz) | x |
| 17th Apr 2024 16h UTC | 7.400.000 | v3.1.0-rc2 | [Link](https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0-rc2/bcna_linux_amd64.tar.gz) | [Link](https://github.com/BitCannaGlobal/bcna/releases/tag/v3.1.0-rc2) |

#### More DEVNET-1 resources
* [Link to AWESOME doc](awesome.md)
Expand Down
16 changes: 10 additions & 6 deletions devnets/bitcanna-dev-1/cosmovisor_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ This guide explains how to download the pre-compiled binary. If you want to buil
```
cd ~
rm -f bcnad #remove the previous downloads
wget https://github.com/BitCannaGlobal/bcna/releases/download/v3.0.2/bcna_linux_amd64.tar.gz
wget https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0-rc2/bcna_linux_amd64.tar.gz
```
Check the sha256sum.
```
sha256sum ./bcna_linux_amd64.tar.gz
```
> It must return: `92547040144107bd71a20f7b6455ca4117f4fbd4476ad25c94721339b94fbd9a`
> It must return: `d4e92b5fe4091f710df54840ff462c05897c4b886418ac84cb76e1eaeb5950a0`

Verify that you have the correct version.
```
Expand All @@ -96,13 +96,19 @@ rm bcna_linux_amd64.tar.gz
chmod +x ./bcnad
./bcnad version
```
> It must return: **`v3.0.2`**
> It must return: **`v3.1.0-rc2`**

Create a new directory for the upgraded version.
```
mkdir -p ${HOME}/.bcna/cosmovisor/upgrades/ganjarevolutionburn/bin/
```

Move the newly built binary to the designated upgrade directory.
> If you have build the binary from the source, replace `./bcnad` with the correct path.
```
cosmovisor add-upgrade ganjarevolution ./bcnad
cp -r ./bcnad ${HOME}/.bcna/cosmovisor/upgrades/ganjarevolutionburn/bin/
```

### 4.) Setup Cosmovisor's current version link.

Next step is to let Cosmovisor know in which directory the current version of `bcnad` software is located.
Expand Down Expand Up @@ -172,8 +178,6 @@ Show Cosmovisor's version.
```
cosmovisor run version
```
This will be **`v2.0.1` before** the upgrade and **`v3.0.2` after** the upgrade.

The output should look like this:
```
20:27PM INF running app args=["version"] module=cosmovisor path=/home/ljn/.bcna/cosmovisor/genesis/bin/bcnad
Expand Down
Loading