DeveloperBreeze

Dapp Development Development Tutorials, Guides & Insights

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

Tutorial
javascript bash +2

Building a Simple Solana Smart Contract with Anchor

Check that Anchor is installed correctly:

   anchor --version

Aug 09, 2024
Read More
Tutorial
bash rust

Creating a Token on Solana

If you don't have a Solana wallet, create one using the following command:

   solana-keygen new --outfile ~/my-solana-wallet.json

Aug 09, 2024
Read More
Tutorial
bash rust

Installing Solana on Ubuntu

You should see the Solana version number printed in the terminal, indicating a successful installation.

You can further configure the Solana CLI for specific networks (e.g., Mainnet, Devnet, Testnet). By default, Solana uses the Devnet:

Aug 09, 2024
Read More