Skip to content

Accounts on Solana

Accounts

On the Solana blockchain, an “account” is a fundamental data structure used to store various types of information.

  1. Data Storage: Accounts on Solana are used to store data required by programs (smart contracts) or to maintain state

  2. Lamports: Accounts hold a balance of Solana’s native cryptocurrency, lamports. Lamports are used to pay for transaction fees and to rent the space that the account occupies on the blockchain.

    Screenshot 2024-08-23 at 4.16.27 PM.png

  3. Programs: On Solana, programs are special accounts that contain executable code. These accounts are distinct from regular data accounts in that they are designed to be executed by the blockchain when triggered by a transaction.

Account with data and lamports but no data - https://explorer.solana.com/address/4GQsAP5jYi5ysGF1GEnWiV3zJHZLRcLWhLCSuim6aAkL

Screenshot 2024-08-23 at 4.22.41 PM.png

Account with lamports but no data - https://solscan.io/account/Eg4F6LW8DD3SvFLLigYJBFvRnXSBiLZYYJ3KEePDL95Q

Screenshot 2024-08-23 at 4.23.20 PM.png

Program

https://solscan.io/account/TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA

Screenshot 2024-08-23 at 4.18.38 PM.png