Skip to content

Commit a566801

Browse files
author
Bulat Saifullin
authored
Remove invalid Rococo links. (#38)
* remove rococo links * fix Paseo link
1 parent 04f95a2 commit a566801

File tree

2 files changed

+13
-21
lines changed

2 files changed

+13
-21
lines changed

src/guides/parachain_deployment.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Guide: Deploying a Parachain Network
22

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

66
## Preparations
77

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

1515
* 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)
1717
* You should have obtained SSH access to these machines.
1818

1919
### Parachain binary or docker image
@@ -82,13 +82,13 @@ Secret Key URI `//Alice` is account:
8282
SS58 Address: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY
8383
```
8484

85-
## Reserve a ParaId on Rococo
85+
## Reserve a ParaId on Paseo
8686

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

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

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.
9292
* Go to the "Developer" tab and select "Extrinsics".
9393
* Choose `registrar.reserve` from the dropdown menu and execute it with your account.
9494
* 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
196196
"tokenSymbol": "UNIT"
197197
},
198198
"para_id": 4435,
199-
"relay_chain": "rococo",
199+
"relay_chain": "paseo",
200200
...
201201
```
202202

@@ -241,7 +241,7 @@ parachain-template-node --chain chainspec.raw.json --tmp
241241
* 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`.
242242
* 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.
243243

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

246246
## Deploy your nodes
247247

@@ -269,7 +269,7 @@ parachain-template-node export-genesis-state --chain chainspec.raw.json > genesi
269269
```
270270
parachain-template-node export-genesis-wasm --chain chainspec.raw.json > genesis_wasm_code
271271
```
272-
* Register your parachain genesis configuration on the relay-chain by executing the `registrar.register` extrinsic on Rococo:
272+
* Register your parachain genesis configuration on the relay-chain by executing the `registrar.register` extrinsic on Paseo:
273273
- `id`: your parachain ID
274274
- `genesisHead`: select the `genesis_state_head` file
275275
- `validationCode`: select the `genesis_wasm_code` file

src/guides/rpc_kubernetes.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,10 @@ image:
3131
tag: v1.14.0
3232
node:
3333
replicas: 1
34-
chain: rococo
34+
chain: westend
3535
role: full
3636
chainData:
37-
chainPath: rococo_v2_2
38-
# chainSnapshot:
39-
# enabled: true
40-
# method: http-filelist
41-
# url: https://snapshots.polkadot.io/rococo-paritydb-archive
37+
chainPath: westend2
4238
volumeSize: 600Gi
4339
storageClass: ssd-csi
4440
database: paritydb
@@ -111,7 +107,7 @@ extraContainers:
111107
repository: parity/polkadot-parachain
112108
tag: 1.14.0
113109
node:
114-
chain: bridge-hub-rococo
110+
chain: bridge-hub-westend
115111
command: polkadot-parachain
116112
replicas: 1
117113
role: full
@@ -125,17 +121,13 @@ extraContainers:
125121
enabled: true
126122
isParachain: true
127123
collatorRelayChain:
128-
chain: rococo
124+
chain: westend
129125
chainData:
130126
database: paritydb
131127
pruning: 1000
132128
storageClass: ssd-csi
133129
volumeSize: 150Gi
134-
# chainSnapshot:
135-
# enabled: true
136-
# method: http-filelist
137-
# url: https://snapshots.polkadot.io/rococo-paritydb-prune
138-
chainPath: rococo_v2_2
130+
chainPath: westend2
139131
chainKeystore:
140132
mountInMemory:
141133
enabled: true

0 commit comments

Comments
 (0)