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: src/guides/parachain_deployment.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
@@ -1,7 +1,7 @@
1
1
# Guide: Deploying a Parachain Network
2
2
3
3
This guide demonstrates the deployment of a parachain test network composed of 2 collators (nodes authoring blocks) and 1 RPC node.
4
-
We are using Rococo as an example, but this approach would work similarly for any Relaychain, whether it is a testnet (Westend, Rococo, Paseo) or a mainnet (Polkadot, Kusama).
4
+
We are using Paseo as an example, but this approach would work similarly for any Relaychain, whether it is a testnet (Westend, Paseo) or a mainnet (Polkadot, Kusama).
5
5
6
6
## Preparations
7
7
@@ -13,7 +13,7 @@ The specifications of these machines will depend on your intended usage. For a t
13
13
Requirements:
14
14
15
15
* The machines should have a public IP and allow network access on their P2P ports (defaults 30333 and 30334) as well as the RPC port for the RPC node (9944 for ws or 443 for wss).
16
-
* The machine should have a big enough disk to host the relay-chain pruned database (>250 GB for Rococo)
16
+
* The machine should have a big enough disk to host the relay-chain pruned database (>100 GB for Paseo)
17
17
* You should have obtained SSH access to these machines.
18
18
19
19
### Parachain binary or docker image
@@ -82,13 +82,13 @@ Secret Key URI `//Alice` is account:
Note: although it is possible to use specific UIs for registering your parachain, this guide only documents how to do it by submitting extrinsics directly through the Polkadot.js Console.
88
88
89
-
To get reserve a ParaId for your parachain on Rococo, navigate to the [Polkadot.js Apps interface](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frococo-rpc.polkadot.io).
89
+
To get reserve a ParaId for your parachain on Paseo, navigate to the [Polkadot.js Apps interface](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frpc.ibp.network%2Fpaseo#/explorer).
90
90
91
-
* Ensure you are connected to the Rococo network by selecting the appropriate RPC endpoint (`wss://rococo-rpc.polkadot.io`).
91
+
* Ensure you are connected to the Paseo network by selecting the appropriate RPC endpoint.
92
92
* Go to the "Developer" tab and select "Extrinsics".
93
93
* Choose `registrar.reserve` from the dropdown menu and execute it with your account.
94
94
* Check the included extrinsic result in the block to find your reserved `para_id` and note it down.
@@ -196,7 +196,7 @@ To work properly as a parachain chainspec, add the following fields to your `cha
* Connect to it with [Polkadot.js Apps](https://polkadot.js.org/apps/?rpc=ws%3A%2F%2F127.0.0.1%3A9944) on `ws://127.0.0.1:9944`.
242
242
* You can inspect the [chain state in Polkadot.js Apps](https://polkadot.js.org/apps/?rpc=ws%3A%2F%2F127.0.0.1%3A9944#/chainstate) to verify that everything is in order for the launch.
243
243
244
-
Note: if you look at the node logs, it should be starting to sync the relay-chain (Rococo in our case). For this dry-run step, you don’t have to wait until it is fully synced. However, after deployment, a node needs to be fully synced in order to collate parachain blocks.
244
+
Note: if you look at the node logs, it should be starting to sync the relay-chain (Paseo in our case). For this dry-run step, you don’t have to wait until it is fully synced. However, after deployment, a node needs to be fully synced in order to collate parachain blocks.
0 commit comments