DeveloperBreeze

Solana Development Tutorials, Guides & Insights

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

Tutorial
rust

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

This will create a new Anchor project with a predefined directory structure.

Next, we'll add dependencies for the SPL programs we intend to use. For example, if we're working with the SPL Token Program, we'll add the spl-token crate.

Aug 27, 2024
Read More
Tutorial
javascript nodejs

Tracking Solana Address for New Trades and Amounts

Create a new file called index.js and add the following code to connect to the Solana blockchain:

const solanaWeb3 = require('@solana/web3.js');

// Connect to the Solana Devnet
const connection = new solanaWeb3.Connection(
  solanaWeb3.clusterApiUrl('devnet'),
  'confirmed'
);

console.log('Connected to Solana Devnet');

Aug 09, 2024
Read More
Tutorial
javascript nodejs

Tracking Newly Created Tokens on Solana

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:

Aug 09, 2024
Read More
Tutorial
javascript json

Fetching Address Details from Solana

Step 4: Fetch Transaction History

To fetch the transaction history of the wallet, add the following function:

Aug 09, 2024
Read More
Tutorial
javascript bash +2

Building a Simple Solana Smart Contract with Anchor

   nano tests/counter.js

Add the following JavaScript code:

Aug 09, 2024
Read More