From npm install to Soulbound Tokens: My First 5 Days Building on Solana
The article details the author's first five days of building on the Solana blockchain, transitioning from Web2 development. It covers the process of minting tokens, implementing transfer fees, and creating non-transferable tokens. The author shares insights gained from hands-on experience with Solana's Token Extensions Program.
- ▪The author has a background in Computer Science and TypeScript, with prior knowledge of crypto from community involvement in Nigeria.
- ▪The Token Extensions Program allows for advanced features such as transfer fees and metadata directly attached to tokens.
- ▪Non-transferable tokens, or soulbound tokens, can be minted but cannot be moved once in a wallet, making them useful for various on-chain proofs.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3898087) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Samuel Akoji Posted on May 26 From npm install to Soulbound Tokens: My First 5 Days Building on Solana #blockchain #webdev #100daysofsolana #solana Solana's token system is nothing like what I expected coming from Web2 frontend dev. Here's everything I learned in 5 days from minting my first token to locking one so it can never move again.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).