Introduction to Substrate
What is Substrate?
Substrate is a Rust framework for building blockchains in a modular and extensible way.
Why Substrate?

Why Substrate?

Why Substrate?
- βοΈ Future is multi-chain.
- π Building a blockchain is hard and prone to mistakes.
- π§ The need for a framework to build various blockchains is crucial for this future.
Core Philosophies of Substrate π
The pre-substrate way of thinking:
- Writing blockchains is hard.
- Coordination of upgrades in blockchains is hard.
- We are going to spend maximal resources at making sure we get it right.
Core Philosophies of Substrate π
The substrate way of thinking:
- It all starts with a deep acknowledgment that society and technology will evolve.
- It is only a matter of time until the "right choice" of today turns into a mistake in the future.
Core Philosophies of Substrate π
Outcomes of this:
- Rust as a language.
- Upgradeability through a Wasm meta-protocol.
- Generic.
Core Philosophies of Substrate: Rust as a language
Memory safety is a fundamental issue in most major system-level programming languages.
π
segfault
π You cannot make certain mistakes in Rust.
Core Philosophies of Substrate: Rust as a language
- ποΈ Most Rust abstractions are zero-cost. Rust has no "runtime". It as fast as a binary can be.

Core Philosophies of Substrate: Upgradeability
- πͺπ» Substrate is HIGHLY upgradable.
- πΈοΈ Encoding the application logic of the chain as Wasm, and storing it onchain, such that it can be upgraded on the fly.
Core Philosophies of Substrate: Generic
- Multiple consensus engines (BABE/Grandpa/AURA)
- Multiple network protocols (QUIC, TCP)
- Multiple database implementations (ParityDB, RocksDB)
- Multiple ledger-state formats (UTXO, Account-based)
Core Philosophies of Substrate: Generic
- AlephZero: Custom consensus, DAG-based, 1s block time.
- Moonbeam: Ethereum compatible, build with substrate.
- HydraDX: Custom transaction pool logic to match DEX orders.
- Kulupu: Proof of work, custom hashing.
Substrate Architecture
The Runtime
- The runtime contains all of the application logic of your chain.
...
- In a more fancy term, the runtime is the state transition function.
...
- In a more technical term, the definition of how your blockchain executes blocks.
(Wasm) Runtime ~ STF ~ Application/Business Logic
State Transition
- State: The entire set of data that we want to come to consensus about.
- Transition: Done via the runtime, the piece of logic that dictates how the state changes.
State Transition
Positive Consequences of Wasm Runtime π₯
- π€ deterministic execution
- 𧱠sandboxing (more relevant in Polkadot)
- π Easier client development, including light clients.
- π forkless upgrade!
π€ Deterministic Execution
- The need for determinism in a blockchain runtime is absolute.
𧱠Sandboxing
- Substrate uses the same Wasm machinery for executing:
- Smart contracts
- Parachain runtime (i.e. PVF)
π Easier Client Development
A Substrate client written in a different language needs to ONLY implement the host/client side.
Then, possibly ALL SUBSTRATE BASED CHAINS will get a new client.
Same story for a DApp that you write.
π Forkless Upgrade:
π Forkless Upgrade:
Negative Consequences of Wasm Runtime π₯²
- π© Constrained resources (memory, speed, syscalls).
- π€ Client diversification != state-transition diversification
What is Wasm Anyways?
WebAssembly (abbreviated Wasm) is a binary instruction format for a stack-based virtual machine. Wasm is designed as a portable compilation target for programming languages, enabling deployment on the web for client and server applications.
What is Wasm Anyways?
What is Wasm Anyways?
- Wasm β€οΈ Web
- Streaming and rapid compilation.
- Designed with the concept of host in mind. Sandboxed, permissioned sys-calls.
Anyone remember "Java Applets"?
How to Write a Wasm Runtime?
- Any language that can compile to Wasm and exposes a fixed set of functions, to be used by the client.
- ... But, of course, Substrate comes with a framework to make this developer-friendly, FRAMEβ’οΈ.
The Client
Everything else you need in a blockchain, except the runtime/STF/Application-logic we just spoke of.
The Client
- Compiled to native.
- Less need for determinism.
- Has access to anything a normal native binary does (memory, disk, syscalls etc.)
- Does all the other shared things that most blockchains want
- Database, Networking, Mempool, Consensus..
The Client
The Client: Consensus π€
Yes, consensus is not a core part of a blockchain runtime. It is not application logic. It is not something you want to customize.
The consensus protocol is to your runtime what HTTP is to Facebook.
The Client: Database π€
- The client is in charge of storing the data, but has no meaningful way to interpret it.
- The database, from the client's PoV, is a untyped, opaque, key-value storage.
- The runtime knows which key means what.
A few exceptions exist, like
:code
being the key for the Wasm blob.
The Client: Database π€
Because the runtime can change independently!
SMOLDOT: Compile the Client to Wasm
A marvel of universe π€―.
- (light) Substrate* client compiled to Wasm, by the browser.
- Itself executing another Wasm blob, the aforementioned runtime.
Communication Paths
Communication Paths
Example: SCALE vs JSON
- SCALE is an efficient, non-descriptive, binary encoding format, used EXTENSIVELY in the Substrate ecosystem.
Example: SCALE vs JSON
use parity_scale_codec::{Encode};
#[derive(Encode)]
struct Example {
number: u8,
is_cool: bool,
optional: Option<u32>,
}
fn main() {
let my_struct = Example {
number: 42,
is_cool: true,
optional: Some(69),
};
println!("{:?}", my_struct.encode());
// [42, 1, 1, 69, 0, 0, 0]
println!("{:?}", my_struct.encode().len());
// 7
}
Example: SCALE vs JSON
use serde::{Serialize};
#[derive(Serialize)]
struct Example {
number: u8,
is_cool: bool,
optional: Option<u32>,
}
fn main() {
let my_struct = Example {
number: 42,
is_cool: true,
optional: Some(69),
};
println!("{:?}", serde_json::to_string(&my_struct).unwrap());
// "{\"number\":42,\"is_cool\":true,\"optional\":69}"
println!("{:?}", serde_json::to_string(&my_struct).unwrap().len());
// 42
}
Substrate: The Gaming Console of Blockchains!

Substrate Client

Substrate Runtime
Substrate: VHDL and FPGA analogy.
Substrate and Polkadot
Substrate and Smart Contracts
Substrate and Smart Contracts
- So a SMOLDOT instance, syncing a substrate based chain which has pallet-contracts is ...π€
Substrate and Smart Contracts

- The browser is executing:
- a Wasm blob (smoldot)
- that executes a Wasm blob (runtime)
- that executes a Wasm blob (contract)
Substrate and Smart Contracts

Substrate and Smart Contracts
- So when should you write with a smart contract (Ink!) and when a Runtime (FRAME)?
Technical Freedom vs Ease
Rest of This Module! π
Lecture
- Day 0:
- Introduction
- Folder structure.
- Day 1:
- Wasm Meta-Protocol
- SCALE, JSON-RPC
- Day 2:
- Storage
- Substrate CLI, TX-Pool
Activity
- Day 0:
- Compiling Rust to Wasm
- Day 1:
- FRAME-less Activity
- Day 2:
- FRAME-less Activity
Additional Resources! π
Check speaker notes (click "s" π)