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.
Adblocker Detected
It looks like you're using an adblocker. Our website relies on ads to keep running. Please consider disabling your adblocker to support us and access the content.
Using Solana's Program Library: Building Applications with Pre-Built Functions
After writing your program, you need to build and deploy it on the Solana network. First, build your program:
anchor buildCreating a Token on Solana
Note the token mint address returned by this command, as you'll need it for minting and transferring tokens.
Create a token account to hold your newly created tokens. This account is associated with your wallet:
Installing Solana on Ubuntu
To make this change permanent, add the above line to your ~/.bashrc or ~/.zshrc file and source it:
echo 'export PATH="$HOME/solana/target/release:$PATH"' >> ~/.bashrc
source ~/.bashrc