๐ Solana Overview
Solana is a high-throughput L1 blockchain optimized for low latency and low fees. Programs (smart contracts) are compiled to BPF bytecode and run on the Solana runtime; state is stored in accounts owned by programs.
๐ฏ Why Solana
- Throughput โ Thousands of TPS; sub-second finality
- Cost โ Very low fees per transaction
- Ecosystem โ Metaplexย (NFTs), Anchorย (framework), Phantomย , Solana Web3.jsย
๐ Core Concepts
| Concept | Description |
|---|---|
| Account | Data stored on-chain: balance (SOL), owner, data blob. See Accounts. |
| Program | Immutable on-chain code (like a smart contract). See Programs. |
| Transaction | One or more instructions; each instruction calls a program with accounts and data. |
| Cluster | Network: mainnet-beta, devnet, testnet. |
๐ Official Resources
๐ In This Section
- Accounts โ How data and SOL are stored on-chain
- Programs โ On-chain code and how to interact
- Metaplex (NFTs) โ NFT standard and tooling
Last updated on