@@ -28,7 +28,7 @@ installation](#alternatives-installations) options.
2828Use the following command to build the node without launching it:
2929
3030``` sh
31- cargo build --release
31+ cargo build --package solochain-template-node -- release
3232```
3333
3434### Embedded Docs
@@ -37,7 +37,7 @@ After you build the project, you can use the following command to explore its
3737parameters and subcommands:
3838
3939``` sh
40- ./target/release/node -template -h
40+ ./target/release/solochain -template-node -h
4141```
4242
4343You can generate and view the [ Rust
@@ -54,19 +54,19 @@ The following command starts a single-node development chain that doesn't
5454persist state:
5555
5656``` sh
57- ./target/release/node -template --dev
57+ ./target/release/solochain -template-node --dev
5858```
5959
6060To purge the development chain's state, run the following command:
6161
6262``` sh
63- ./target/release/node -template purge-chain --dev
63+ ./target/release/solochain -template-node purge-chain --dev
6464```
6565
6666To start the development chain with detailed logging, run the following command:
6767
6868``` sh
69- RUST_BACKTRACE=1 ./target/release/node -template -ldebug --dev
69+ RUST_BACKTRACE=1 ./target/release/solochain -template-node -ldebug --dev
7070```
7171
7272Development chains:
@@ -75,7 +75,7 @@ Development chains:
7575- Use the ** Alice** and ** Bob** accounts as default validator authorities.
7676- Use the ** Alice** account as the default ` sudo ` account.
7777- Are preconfigured with a genesis state (` /node/src/chain_spec.rs ` ) that
78- includes several prefunded development accounts.
78+ includes several pre-funded development accounts.
7979
8080
8181To persist chain state between runs, specify a base path by running a command
@@ -86,7 +86,7 @@ similar to the following:
8686$ mkdir my-chain-state
8787
8888// Use of that folder to store the chain state
89- $ ./target/release/node -template --dev --base-path ./my-chain-state/
89+ $ ./target/release/solochain -template-node --dev --base-path ./my-chain-state/
9090
9191// Check the folder structure created inside the base path after running the chain
9292$ ls ./my-chain-state
@@ -142,7 +142,7 @@ following:
142142 file that defines a Substrate chain's initial (genesis) state. Chain
143143 specifications are useful for development and testing, and critical when
144144 architecting the launch of a production chain. Take note of the
145- ` development_config ` and ` testnet_genesis ` functions, . These functions are
145+ ` development_config ` and ` testnet_genesis ` functions. These functions are
146146 used to define the genesis state for the local development chain
147147 configuration. These functions identify some [ well-known
148148 accounts] ( https://docs.substrate.io/reference/command-line-tools/subkey/ ) and
0 commit comments