ondratra a5bf99d792 minor code format fix 4 سال پیش
..
src a5bf99d792 minor code format fix 4 سال پیش
CHANGELOG.md 83e30c7906 runtime: increase ROLE_PARAMETERS_REWARD_MAX_VALUE to 100_000 4 سال پیش
Cargo.toml 519587ec56 node: Upgrade to the Substrate 2.0.0-rc4 4 سال پیش
README.md 970187b010 Update runtime/README.md 4 سال پیش
build.rs 677ea26d98 runtime wasm builder: try newer version to ensure always building for host target 4 سال پیش
runtime-banner.svg 2a532261d6 update README 5 سال پیش

README.md

Joystream Runtime

Joystream Runtime

The runtime is the code that defines the consensus rules of the Joystream protocol. It is compiled to WASM and lives on chain. Joystream node execute the code's logic to validate transactions and blocks on the blockchain.

When building joystream-node as described in ../node/README.md with cargo build --release, in addition to the joystream-node binary being built the WASM blob artifact is produced in:

target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm

Deployment

Deploying the compiled runtime on a live system can be done in one of two ways:

  1. By creating a proposal for upgrading the Joystream runtime, which will then be voted on by the council. If the proposal is approved, the upgrade will go through after a grace period. When the Joystream platform is live, this will be the only way to upgrade the chain's runtime code.

  2. By creating an extrinsic (transaction) signed with the sudo key invoking system::setCode(). This can be done either from the Pioneer extrinsics tab, or directly with an admin script. This way of upgrading the runtime code is intended for development and testnet phases only.

Versioning the runtime

Versioning of the runtime is set in runtime/src/lib.rs For detailed information about how to set correct version numbers when developing a new runtime, see this