Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the README #317

Merged
merged 2 commits into from
Nov 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ Please use following command to run peaq-network-node parachian in the docker co
#### PEAQ-Dev env

```bash
docker run -v peaq-dev-storage/chain-data -p 9944:9944 peaq/parachain:peaq-dev-v0.0.101 \
docker run -v peaq-dev-storage/chain-data -p 9944:9944 peaq/parachain:peaq-dev-v0.0.102 \
--parachain-id 2000 \
--chain ./node/src/chain-specs/peaq-dev-raw.json \
--base-path chain-data \
Expand Down Expand Up @@ -185,7 +185,7 @@ docker run -v krest-storage:/chain-data -p 9944:9944 -p 9933:9933 peaq/parachain
#### Peaq env

```bash
docker run -v peaq-storage:/chain-data -p 9944:9944 peaq/parachain:peaq-v0.0.102 \
docker run -v peaq-storage:/chain-data -p 9944:9944 peaq/parachain:peaq-v0.0.103 \
--parachain-id 3338 \
--chain ./node/src/chain-specs/peaq-raw.json \
--base-path chain-data \
Expand All @@ -211,7 +211,7 @@ for peaq-network-node from the git repository

#### PEAQ-Dev env
```bash
git clone --branch peaq-dev-v0.0.101 https://github.com/peaqnetwork/peaq-network-node.git
git clone --branch peaq-dev-v0.0.102 https://github.com/peaqnetwork/peaq-network-node.git
```

#### Krest env
Expand All @@ -221,7 +221,7 @@ git clone --branch krest-v0.0.7 https://github.com/peaqnetwork/peaq-network-node

#### Peaq env
```bash
git clone --branch peaq-v0.0.102 https://github.com/peaqnetwork/peaq-network-node.git
git clone --branch peaq-v0.0.103 https://github.com/peaqnetwork/peaq-network-node.git
```

2. CD into the peaq-network-node directory:
Expand All @@ -238,7 +238,7 @@ The folder .local is needed because that is where data such as session keys are

4. Compile the source code:
```bash
./scripts/docker_run.sh cargo build --release
./scripts/docker_run.sh cargo build --release --features on-chain-release-build
```

5. Now run the following script to start a peaq-network-node parachain that will connect to the polkadot relay chain running in peaq development environment:
Expand Down