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

Node and LC version upgrades #339

Merged
merged 2 commits into from
Jun 5, 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
4 changes: 2 additions & 2 deletions pages/docs/networks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ mainnet as closely as possible.
| **RPC Endpoint** | [<ins>https://turing-rpc.avail.so/rpc</ins>](https://turing-rpc.avail.so/rpc) | [<ins>https://goldberg.avail.tools/api</ins>](https://goldberg.avail.tools/api) |
| **WS Endpoint** | [<ins>wss://turing-rpc.avail.so/ws</ins>](wss://turing-rpc.avail.so/ws) | [<ins>wss://goldberg.avail.tools/ws</ins>](wss://goldberg.avail.tools/ws) |
| **Chain Spec** | [<ins>chainspec.raw.json</ins>](https://github.com/availproject/avail/blob/main/misc/genesis/testnet.turing.chain.spec.raw.json) | [<ins>chainspec.raw.json</ins>](https://github.com/availproject/avail/blob/main/misc/genesis/testnet.goldberg.chain.raw.json) |
| **Node Version** | [<ins>v2.1.4</ins>](https://github.com/availproject/avail/releases/tag/v2.2.2.0-rc1) | [<ins>v1.10.0.0</ins>](https://github.com/availproject/avail/releases/tag/v1.10.0.0) |
| **Light Client Version** | [<ins>v1.8.1</ins>](https://github.com/availproject/avail-light/releases/tag/v1.8.1) | [<ins>v1.7.6</ins>](https://github.com/availproject/avail-light/releases/tag/v1.7.6) |
| **Node Version** | [<ins>v2.1.5</ins>](https://github.com/availproject/avail/releases/tag/v2.2.3.0-rc1) | [<ins>v1.10.0.0</ins>](https://github.com/availproject/avail/releases/tag/v1.10.0.0) |
| **Light Client Version** | [<ins>v1.9.0</ins>](https://github.com/availproject/avail-light/releases/tag/v1.9.0) | [<ins>v1.7.6</ins>](https://github.com/availproject/avail-light/releases/tag/v1.7.6) |

## Alternate Endpoints

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Before trying anything, make sure that you fully read the chapter first before d

## Installation & Setup

Our first step is to obtain the prebuilt binary for Avail Node. [We offer a wide range of prebuilds](https://github.com/availproject/avail/releases/tag/v2.2.2.0-rc1), but in case you don't see your Linux flavor or architecture here, head to the FAQ chapter to learn how to build your own executable.
Our first step is to obtain the prebuilt binary for Avail Node. [We offer a wide range of prebuilds](https://github.com/availproject/avail/releases/tag/v2.2.3.0-rc1), but in case you don't see your Linux flavor or architecture here, head to the FAQ chapter to learn how to build your own executable.

Once you have found your OS (or picked the generic one), execute the given command to obtain the needed Avail Node binary.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ Please note that the Avail node underwent major breaking changes while making up
</Callout>

```bash
# Obtaning v2.2.2.0-rc1 for Ubuntu 22.04
# Obtaning v2.2.3.0-rc1 for Ubuntu 22.04
# wget is a command-line utility for downloading files from the internet.
wget https://github.com/availproject/avail/releases/download/v2.2.2.0-rc1/x86_64-ubuntu-2204-avail-node.tar.gz
wget https://github.com/availproject/avail/releases/download/v2.2.3.0-rc1/x86_64-ubuntu-2204-avail-node.tar.gz

# tar is a command-line utility for working with tarballs, compressed or uncompressed archives containing one or more files or directories.
# The -x option extracts files from an archive, and the -f option specifies the archive file. When used together as tar -xf, it removes the contents of the specified archive file.
Expand Down
6 changes: 3 additions & 3 deletions pages/docs/operate-a-node/run-a-full-node/full-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ There are two main ways of running an Avail node:
1. Go to the [Avail node GitHub releases page](https://github.com/availproject/avail/releases/).
There you will see a lot of pre-built binaries for each version of the Avail node.

2. Please download the binary suitable from your system, of the latest recommended version, which as of now is `v2.2.2.0-rc1`.
2. Please download the binary suitable from your system, of the latest recommended version, which as of now is `v2.2.3.0-rc1`.
You can do this using the GUI or by running the following command in your terminal:

```bash
curl -L -O https://github.com/availproject/avail/releases/download/v2.2.2.0-rc1/<YOUR-SYSTEM-SPECIFIC-BINARY>.tar.gz
curl -L -O https://github.com/availproject/avail/releases/download/v2.2.3.0-rc1/<YOUR-SYSTEM-SPECIFIC-BINARY>.tar.gz
```
3. Extract the downloaded file by opening a terminal in the location of the downloaded file and using the following command:

Expand Down Expand Up @@ -257,7 +257,7 @@ To download and run an Avail node using Docker:
1. Simply run the following command in your terminal:

```bash
docker run --restart=on-failure -d -v /root/avail/node-data:/da/node-data -p 9944:9944 -p 30333:30333 docker.io/availj/avail:v2.2.2.0-rc1 --chain turing -d ./output --name a-random-name
docker run --restart=on-failure -d -v /root/avail/node-data:/da/node-data -p 9944:9944 -p 30333:30333 docker.io/availj/avail:v2.2.3.0-rc1 --chain turing -d ./output --name a-random-name
```
- -d runs the container in the background
- -v mounts a volume into the container
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ You can find the latest release binary in the [`avail-light`](https://github.com
<Callout type="info">
RECOMMENDED VERSION <br/>
You can find the latest release of the Avail LC from [our Github repo](https://github.com/availproject/avail-light). For now though we recommend most users to
run [`v1.8.1`](https://github.com/availproject/avail-light/releases/tag/v1.8.1) of the Avail light client for maximal network support. <br/>
run [`v1.9.0`](https://github.com/availproject/avail-light/releases/tag/v1.9.0) of the Avail light client for maximal network support. <br/>
We will keep this recommendation updated.
</Callout>

Expand Down Expand Up @@ -126,7 +126,7 @@ using `availup`, you can always check out [our Github repo](https://github.com/a
You can also download and run a pre-built binary of the Avail light client.
To do so:

1. Download the [recommended version of the binary](https://github.com/availproject/avail-light/releases/tag/v1.8.1) that is compatible with your operating system.
1. Download the [recommended version of the binary](https://github.com/availproject/avail-light/releases/tag/v1.9.0) that is compatible with your operating system.

2. Move the `.tar` file into a convenient directory and extract it to reveal the `avail-light` binary.

Expand Down Expand Up @@ -224,7 +224,7 @@ using `availup`, you can always check out [our Github repo](https://github.com/a
```sh
git clone https://github.com/availproject/avail-light.git
cd avail-light
git checkout tags/v1.8.1
git checkout tags/v1.9.0
```

2. Make sure your terminal is in the `avail-light` directory. Create a compiled build by running:
Expand Down Expand Up @@ -287,7 +287,7 @@ instructions on how to run the Avail light client natively on Windows without ha

<Tabs.Tab>

1. Go to the [releases page of the Avail light client repo](https://github.com/availproject/avail-light/releases/tag/v1.8.1), and download the
1. Go to the [releases page of the Avail light client repo](https://github.com/availproject/avail-light/releases/tag/v1.9.0), and download the
`avail-light-windows-runner.zip` file.

2. Right click the downloaded file and extract it to a convenient location.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ async fn main() {
<summary> Sample Response:</summary>
```json
{
"version":"v1.8.1",
"version":"v1.9.0",
"network_version":"1.10"
}
```
Expand Down
Loading