diff --git a/config/menus.js b/config/menus.js index fe1e02870..38f84a0a5 100644 --- a/config/menus.js +++ b/config/menus.js @@ -62,10 +62,6 @@ const developers = [ url: MARKETPLACE_URL, id: 'developers.marketplace', }, - { - url: WEBSITE_URL + '/developers/playground/', - id: 'developers.playground', - }, { url: WEBSITE_URL + '/developers/smart-contracts/', id: 'developers.smart-contracts', diff --git a/content/locales/en/menus.json b/content/locales/en/menus.json index 88ffc7f3b..c0997a77c 100644 --- a/content/locales/en/menus.json +++ b/content/locales/en/menus.json @@ -15,7 +15,6 @@ "developers.docs": "Docs", "developers.rustdocs": "Rust Docs", "developers.marketplace": "Marketplace", - "developers.playground": "Playground", "developers.smart-contracts": "Smart Contracts", "developers.substrate-connect": "Substrate Connect", "developers.rococo-network": "Rococo Network", diff --git a/content/md/en/docs/build/build-process.md b/content/md/en/docs/build/build-process.md index 9f6ed64e3..d69bd7cbe 100644 --- a/content/md/en/docs/build/build-process.md +++ b/content/md/en/docs/build/build-process.md @@ -61,7 +61,7 @@ include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); This code includes the compact WebAssembly binary (`WASM_BINARY`) and the uncompressed WebAssembly binary generated by the compiler (`WASM_BINARY_BLOATY`) in its compilation result, and the final executable binary for the project is generated. -At each stage of the build process, the WebAssembly binary is compressed to a smaller and smaller size. +At each stage of the build process, the WebAssembly binary is compressed to a smaller size than earlier. For example, you can compare the sizes of each WebAssembly binary artifact for Polkadot: ```bash @@ -118,7 +118,7 @@ For example, you might want to use the native runtime for initial synchronizatio To use the native runtime for synchronizing blocks, you can start the node using the `--execution-syncing native` or `--execution-syncing native-else-wasm` command-line option. For information about using the command-line options to specify an execution strategy for all or specific operations, see [node-template](/reference/command-line-tools/node-template). -For information about the execution strategy variant, see [ExecutionStrategy](https://paritytech.github.io/substrate/master/sp_state_machine/enum.ExecutionStrategy.html) +For information about the execution strategy variant, see [ExecutionStrategy](https://paritytech.github.io/substrate/master/sc_cli/arg_enums/enum.ExecutionStrategy.html) ## Building WebAssembly without a native runtime @@ -127,7 +127,7 @@ After an initial WebAssembly runtime is provided, the blob that represents the W In some rare cases, you might want to compile the WebAssembly target without the native runtime. For example, if you're testing a WebAssembly runtime to prepare for a forkless upgrade, you might want to compile just the new WebAssembly binary. -Although it's a rare use case, you can use the [build-only-wasm.sh](https://github.com/paritytech/substrate/blob/master/.maintain/build-only-wasm.sh) script to build the `no_std` WebAssembly binary without compiling the native runtime. +Although it's a rare use case, you can use the [build-only-wasm.sh](https://github.com/paritytech/polkadot-sdk/blob/master/substrate/.maintain/build-only-wasm.sh) script to build the `no_std` WebAssembly binary without compiling the native runtime. You can also use the `wasm-runtime-overrides` command-line option to load the WebAssembly from the file system. @@ -138,6 +138,6 @@ This option is primarily used for faster compile time when you don't need to upd ## Where to go next -- [Wasm-builder README](https://github.com/paritytech/substrate/blob/master/utils/wasm-builder/README.md) +- [Wasm-builder README](https://github.com/paritytech/polkadot-sdk/blob/master/substrate/utils/wasm-builder/README.md) - [Rust compilation options](https://doc.rust-lang.org/cargo/commands/cargo-build.html#compilation-options) - [Discussion: Removing the native runtime](https://github.com/paritytech/substrate/issues/10579) diff --git a/content/md/en/docs/build/genesis-configuration.md b/content/md/en/docs/build/genesis-configuration.md index 36ba584d9..f398bcb92 100644 --- a/content/md/en/docs/build/genesis-configuration.md +++ b/content/md/en/docs/build/genesis-configuration.md @@ -4,6 +4,11 @@ description: keywords: --- +