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: docs/farming.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
@@ -44,7 +44,7 @@ If you're connected directly without any router, then again nothing needs to be
44
44
# Replace `INSERT_YOUR_ID` with a nickname you choose
45
45
# Copy all of the lines below, they are all part of the same command
46
46
.\NODE_FILE_NAME.exe `
47
-
--chain gemini-3b `
47
+
--chain gemini-3c `
48
48
--execution wasm `
49
49
--blocks-pruning archive `
50
50
--state-pruning archive `
@@ -96,7 +96,7 @@ If you're connected directly without any router, then again nothing needs to be
96
96
# Replace `INSERT_YOUR_ID` with a nickname you choose
97
97
# Copy all of the lines below, they are all part of the same command
98
98
./NODE_FILE_NAME \
99
-
--chain gemini-3b \
99
+
--chain gemini-3c \
100
100
--execution wasm \
101
101
--blocks-pruning archive \
102
102
--state-pruning archive \
@@ -151,7 +151,7 @@ After this, simply repeat the step you prompted for (step 4 or 6). This time, cl
151
151
# Replace `INSERT_YOUR_ID` with a nickname you choose
152
152
# Copy all of the lines below, they are all part of the same command
153
153
./NODE_FILE_NAME \
154
-
--chain gemini-3b \
154
+
--chain gemini-3c \
155
155
--execution wasm \
156
156
--blocks-pruning archive \
157
157
--state-pruning archive \
@@ -214,7 +214,7 @@ services:
214
214
- "0.0.0.0:30433:30433"
215
215
restart: unless-stopped
216
216
command: [
217
-
"--chain", "gemini-3b",
217
+
"--chain", "gemini-3c",
218
218
"--base-path", "/var/subspace",
219
219
"--execution", "wasm",
220
220
"--blocks-pruning", "archive",
@@ -289,7 +289,7 @@ You can read logs with `docker-compose logs --tail=1000 -f`, for the rest read [
289
289
290
290
## Checking results and interacting with the network
291
291
292
-
Visit [Polkadot.js explorer](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Feu-0.gemini-3b.subspace.network%2Fws#/explorer), from there you can interact with Subspace Network as any Substrate-based blockchain.
292
+
Visit [Polkadot.js explorer](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Feu-0.gemini-3c.subspace.network%2Fws#/explorer), from there you can interact with Subspace Network as any Substrate-based blockchain.
293
293
294
294
## Switching from older/different versions of Subspace
295
295
@@ -300,7 +300,7 @@ If you were running a node previously, and want to switch to a new snapshot, ple
300
300
# Replace `FARMER_FILE_NAME` with the name of the node file you downloaded from releases
301
301
./FARMER_FILE_NAME wipe
302
302
# Replace `NODE_FILE_NAME` with the name of the node file you downloaded from releases
303
-
./NODE_FILE_NAME purge-chain --chain gemini-3b
303
+
./NODE_FILE_NAME purge-chain --chain gemini-3c
304
304
```
305
305
Does not matter if the node/farmer executable is the previous one or from the new snapshot, both will work :)
306
306
The reason we require this is, with every snapshot change, the network might get partitioned, and you may be on a different genesis than the current one.
@@ -322,8 +322,8 @@ Below are some helpful samples:
322
322
323
323
-`./FARMER_FILE_NAME --base-path /path/to/data farm ...` : will store data in `/path/to/data` instead of default location
324
324
-`./FARMER_FILE_NAME --base-path /path/to/data wipe` : erases everything related to farmer if data were stored in `/path/to/data`
325
-
-`./NODE_FILE_NAME --base-path /path/to/data --chain gemini-3b ...` : start node and store data in `/path/to/data` instead of default location
326
-
-`./NODE_FILE_NAME purge-chain --base-path /path/to/data --chain gemini-3b` : erases data related to the node if data were stored in `/path/to/data`
325
+
-`./NODE_FILE_NAME --base-path /path/to/data --chain gemini-3c ...` : start node and store data in `/path/to/data` instead of default location
326
+
-`./NODE_FILE_NAME purge-chain --base-path /path/to/data --chain gemini-3c` : erases data related to the node if data were stored in `/path/to/data`
0 commit comments