Skip to content

Commit 3f0184b

Browse files
committed
Updating Avail DA LC and Avail DA node binary versions
1 parent cb5eedf commit 3f0184b

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

pages/docs/networks.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ mainnet as closely as possible.
4949
| **RPC Endpoint** | [<ins>https://goldberg.avail.tools/api</ins>](https://goldberg.avail.tools/api) | [<ins>https://turing-rpc.avail.so/rpc</ins>](https://turing-rpc.avail.so/rpc) |
5050
| **WS Endpoint** | [<ins>wss://goldberg.avail.tools/ws</ins>](wss://goldberg.avail.tools/ws) | [<ins>wss://turing-rpc.avail.so/ws</ins>](wss://turing-rpc.avail.so/ws) |
5151
| **Chain Spec** | [<ins>chainspec.raw.json</ins>](https://github.com/availproject/avail/blob/main/misc/genesis/testnet.goldberg.chain.raw.json) | [<ins>chainspec.raw.json</ins>](https://github.com/availproject/avail/blob/main/misc/genesis/testnet.turing.chain.spec.raw.json) |
52-
| **Node Version** | [<ins>v1.10.0.0</ins>](https://github.com/availproject/avail/releases/tag/v1.10.0.0) | [<ins>v2.1.0.0</ins>](https://github.com/availproject/avail/releases/tag/v2.1.0.0-rc1) |
53-
| **Light Client Version** | [<ins>v1.7.6</ins>](https://github.com/availproject/avail-light/releases/tag/v1.7.6) | [<ins>v1.7.10</ins>](https://github.com/availproject/avail-light/releases/tag/v1.7.10) |
52+
| **Node Version** | [<ins>v1.10.0.0</ins>](https://github.com/availproject/avail/releases/tag/v1.10.0.0) | [<ins>v2.1.2</ins>](https://github.com/availproject/avail/releases/tag/v2.2.0.0-rc1) |
53+
| **Light Client Version** | [<ins>v1.7.6</ins>](https://github.com/availproject/avail-light/releases/tag/v1.7.6) | [<ins>v1.8.1</ins>](https://github.com/availproject/avail-light/releases/tag/v1.8.1) |
5454

5555
## Pioneering Blockchain Modularity
5656

pages/docs/operate-a-node/become-a-validator/0010-basics.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Before trying anything, make sure that you fully read the chapter first before d
3131

3232
## Installation & Setup
3333

34-
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.1.0.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.
34+
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.0.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.
3535

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

pages/docs/operate-a-node/become-a-validator/0020-simple-deployment.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ pwd
106106
<Callout type="warning" emoji="⚠️">
107107
NODE VERSION FOR TURING<br/>
108108
Please note that the Avail node underwent major breaking changes while making upgrades to transition towards Turing.
109-
The **MINIMUM** version for Turing is `2.1.0`.
109+
The **MINIMUM** version for Turing is `2.1.2`.
110110
</Callout>
111111

112112
```bash
113-
# Obtaning v2.1.0.0-rc1 for Ubuntu 22.04
113+
# Obtaning v2.2.0.0-rc1 for Ubuntu 22.04
114114
# wget is a command-line utility for downloading files from the internet.
115-
wget https://github.com/availproject/avail/releases/download/v2.1.0.0-rc1/x86_64-ubuntu-2204-avail-node.tar.gz
115+
wget https://github.com/availproject/avail/releases/download/v2.2.0.0-rc1/x86_64-ubuntu-2204-avail-node.tar.gz
116116

117117
# tar is a command-line utility for working with tarballs, compressed or uncompressed archives containing one or more files or directories.
118118
# 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.

pages/docs/operate-a-node/run-a-light-client/0010-light-client.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can find the latest release binary in the [`avail-light`](https://github.com
3131
<Callout type="info">
3232
RECOMMENDED VERSION <br/>
3333
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
34-
run [`v1.7.10`](https://github.com/availproject/avail-light/releases/tag/v1.7.10) of the Avail light client for maximal network support. <br/>
34+
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/>
3535
We will keep this recommendation updated.
3636
</Callout>
3737

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

129-
1. Download the [recommended version of the binary](https://github.com/availproject/avail-light/releases/tag/v1.7.10) that is compatible with your operating system.
129+
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.
130130

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

@@ -224,7 +224,7 @@ using `availup`, you can always check out [our Github repo](https://github.com/a
224224
```sh
225225
git clone https://github.com/availproject/avail-light.git
226226
cd avail-light
227-
git checkout tags/v1.7.10
227+
git checkout tags/v1.8.1
228228
```
229229

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

288288
<Tabs.Tab>
289289

290-
1. Go to the [releases page of the Avail light client repo](https://github.com/availproject/avail-light/releases/tag/v1.7.10), and download the
290+
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
291291
`avail-light-windows-runner.zip` file.
292292

293293
2. Right click the downloaded file and extract it to a convenient location.

pages/docs/operate-a-node/run-a-light-client/light-client-api-reference.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ async fn main() {
534534
<summary> Sample Response:</summary>
535535
```json
536536
{
537-
"version":"v1.7.10",
537+
"version":"v1.8.1",
538538
"network_version":"1.10"
539539
}
540540
```

0 commit comments

Comments
 (0)