sBPF BooksBPF Book
Program Development

Example Programs

Real sBPF programs to read alongside this book.

Beginner

From solana-developers/program-examples. Each lives at basics/<name>/asm/ and ships alongside Native Rust, Anchor, Steel, and Poseidon implementations of the same problem.

ProgramWhat it shows
hello-solanaMinimum viable program; sol_log_; .rodata
checking-accountsSigner / writable / owner / pubkey validation
create-accountCPI to CreateAccount, no PDA signing
transfer-solCPI to System Program Transfer

Reference

From blueshift-gg/sbpf examples/.

ProgramWhat it shows
sbpf-asm-cpiA CPI walkthrough with the four structures laid out explicitly
sbpf-asm-counterPDA + state + dispatch + account creation with PDA signing
sbpf-asm-vaultSOL vault with PDA signing across deposit and withdraw
sbpf-asm-escrow (community)SPL Token CPIs, multi-PDA state machine

On this page

Edit on GitHub