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

This command will deploy your program to the Solana cluster you’ve configured (either localnet, devnet, or mainnet).

To interact with your newly deployed program, you can write a simple client script in Rust or JavaScript using Solana's web3.js library. Here's an example using JavaScript:

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.