Skip to content

Commit a853cad

Browse files
authored
docs: Fix document content errors
1. Update node-template repository URL 2. Adjust usage instructions for node-template
1 parent f487cc6 commit a853cad

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

content/md/en/docs/quick-start/start-a-node.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ Before you begin, verify the following:
3030
1. Clone the node template repository by running the following command:
3131

3232
```sh
33-
git clone https://github.com/substrate-developer-hub/substrate-node-template
33+
git clone https://github.com/paritytech/polkadot-sdk-solochain-template
3434
```
3535

3636
This command clones the `main` branch.
3737

38-
Optionally, you can use the `--branch` command-line option and a [tag](https://github.com/substrate-developer-hub/substrate-node-template/tags) to specify a version of Polkadot you want the node to be compatible with.
38+
Optionally, you can use the `--branch` command-line option and a [tag](https://github.com/paritytech/polkadot-sdk-solochain-template/tags) to specify a version of Polkadot you want the node to be compatible with.
3939

4040
2. Change to the root of the cloned directory:
4141

4242
```sh
43-
cd substrate-node-template
43+
cd polkadot-sdk-solochain-template
4444
```
4545

4646
3. Create a new branch to save your work by running a command similar to the following:
@@ -60,7 +60,7 @@ Before you begin, verify the following:
6060
4. Compile the node template:
6161

6262
```sh
63-
cargo build --package node-template --release
63+
cargo build --release
6464
```
6565

6666
The first time you compile the node, it can take some time to complete.
@@ -75,7 +75,7 @@ Before you begin, verify the following:
7575
1. Verify that your node is ready to use and see information about the command-line options available by running the following command:
7676

7777
```sh
78-
./target/release/node-template --help
78+
./target/release/solochain-template-node --help
7979
```
8080

8181
The usage information displays the command-line options you can use to:
@@ -87,7 +87,7 @@ Before you begin, verify the following:
8787
1. View account information for the predefined `Alice` development account by running the following command:
8888

8989
```sh
90-
./target/release/node-template key inspect //Alice
90+
./target/release/solochain-template-node key inspect //Alice
9191
```
9292

9393
The command displays the following account and address information:
@@ -111,7 +111,7 @@ Before you begin, verify the following:
111111
1. Start the node in development mode by running the following command:
112112

113113
```sh
114-
./target/release/node-template --dev
114+
./target/release/solochain-template-node --dev
115115
```
116116

117117
In development mode, the chain doesn't require any peer computers to finalize blocks.

0 commit comments

Comments
 (0)