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.

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

Tutorial August 27, 2024
rust

Before diving into Solana's Program Library, ensure you have the following:

Solana's Program Library (SPL) is a collection of on-chain programs (smart contracts) that provide reusable functionality for developers. These programs handle a wide range of use cases, such as token creation, decentralized exchanges, and more. By using SPL, you can avoid writing common functionalities from scratch, allowing you to focus on the unique aspects of your dApp.

Creating a Token on Solana

Tutorial August 09, 2024
bash rust

Solana is known for its high throughput and low transaction costs, making it an excellent platform for creating and managing custom tokens. In this tutorial, we'll use the Solana CLI and the SPL Token Program to create, mint, and transfer a custom token on the Solana Devnet. You'll learn how to interact with the blockchain using the command-line interface and manage your tokens effectively.

By the end of this tutorial, you will:

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.