Solana Programmingwritable
Writable Account
An account marked as writable in an instruction's account metas, allowing the program to modify its data or lamport balance. Non-writable accounts are read-only. The runtime enforces that programs can only modify writable accounts. Writable accounts also affect scheduling—transactions sharing writable accounts cannot run in parallel.
Related terms
2Solana Programming
Account
The fundamental data storage unit on Solana. Every piece of state is stored in an account identified by a 32-byte public...
Solana Programming
Transaction
An atomic unit of execution containing one or more instructions, a recent blockhash, and one or more signatures. All ins...