This example demonstrates how to create an SPl Token on Solana with some metadata such as a token symbol and icon.
Tokens on Solana are - like everything else on Solana - accounts! They:
How they work:
:apple: Mint Account
- stores information about the token.
:handbag: Associated Token Account
- stores a specific balance of the Mint Account (this is essentially a counter).
You can read all about tokens in Solana's official SPL Token documentation.