Skip to content

Commit

Permalink
Update release time and fix some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fewensa authored Sep 27, 2024
1 parent c51995e commit 87c8d7a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
10 changes: 6 additions & 4 deletions docs/node-operators/run-archive-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ It's important to note that there is a faster method to expedite the syncing pro

### Prepare The Binary

As of the time of writing this doc(2024-09-04), the latest version of the Darwinia node is `v6.6.5`. Please ensure that you check for [the latest version](https://github.com/darwinia-network/darwinia/releases) when running your own node.
As of the time of writing this doc(2024-09-27), the latest version of the Darwinia node is `v6.7.1`. Please ensure that you check for [the latest version](https://github.com/darwinia-network/darwinia/releases) when running your own node.

```bash
wget https://github.com/darwinia-network/darwinia/releases/download/v6.6.5/darwinia-x86_64-linux-gnu.tar.bz2
wget https://github.com/darwinia-network/darwinia/releases/download/v6.7.1/darwinia-x86_64-linux-gnu.tar.bz2
tar xvf darwinia-x86_64-linux-gnu.tar.bz2
```

Expand All @@ -45,7 +45,8 @@ tar xvf darwinia-x86_64-linux-gnu.tar.bz2
--rpc-max-connections=1000 \
--runtime-cache-size=64 \
-- \
--chain=polkadot
--chain=polkadot \
--sync=warp
```

- For Crab Chain
Expand All @@ -62,5 +63,6 @@ tar xvf darwinia-x86_64-linux-gnu.tar.bz2
--rpc-max-connections=1000 \
--runtime-cache-size=64 \
-- \
--chain=kusama
--chain=kusama \
--sync=warp
```
6 changes: 3 additions & 3 deletions docs/node-operators/run-collator-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ It's important to note that there is a faster method to expedite the syncing pro

3. Download and decompress the binary.

As of the time of writing this doc(2024-09-02), the latest version of the Darwinia node is `v6.6.5`. Please ensure that you check for [the latest version](https://github.com/darwinia-network/darwinia/releases) when running your own node.
As of the time of writing this doc(2024-09-27), the latest version of the Darwinia node is `v6.7.1`. Please ensure that you check for [the latest version](https://github.com/darwinia-network/darwinia/releases) when running your own node.

```bash
wget https://github.com/darwinia-network/darwinia/releases/download/v6.6.5/darwinia-x86_64-linux-gnu.tar.bz2
wget https://github.com/darwinia-network/darwinia/releases/download/v6.7.1/darwinia-x86_64-linux-gnu.tar.bz2
tar xvf darwinia-x86_64-linux-gnu.tar.bz2
```

4. Start the node by running the following command:

```bash
./darwinia --chain darwinia --base-path /data/darwinia-collator --frontier-backend-type sql --collator
./darwinia --chain=darwinia --base-path=/data/darwinia-collator --frontier-backend-type=sql --collator
```

5. Verify your node is up and running successfully by reviewing the output displayed in the terminal. The terminal should display output similar to this:
Expand Down
8 changes: 4 additions & 4 deletions docs/node-operators/run-evm-tracing-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ As you may be aware, Darwinia chains are EVM compatible, which means that the RP

2. Download the precompiled tracing binary

As of the time of writing this doc (2024-09-02), the latest version of the Koi Chain is `v6.6.5`. Please ensure that you check for [the latest version](https://github.com/darwinia-network/darwinia/releases) when running your own node.
As of the time of writing this doc (2024-09-27), the latest version of the Koi Chain is `v6.7.1`. Please ensure that you check for [the latest version](https://github.com/darwinia-network/darwinia/releases) when running your own node.

!!! warn
Please be aware that there are two types of binaries available on the release page. Select the one that starts with `darwinia-tracing-xxx`.

```bash
wget https://github.com/darwinia-network/darwinia/releases/download/v6.6.5/darwinia-x86_64-linux-gnu.tar.bz2
tar xvf darwinia-x86_64-linux-gnu.tar.bz2
wget https://github.com/darwinia-network/darwinia/releases/download/v6.7.1/darwinia-tracing-x86_64-linux-gnu.tar.zst
tar -I zstd -xf darwinia-tracing-x86_64-linux-gnu.tar.zst
```

3. Download the overridden wasms
Expand Down Expand Up @@ -66,7 +66,7 @@ As you may be aware, Darwinia chains are EVM compatible, which means that the RP
--frontier-backend-type=sql \
--wasm-runtime-overrides=overridden-runtimes \
-- \
--chain polkadot \
--chain=polkadot \
--sync=warp
```

Expand Down

0 comments on commit 87c8d7a

Please sign in to comment.