DEV Community

Peter Okoh
Peter Okoh

Posted on

WEEK 4 #100DaysOfSolana: LAMPORTS IN SOLANA

When I first started digging into Solana accounts, those fields,lamports, owner, data, executable,looked like low-level noise.

But they’re actually the real “anatomy” of everything on-chain.

lamports is simply the balance of an account. Not abstract value, actual rent-paying power that keeps the account alive on the network.

owner tells you "who controls the rules." It’s not about possession, it’s about which program has the authority to read, write, and mutate that account’s state.

data is where the real story lives. It’s the storage layer—custom bytes that programs interpret however they were designed to. Same field, different meaning depending on the program behind it.

And then there’s executable. This one flips the perspective: is this account just data, or is it a program that can actually run instructions?

Once these clicked for me, Solana stopped feeling like “magic transactions” and started looking like a structured system where every account has a job.

And honestly, that shift changes everything.

Top comments (0)