Skip to content

v12.1000.0 - Mainnet

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Dec 15:08
· 1987 commits to master since this release
d8dd45d

Mainnet Release

Binaries (joystream-node) and chainspec for the Joystream mainnet network joy-mainnet.json.
Built from commit: 1a0d1f6
Builds done on latest OS version, Linux Ubuntu 22.04, MacOS Latest

Genesis hash

0x6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956
https://polkadot.js.org/apps/?rpc=wss://rpc.joystream.org#/explorer/query/0

Telemetry

https://telemetry.polkadot.io/#/0x6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956

Block Explorer

https://polkadot.js.org/apps/?rpc=wss://rpc.joystream.org#/explorer

GraphQL QueryNode

https://query.joystream.org/graphql

@joystream/types

v0.20.5

@joystream/cli

v0.10.0

Runtimes

The upcoming runtime upgrades that will be made after release are the supervised.wasm and liberated.wasm runtime, included in this release.

To verify them you can follow the steps below (make sure to builds on linux amd64 machine)

git clone https://github.com/joystream/joystream
cd joystream

# Build/or pull the docker images for these runtimes:
git checkout mainnet-supervised
./scripts/runtime-code-shasum.sh 
# you should see the following output: df59458769527c5bfa1e4bd12f973035b4efc92c
# make sure to run the build on linux amd64 machine
RUNTIME_PROFILE="" ./build-node-docker.sh

git checkout mainnet-liberated
./scripts/runtime-code-shasum.sh 
# you should see the following output: c358f937d8b026c39f77043539b45ecb012bb7be
# make sure to run the build on linux amd64 machine
RUNTIME_PROFILE=""  ./build-node-docker.sh

# Extract the WASM blobs
docker create --name supervised --platform linux/amd64 joystream/node:df59458769527c5bfa1e4bd12f973035b4efc92c 
docker cp supervised:/joystream/runtime.compact.compressed.wasm supervised.wasm
docker rm supervised
docker create --name liberated --platform linux/amd64 joystream/node:c358f937d8b026c39f77043539b45ecb012bb7be
docker cp liberated:/joystream/runtime.compact.compressed.wasm liberated.wasm
docker rm liberated

# Compute the hashes/checksum:
b2sum -l 256 supervised.wasm
b2sum -l 256 liberated.wasm

# Expected values:
7e5ea687d978415fbd8b39a977e609295151afe266a1b728711688e66368e5ab  supervised.wasm
364ab7fb6290559c0f899e08791de6f7f97a97dfaea0ad27d24ad1bc1d0ed6f6  liberated.wasm