• Discover
  • Partner with us
  • Chapters
  • Blog

Learn everything about Polkadot and Substrate Development

Introduction to Polkadot

Relay chain, parachains and parathreads

Use cases

Pallets, Getting started with Polkadot Development

Introduction

More details on Substrate

Deep dive substrate

Internal Workings of Substrate

Installation

Building a blockchain

Simulating a complete substrate network

Adding trusted nodes to a network

Authorizing nodes in a network

Monitoring node metrics

Upgrading a running network

Building a Custom Pallet

Smart contracts

Prepare a Local relay chain

Since we have Rust installed, it is now time to build our own blockchain using Substrate and experiencing the powerful features it brings.

Compile and Starting a Substrate Node

The template for a substrate node is present on github and this is the one we need to clone to be able to start a substrate node on our system.

git clone https://github.com/substrate-developer-hub/substrate-node-template

Let’s change our directory and go inside the project that we’ve just cloned - 

  • cd substrate-node-template

It’s a good idea to always create a new branch, so that you can compare with the original project in case something goes wrong or you make some wrong changes to the project by mistake. So, let’s create a new branch -

git switch -c my-new-branch

To start the node, we first need to build and compile this project and then we will get the compiled file that we can run. We will use the “--release” flag to build optimized artifacts.

cargo build --release

Now we will start the node with the following command - 

./target/release/node-template --dev

The –dev flag indicates that we want the node to run in development mode. This option is great during development because it deletes all active data such as keys, blockchain database and networking information when you stop the node.

After this you should see the node running in your terminal

Install and Starting Front-End Template

Substrate also has a front end template for the dashboard so you can interact with the node through a UI and not just through the terminal.

For the front end, yarn and nodeJS are both required.

So first, check your nodejs and yarn versions - 

node --version
yarn --version

If you don’t have these, feel free to install before proceeding.

Just like we cloned the template for the node, we need to clone the project that has the code for the front-end template -

git clone https://github.com/substrate-developer-hub/substrate-front-end-template

We now need to change our directory to the project we just cloned - 

cd substrate-front-end-template

Now we will install the project using yarn - 

yarn install

And now we just have to start the front end with the following command - 

yarn start

http://localhost:8000/ will automatically be opened in your default browser once the front end starts, but you can also open it manually. Now from the dashboard, you will be able to interact with the node.

Transfer Funds

On the dashboard, you will notice the “balances” section, look at the balances of various users such as Dave, who have zero balance.

Now we will try and transfer some money to Dave.

Select dave from the list and transfer at least 1000000000000 to dave.

All we need to do is first check the balances table and see if the value was transferred to Dave and also need to check the events table for the transfer event.

Stop Node

After a successful transfer, you can continue to explore the front-end template components or stop the local Substrate node to erase any state changes you have made. Because you specified the --dev option when you started the node, stopping the local node stops the blockchain and purges all persistent block data so that you can start with a clean state next time you start the node.

To stop the local Substrate node:

  • Return to the terminal shell where the node output is displayed.
  • Press Control-c to terminate the running process.
  • Verify your terminal returns to the terminal prompt in the substrate-node-template directory.

Submission

Submit your work to complete this lesson.

Join the project workspace to share your solution and receive feedback.

Previous
Next

Lesson discussion

Swap insights and ask questions about “Learn everything about Polkadot and Substrate Development”.

Enroll to participate
Start the course to unlock the discussion. Enrolling helps us keep conversations relevant to learners.
WebsiteDiscoverPartner with UsBlogEvents
Discover
CoursesCircleRustSoliditySolanaWeb3 FundamentalsBlockchain Basics
CompanyAbout UsBrand GuidelineFAQsTerms of UsePrivacy PolicyGDPR NoticeCookies
Don't miss any update!

Disclaimer: The information, programs, and events provided on https://risein.com is strictly for upskilling and networking purposes related to the technical infrastructure of blockchain platforms. We do not provide financial or investment advice, nor do we make any representations regarding the value, profitability, or future price of any blockchain or cryptocurrency. Users are encouraged to conduct their own research and consult with licensed financial professionals before engaging in any investment activities. https://risein.com disclaims any responsibility for financial decisions made by users based on the information provided here.

© 2026 Rise In, All rights reserved