This is the repository for the encointer collator to operate a parachain. It is forked from the Cumulus repository.
- Download zombienet from the releases in the zombienet repository.
- Copy it to
~/.local/bin/
- Launch it in your terminal
zombienet-linux-x64 spawn --provider native zombienet/rococo-local-with-encointer.toml
Note: You can also set a chain-spec path to the zombienet config, but the config param is named chain_spec_path
.
# Generate a raw chain spec
./target/release/polkadot build-spec --chain rococo-local --disable-default-bootnode --raw > rococo-local-cfde.json
# Alice
./target/release/polkadot --chain rococo-local-cfde.json --alice --tmp
# Bob (In a separate terminal)
./target/release/polkadot --chain rococo-local-cfde.json --bob --tmp --port 30334
# Compile
git clone https://github.com/encointer/encointer-parachain.git
git checkout master
cargo build --release
# Export genesis state
./target/release/encointer-collator export-genesis-state --chain launch-rococo-local --parachain-id 2000 > encointer-local-genesis.state
# Export genesis wasm
./target/release/encointer-collator export-genesis-wasm --chain launch-rococo-local > encointer-local-genesis.wasm
# Collator
./target/release/encointer-collator --collator --tmp --parachain-id 2000 --chain launch-rococo-local --port 40335 --ws-port 9946 -- --execution wasm --chain ../polkadot/rococo-local-cfde.json --port 30337 --ws-port 9981
Go to Polkadot Apps connect to the default local port (Alice) and register the parachain via the paraSudoWrapper
pallet. After registering, the collator should start producing blocks when the next era starts.
Note: Change the ParaId
to 1862 when registering the parachain.
git clone https://github.com/encointer/encointer-node.git
cargo build --release
./target/release/encointer-client-notee -p 9946 get-phase
# should print the phase
./target/release/encointer-client-notee -p 9946 next-phase
# should progress phase
./target/release/encointer-client-notee -p 9946 list-communities
# should print 0 communities, if `--enable-offchain-indexing` is `true` or panic otherwise
Prepare genesis state and wasm as follows:
# Export genesis state
# --parachain-id 1862 as an example that can be chosen freely. Make sure to everywhere use the same parachain id
./target/release/encointer-collator export-genesis-state --chain encointer-rococo --parachain-id 1862 > encointer-rococo-genesis.state
# Export genesis wasm
./target/release/encointer-collator export-genesis-wasm --chain encointer-rococo > encointer-rococo-genesis.wasm
then propose the parachain on rococo relay-chain
run collator
encointer-collator \
--collator \
--chain encointer-rococo \
--parachain-id 1862 \
--rpc-cors all \
--name encointer-rococo-collator-1 \
-- --execution wasm --chain rococo
- Don't forget to enable file upload if you perform drag and drop for the
genesisHead
andvalidationCode
. If it is not enabled, Polkadot-js will interpret the path as a string and won't complain but the registration will fail. - Don't forget to add the argument
--chain encointer-rococo
for the custom chain config. This argument is omitted in the Cumulus Workshop. - The relay chain and the collator need to be about equally recent. This might require frequent rebasing of this repository on the
rococo-v1
branch. - Sanity check: The genesis state is printed when starting the collator. Make sure it matches the one from the
genesis.state
file.
Compile the node with
cargo build --release --features try-runtime
Then run the state migrations with live data from the encointer-kusama parachain
./target/release/encointer-collator try-runtime \
--chain encointer-kusama-local \
--runtime ./target/release/wbuild/encointer-runtime/encointer_runtime.wasm \
on-runtime-upgrade --checks=all \
live --uri wss://kusama.api.encointer.org:443
In ./scripts
we have two scripts for benchmarking the runtimes.
The current weights have been benchmarked with the following reference hardware:
2.3 GHz 8-Core Intel Core i9
16 GB 2400 MHz DDR4
- Compile the node with:
cargo build --release --features runtime-benchmarks
- run:
./scripts/benchmark_launch_runtime.sh
and./scripts/benchmark_encointer_runtime.sh
. - If changed, update the reference hardware above.
Every pallet with a type WeightInfo
parameter in its config must be benchmarked.
- [Cargo.toml] add
<new_pallet>/runtime-benchmarks
in theruntime-benchmarks
feature section. - [runtime] Add the new pallet to be benchmarked to the
define_benchmarks!
macro in the runtime. - Run the benchmark as advised above.
- [runtime/src/weights] add the new file to the modules
- [runtime] replace the placeholder
type WeightInfo = ()
withtype WeightInfo = weights::<new_pallet>::WeightInfo<Runtime>
We have some hardcoded chain-specs to be sure that independent binaries can work with the same genesis_hash
. However,
sometimes we need to update the nodes' (i.e. the client's) spec, when we perform a substrate update. The following script
creates new hard-coded chain-specs while migrating relevant data.
./scripts/update_hardcoded_chain_specs.py --migrate-genesis
- Thorough Readme about Rococo and Collators in general in the original repository of this fork.
- Parachains on Rococo in the Polkadot Wiki