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

Now, let’s create a simple program that interacts with the SPL Token Program to mint a new token.

Open the lib.rs file inside the programs/solana-spl-tutorial/src directory and replace its content with the following code:

Creating a Token on Solana

Tutorial August 09, 2024
bash rust

Create a token account to hold your newly created tokens. This account is associated with your wallet:

   spl-token create-account <TOKEN_MINT_ADDRESS>

Installing Solana on Ubuntu

Tutorial August 09, 2024
bash rust

   git checkout v1.16.10

Replace v1.16.10 with the latest stable version if a newer version is available.