DeveloperBreeze

Blockchain Development Programming Tutorials, Guides & Best Practices

Explore 30+ expertly crafted blockchain development tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

Using Solana's Program Library: Building Applications with Pre-Built Functions

Tutorial August 27, 2024
rust

Open your Cargo.toml file and add the following dependencies:

[dependencies]
anchor-lang = "0.22.0"
spl-token = "3.2.0" # Replace with the latest version

Creating a Token on Solana

Tutorial August 09, 2024
bash rust

   spl-token create-token

Note the token mint address returned by this command, as you'll need it for minting and transferring tokens.

Installing Solana on Ubuntu

Tutorial August 09, 2024
bash rust

Solana is a high-performance blockchain supporting fast transactions and low fees. Setting up a Solana node on your Ubuntu machine allows you to develop and deploy decentralized applications (dApps) on the Solana network. This tutorial will guide you through installing Solana on Ubuntu, from initial setup to verifying your installation.

Before starting, ensure you have the following: