Skip to content

Latest commit

 

History

History
102 lines (82 loc) · 6.97 KB

File metadata and controls

102 lines (82 loc) · 6.97 KB
title
Overview

Welcome to the wonderful world of blockchain development with Substrate! This is the Substrate Knowledge Base, the official documentation hub for Substrate developers. The purpose of this resource is to help readers understand the multi-disciplinary field of blockchain development with Substrate. This guide is broken down into several sections that explain the principles and design decisions that Substrate is built on as well as the specific skills needed to to be an effective Substrate blockchain developer.

Some Expertise Needed

In order to get the most out of Substrate, you should have a good knowledge of computer science and basic blockchain concepts. Terminology like header, block, client, hash, transaction and signature should be familiar. Substrate is built on the Rust programming language, which makes use of novel design patterns to enable development of code that is safe and fast. Although you don't need to know Rust to get started with Substrate, a good understanding of Rust will allow you to be a better Substrate developer. Check out the excellent resources provided by the Rust community to build your Rust development skills.

Substrate takes a modular approach to blockchain development and defines a rich set of primitives that allows developers to make use of powerful, familiar programming idioms.

Architecture

Substrate Client Architecture

The Substrate client is an application that runs a Substrate-based blockchain node - it consists of several components that include, but are not limited to, the following:

  • Storage is used to persist the evolving state of the decentralized system represented by a blockchain. The blockchain network allows participants to reach trustless consensus about the state of storage. Substrate ships with a simple and highly efficient key-value storage mechanism.
  • Runtime logic defines how blocks are processed, including state transition logic. In Substrate, runtime code is compiled to Wasm and becomes part of the blockchain's storage state - this enables one of the defining features of a Substrate-based blockchain: forkless runtime upgrades. Substrate clients may also include a "native runtime" that is compiled for the same platform as the client itself (as opposed to Wasm). The component of the client that dispatches calls to the runtime is known as the executor and it selects between the native code and interpreted Wasm. Although the native runtime may offer a performance advantage, the executor will select to interpret the Wasm runtime if it implements a newer version.
  • Peer-to-peer network capabilities allow the client to communicate with other network participants. Substrate uses the libp2p network stack.
  • Consensus engines provide logic that allows network participants to agree on the state of the blockchain. Substrate makes it possible to supply custom consensus engines and also ships with several consensus mechanisms that have been built on top of Web3 Foundation research.
  • RPC (remote procedure call) capabilities allow blockchain users to interact with the network. Substrate provides HTTP and WebSocket RPC servers.
  • Telemetry metrics are exposed by way of an embedded Prometheus server.

Usage

Technical Freedom vs Development Ease

Substrate is designed to be used in one of three ways:

  1. With the Substrate Node: You can run the pre-designed Substrate Node and configure its genesis block. In this case, you just need to supply a JSON file and launch your own blockchain. The JSON file allows you to configure the genesis state of the modules that compose the Substrate Node's runtime, such as: Balances, Staking, and Sudo. You can learn more about running a Substrate node in the Create Your First Substrate Chain and Start a Private Network tutorials.

  2. With Substrate FRAME: You can easily create your own custom runtime using FRAME (Framework for Runtime Aggregation of Modularized Entities), which is the method used by the Substrate Node. This affords you a large amount of freedom over your blockchain's logic, and allows you to configure data types, select from a library of modules (called "pallets"), and even add your own custom pallets. The Substrate Developer Hub Node Template is a helpful starting point for projects like this. To learn more, see the tutorials to Build a dApp and Add a Pallet.

  3. With Substrate Core: The entire FRAME system can be ignored, and the runtime can be designed and implemented from scratch. This could be done in any language that can target WebAssembly. If the runtime can be made to be compatible with the abstract block authoring logic of the Substrate node, then you can simply construct a new genesis block from your Wasm blob and launch your chain with the existing Rust-based Substrate client. If not, then you will need to alter the client's block authoring logic, and potentially even alter the header and block serialization formats. In terms of development effort, this is by far the most difficult way to use Substrate, but also gives you the most freedom to innovate.

Next Steps

Learn More

Examples

  • Follow our tutorials to learn about building and running blockchains with Substrate and FRAME.
  • Refer to the Substrate Recipes to find complete working examples that demonstrate solutions to common problems.

References