diff --git a/docs/node-operators/run-archive-node.md b/docs/node-operators/run-archive-node.md index 82ecce7..f2162f9 100644 --- a/docs/node-operators/run-archive-node.md +++ b/docs/node-operators/run-archive-node.md @@ -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 ``` @@ -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 @@ -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 ``` diff --git a/docs/node-operators/run-collator-node.md b/docs/node-operators/run-collator-node.md index 65d3075..211a06c 100644 --- a/docs/node-operators/run-collator-node.md +++ b/docs/node-operators/run-collator-node.md @@ -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: diff --git a/docs/node-operators/run-evm-tracing-node.md b/docs/node-operators/run-evm-tracing-node.md index 8717651..16269c6 100644 --- a/docs/node-operators/run-evm-tracing-node.md +++ b/docs/node-operators/run-evm-tracing-node.md @@ -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 @@ -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 ```