Local Solana Development with Rust, Python and Django REST framework
This course introduces you to building Solana smart contracts (aka programs) locally using Rust. We will invoke those programs using Python clients and build a Django REST API that interfaces with the local Solana cluster.
It is a fast-paced course aimed at facilitating the transition from web2 to web3 development with Solana.
We'll first brush up on some web3 knowledge covering concepts such as keypairs, wallets, JSON-RPC and PoH. This is followed by a compact primer on Rust for web3 purposes. Here we'll learn about Structs, Enums, Macros and Traits, commonly used in program development.
We'll then start building Solana programs and deploying them to a local Solana cluster. These programs range from a simple "Hello world!" to one that allows you to store data on the cluster using PDAs (Program Derived addresses).
After program deployment, we'll attempt to invoke them from Python. This includes sending data that the Solana program will store on the blockchain.
In the final lecture, we will build a Django REST API that, unlike web2 applications that interface with a database on the backend, will interface with the Solana cluster to write data on the blockchain.