Build parachain

How to build our parachain manually

Similar to polkadot, different chain-specs/runtimes are compiled into one single binary. In our case it's:

  • heima-parachain-runtime (on polkadot)

  • paseo-parachain-runtime (on paseo)

build parachain manually

  1. make sure cargo is installed, preferably via rustup

  2. cd heima

To build the litentry-parachain raw binary manually:

make build-node

To build the litentry/heima docker image manually:

make build-docker-release

To build the heima-parachain runtime wasm manually:

make build-runtime-heima

The wasms should be located under target/release/wbuild/heima-parachain-runtime/

Similarly, use make build-runtime-paseo to build the paseo-parachain-runtime.

pre-built docker images

You can find all the parachain images directly on docker hub. Among them, litentry/heima:latest is pushed by our github CI and should always contain the latest stable build from the default branch.

pre-built binary releases

You can find all the pre-built binary releases on the github release page.

Last updated

Was this helpful?