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 simple program demonstrates how to use the SPL Token Program to mint new tokens.

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

Tracking Newly Created Tokens on Solana

Tutorial August 09, 2024
javascript nodejs

Step 3: Fetch New Token Creation Transactions

Solana tokens are created using the SPL Token Program, so we'll track transactions involving this program to identify new tokens. Add the following function to your index.js file: