Recap: What is Solana’s Account Model

When programming on Solana, we engage in two main activities. First, we establish the state of our program, which represents the account model or data model that our users will engage with. Second, we define instructions that dictate the guidelines for altering and modifying the state. These instructions outline how the state can change and mutate.

<aside> 💡 Recommended Reading Materials: SPL Token Program

</aside>

What is a PDA?

What are SPL tokens?

Create your token via SDK

Summary

Creating new tokens may be difficult and prone for errors. Composability of audited programs accelerates and simplifies development process:

New token can be created and managed by interacting with a standard Token Program. With Solana Program Library, the Token Program defines new tokens through mint accounts and manages user token balances through token accounts.