Skip to content

Commit

Permalink
GITBOOK-132: No subject
Browse files Browse the repository at this point in the history
  • Loading branch information
brunopgalvao authored and gitbook-bot committed Sep 8, 2024
1 parent ba23477 commit ef1f837
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions pop-cli-for-appchains/guides/running-on-paseo-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,11 @@ We are now ready to create an issue on Paseo's Github requesting to onboard our

Once you have been confirmed and given a slot, you can start running your collators.

### Running the Collator

In order to run your collator you will need the latest version of the Paseo chain spec. 

In order to run your collator you will need the latest version of the Paseo chain spec. You can download that here: 
You can download that here: 

* [https://github.com/paseo-network/runtimes/tags](https://github.com/paseo-network/runtimes/tags)

Expand All @@ -247,7 +249,7 @@ Run the collator with the following command:
./target/release/parachain-template-node \
--collator \
--force-authoring \
--chain raw-parachain-chainspec.json \
--chain chain-spec-raw.json \
--base-path ./data \
--port 40333 \
--rpc-port 8845 \
Expand All @@ -268,14 +270,25 @@ curl -H "Content-Type: application/json" \
"method":"author_insertKey",
"params":[
"aura",
"INSERT_SECRET_PHRASE",
"INSERT_PUBLIC_KEY_HEX_FORMAT"
"INSERT_SECRET_SESSION_SEED_PHRASE",
"INSERT_PUBLIC_SESSION_KEY_HEX_FORMAT"
],
"id":1
}' \
http://localhost:8845
```

It will take time for your collator to sync with the Paseo Relay chain. Once it is synced your parachain will start producing blocks.

Congrats! 

### Next Steps

For next steps, you could try the following:

* add a second collator
* designating one collator as the bootnode for the parachain's network

#### Learning Resources

* 🧑‍🏫 To learn about Polkadot in general, [Polkadot.network](https://polkadot.network/) website is a good starting point.
Expand Down

0 comments on commit ef1f837

Please sign in to comment.