Technical requirements
To continue our journey of building our own blockchain, we first need to have our environment set up. For detailed instructions on how to accomplish this, please refer to Chapter 3, Building a Custom Blockchain, where we provide step-by-step guidance for various operating systems, including installing Rust on Mac, Linux, and Windows.
Installing Substrate
With Rust installed and the Rust toolchains configured for Substrate development, you are now ready to complete the setup of your development environment. This involves cloning the Substrate node template files and compiling a Substrate node.
You can find detailed instructions for installing and setting up Substrate in the official Substrate documentation. Please refer to the following links based on your operating system:
- Linux development environment: https://docs.substrate.io/install/linux/
- MacOS development environment: https://docs.substrate.io/install/macos/
- Windows development...