From 5a008373dbc0839096c7cff553e012085a17ef22 Mon Sep 17 00:00:00 2001 From: lanzafame Date: Fri, 5 Dec 2025 03:59:52 +0000 Subject: [PATCH] Chore: update Lotus version references to 1.34.3 --- nodes/full-nodes/basic-setup.md | 4 ++-- nodes/lite-nodes/spin-up-a-lite-node.md | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/nodes/full-nodes/basic-setup.md b/nodes/full-nodes/basic-setup.md index 68aab1b6d..d1b2567b3 100644 --- a/nodes/full-nodes/basic-setup.md +++ b/nodes/full-nodes/basic-setup.md @@ -12,13 +12,13 @@ To install Lotus on your computer, follow these steps: 2. Once you have downloaded the binary file, extract the contents to a directory of your choice. For example, if you are using Linux, you can extract the contents to the `/usr/local/bin directory` by running the command: ```sh -sudo tar -C /usr/local/bin -xzf lotus-1.34.1-linux-amd64.tar.gz +sudo tar -C /usr/local/bin -xzf lotus-1.34.3-linux-amd64.tar.gz ``` 3. After extracting the contents, navigate to the `lotus` directory in your terminal. For example, if you extracted the contents to `/usr/local/bin`, you can navigate to the lotus directory by running the command: ```sh -cd /usr/local/bin/lotus-1.34.1 +cd /usr/local/bin/lotus-1.34.3 ``` 4. Run the `lotus` binary file to start the Lotus daemon. You can do this by running the command: diff --git a/nodes/lite-nodes/spin-up-a-lite-node.md b/nodes/lite-nodes/spin-up-a-lite-node.md index 6ef897bed..2d3232f1d 100644 --- a/nodes/lite-nodes/spin-up-a-lite-node.md +++ b/nodes/lite-nodes/spin-up-a-lite-node.md @@ -73,12 +73,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps. This should output something like: ```output - v1.34.1 + v1.34.3 ``` 3. Using the value returned from the previous command, checkout to the latest release branch: ```shell - git checkout v1.34.1 + git checkout v1.34.3 ``` 4. Done! You can move on to the [Build](https://docs.filecoin.io/nodes/lite-nodes/spin-up-a-lite-node/#build-the-binary) section. {% endtab %} @@ -99,12 +99,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps. This should output something like: ```output - v1.34.1 + v1.34.3 ``` 3. Using the value returned from the previous command, checkout to the latest release branch: ```shell - git checkout v1.34.1 + git checkout v1.34.3 ``` 4. Create the necessary environment variables to allow Lotus to run on M1 architecture: @@ -132,12 +132,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps. This should output something like: ```output - v1.34.1 + v1.34.3 ``` 3. Using the value returned from the previous command, checkout to the latest release branch: ```shell - git checkout v1.34.1 + git checkout v1.34.3 ``` 4. If your processor was released later than an AMD Zen or Intel Ice Lake CPU, enable SHA extensions by adding these two environment variables. If in doubt, ignore this command and move on to [the next section](https://docs.filecoin.io/nodes/lite-nodes/spin-up-a-lite-node/#build-the-binary). @@ -175,7 +175,7 @@ The last thing we need to do to get our node setup is to build the package. The This will output something like: ```plaintext - lotus version 1.34.1+mainnet+git.1ff3b360b + lotus version 1.34.3+mainnet+git.1ff3b360b ``` {% endtab %} @@ -200,7 +200,7 @@ The last thing we need to do to get our node setup is to build the package. The This will output something like: ```plaintext - lotus version 1.34.1+calibnet+git.1ff3b360b + lotus version 1.34.3+calibnet+git.1ff3b360b ``` {% endtab %} {% endtabs %}