Skip to content

Commit

Permalink
Remove invalid Rococo links. (#38)
Browse files Browse the repository at this point in the history
* remove rococo links

* fix Paseo link
  • Loading branch information
BulatSaif authored Nov 29, 2024
1 parent 04f95a2 commit a566801
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 21 deletions.
16 changes: 8 additions & 8 deletions src/guides/parachain_deployment.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Guide: Deploying a Parachain Network

This guide demonstrates the deployment of a parachain test network composed of 2 collators (nodes authoring blocks) and 1 RPC node.
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).
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).

## Preparations

Expand All @@ -13,7 +13,7 @@ The specifications of these machines will depend on your intended usage. For a t
Requirements:

* 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).
* The machine should have a big enough disk to host the relay-chain pruned database (>250 GB for Rococo)
* The machine should have a big enough disk to host the relay-chain pruned database (>100 GB for Paseo)
* You should have obtained SSH access to these machines.

### Parachain binary or docker image
Expand Down Expand Up @@ -82,13 +82,13 @@ Secret Key URI `//Alice` is account:
SS58 Address: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY
```

## Reserve a ParaId on Rococo
## Reserve a ParaId on Paseo

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.

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).
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).

* Ensure you are connected to the Rococo network by selecting the appropriate RPC endpoint (`wss://rococo-rpc.polkadot.io`).
* Ensure you are connected to the Paseo network by selecting the appropriate RPC endpoint.
* Go to the "Developer" tab and select "Extrinsics".
* Choose `registrar.reserve` from the dropdown menu and execute it with your account.
* Check the included extrinsic result in the block to find your reserved `para_id` and note it down.
Expand Down Expand Up @@ -196,7 +196,7 @@ To work properly as a parachain chainspec, add the following fields to your `cha
"tokenSymbol": "UNIT"
},
"para_id": 4435,
"relay_chain": "rococo",
"relay_chain": "paseo",
...
```

Expand Down Expand Up @@ -241,7 +241,7 @@ parachain-template-node --chain chainspec.raw.json --tmp
* 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`.
* 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.

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.
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.

## Deploy your nodes

Expand Down Expand Up @@ -269,7 +269,7 @@ parachain-template-node export-genesis-state --chain chainspec.raw.json > genesi
```
parachain-template-node export-genesis-wasm --chain chainspec.raw.json > genesis_wasm_code
```
* Register your parachain genesis configuration on the relay-chain by executing the `registrar.register` extrinsic on Rococo:
* Register your parachain genesis configuration on the relay-chain by executing the `registrar.register` extrinsic on Paseo:
- `id`: your parachain ID
- `genesisHead`: select the `genesis_state_head` file
- `validationCode`: select the `genesis_wasm_code` file
Expand Down
18 changes: 5 additions & 13 deletions src/guides/rpc_kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,10 @@ image:
tag: v1.14.0
node:
replicas: 1
chain: rococo
chain: westend
role: full
chainData:
chainPath: rococo_v2_2
# chainSnapshot:
# enabled: true
# method: http-filelist
# url: https://snapshots.polkadot.io/rococo-paritydb-archive
chainPath: westend2
volumeSize: 600Gi
storageClass: ssd-csi
database: paritydb
Expand Down Expand Up @@ -111,7 +107,7 @@ extraContainers:
repository: parity/polkadot-parachain
tag: 1.14.0
node:
chain: bridge-hub-rococo
chain: bridge-hub-westend
command: polkadot-parachain
replicas: 1
role: full
Expand All @@ -125,17 +121,13 @@ extraContainers:
enabled: true
isParachain: true
collatorRelayChain:
chain: rococo
chain: westend
chainData:
database: paritydb
pruning: 1000
storageClass: ssd-csi
volumeSize: 150Gi
# chainSnapshot:
# enabled: true
# method: http-filelist
# url: https://snapshots.polkadot.io/rococo-paritydb-prune
chainPath: rococo_v2_2
chainPath: westend2
chainKeystore:
mountInMemory:
enabled: true
Expand Down

0 comments on commit a566801

Please sign in to comment.