You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nodes/full-nodes/basic-setup.md
+7-9Lines changed: 7 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,31 +12,29 @@ To install Lotus on your computer, follow these steps:
12
12
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:
13
13
14
14
```sh
15
-
sudo tar -C /usr/local/bin -xzf lotus-X.X.X-linux-amd64.tar.gz
15
+
sudo tar -C /usr/local/bin -xzf lotus-1.31.1-linux-amd64.tar.gz
16
16
```
17
17
18
-
3. Replace `X.X.X` with the version number of the release you downloaded.
19
-
4. 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:
18
+
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:
20
19
21
20
```sh
22
-
cd /usr/local/bin/lotus-X.X.X
21
+
cd /usr/local/bin/lotus-1.31.1
23
22
```
24
23
25
-
5. Again, replace `X.X.X` with the version number of the release you downloaded.
26
-
6. Run the `lotus` binary file to start the Lotus daemon. You can do this by running the command:
24
+
4. Run the `lotus` binary file to start the Lotus daemon. You can do this by running the command:
27
25
28
26
```sh
29
27
./lotus daemon
30
28
```
31
29
32
-
7. This will start the Lotus daemon, which will connect to the Filecoin network and start synchronizing with other nodes on the network.
33
-
8. Optionally, you can also run the lotus-miner binary file if you want to participate in the Filecoin mining process. You can do this by running the command:
30
+
5. This will start the Lotus daemon, which will connect to the Filecoin network and start synchronizing with other nodes on the network.
31
+
6. Optionally, you can also run the lotus-miner binary file if you want to participate in the Filecoin mining process. You can do this by running the command:
34
32
35
33
```sh
36
34
./lotus-miner run
37
35
```
38
36
39
-
9. This will start the Lotus miner, which will use your computer’s computing power to mine new blocks on the Filecoin network.
37
+
7. This will start the Lotus miner, which will use your computer’s computing power to mine new blocks on the Filecoin network.
Copy file name to clipboardExpand all lines: nodes/lite-nodes/spin-up-a-lite-node.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,12 +73,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps.
73
73
This should output something like:
74
74
75
75
```output
76
-
v1.29.0
76
+
v1.31.1
77
77
```
78
78
3. Using the value returned from the previous command, checkout to the latest release branch:
79
79
80
80
```shell
81
-
git checkout v1.29.0
81
+
git checkout v1.31.1
82
82
```
83
83
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.
84
84
{% endtab %}
@@ -99,12 +99,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps.
99
99
This should output something like:
100
100
101
101
```output
102
-
v1.29.0
102
+
v1.31.1
103
103
```
104
104
3. Using the value returned from the previous command, checkout to the latest release branch:
105
105
106
106
```shell
107
-
git checkout v1.29.0
107
+
git checkout v1.31.1
108
108
```
109
109
4. Create the necessary environment variables to allow Lotus to run on M1 architecture:
110
110
@@ -132,12 +132,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps.
132
132
This should output something like:
133
133
134
134
```output
135
-
v1.29.0
135
+
v1.31.1
136
136
```
137
137
3. Using the value returned from the previous command, checkout to the latest release branch:
138
138
139
139
```shell
140
-
git checkout v1.29.0
140
+
git checkout v1.31.1
141
141
```
142
142
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).
143
143
@@ -175,7 +175,7 @@ The last thing we need to do to get our node setup is to build the package. The
175
175
This will output something like:
176
176
177
177
```plaintext
178
-
lotus version 1.29.0+mainnet+git.1ff3b360b
178
+
lotus version 1.31.1+mainnet+git.1ff3b360b
179
179
```
180
180
{% endtab %}
181
181
@@ -200,7 +200,7 @@ The last thing we need to do to get our node setup is to build the package. The
Copy file name to clipboardExpand all lines: reference/built-in-actors/protocol-api.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1181,7 +1181,7 @@ Results:
1181
1181
1182
1182
## Verified registry actor
1183
1183
1184
-
Verified registry actor is responsible for managing verified clients. The ActorCode for the verified registry built-in actor is `hex"0006"` which will be used to call the exported methods in the verified registry built-in actor. You need to specify the method number for the method you want to invoke. Please referer to each method for its method number.
1184
+
Verified registry actor is responsible for managing verified clients. The ActorCode for the verified registry built-in actor is `hex"0006"` which will be used to call the exported methods in the verified registry built-in actor. You need to specify the method number for the method you want to invoke. Please refer to each method for its method number.
1185
1185
1186
1186
### AddVerifiedClient
1187
1187
@@ -1273,7 +1273,7 @@ Params:
1273
1273
*`struct` ExtendClaimTermsParams
1274
1274
*`struct ClaimTerm[]` Terms
1275
1275
*`uint64` Provider - The provider address which stores the data.
Copy file name to clipboardExpand all lines: reference/general/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@ Developer tools, API clients & storage services that developers can use to build
75
75
76
76
### Storage APIs for app builders
77
77
78
-
*[Lighthouse](https://www.lighthouse.storage/) - Lighthouse offers a suite of tools to enable builders to store data on Filecoin when biulding apps.
78
+
*[Lighthouse](https://www.lighthouse.storage/) - Lighthouse offers a suite of tools to enable builders to store data on Filecoin when building apps.
79
79
*[`NFT.storage`](https://nft.storage/) - Preserve your NFTs with our new low-cost, easy-to-use solution, ensuring verifiable long-term storage on Filecoin.
80
80
*[`Web3.storage`](https://web3.storage/) - service from Protocol Labs for storing off-chain _dApp_ data on IPFS and Filecoin, with help from Pinata (a fast IPFS Pinning Service) to [distribute the content across IPFS](https://www.pinata.cloud/blog/protocol-labs-and-pinata)
81
81
*[`Textile.io's tools`](https://docs.textile.io/) - suite of tools for interacting with IPFS and Filecoin, including [Tableland](https://tableland.xyz/) and Filecoin bridges to Polygon and NEAR.
Copy file name to clipboardExpand all lines: reference/json-rpc/client.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Client
2
2
3
3
{% hint style="warning" %}
4
-
The Client methods are now deprecated and have been removed from Lotus (the Filecoin reference implemenation).
4
+
The Client methods are now deprecated and have been removed from Lotus (the Filecoin reference implementation).
5
5
{% endhint %}
6
6
7
7
Some similar functionality can be found by using the [Boostly](https://github.com/filecoin-shipyard/boostly) library, which interacts with market actors provided by [Boost](https://boost.filecoin.io/).
Copy file name to clipboardExpand all lines: reference/json-rpc/create.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## CreateBackup
4
4
5
-
CreateBackup creates node backup onder the specified file name. The method requires that the lotus daemon is running with the LOTUS\_BACKUP\_BASE\_PATH environment variable set to some path, and that the path specified when calling CreateBackup is within the base path
5
+
CreateBackup creates node backup under the specified file name. The method requires that the lotus daemon is running with the LOTUS\_BACKUP\_BASE\_PATH environment variable set to some path, and that the path specified when calling CreateBackup is within the base path
0 commit comments