DeveloperBreeze

Solana Cli Development Tutorials, Guides & Insights

Unlock 3+ expert-curated solana cli tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your solana cli skills on DeveloperBreeze.

Tutorial
rust

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

After writing your program, you need to build and deploy it on the Solana network. First, build your program:

anchor build

Aug 27, 2024
Read More
Tutorial
bash rust

Creating a Token on Solana

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

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

Aug 09, 2024
Read More
Tutorial
bash rust

Installing Solana on Ubuntu

To make this change permanent, add the above line to your ~/.bashrc or ~/.zshrc file and source it:

   echo 'export PATH="$HOME/solana/target/release:$PATH"' >> ~/.bashrc
   source ~/.bashrc

Aug 09, 2024
Read More