Perelyn aca7380e1b feat: remove steel examples (#420) 2 周之前
..
anchor 40aed81963 chore: bumped versions (#378) 4 月之前
native 4b8594ec04 chore: solana native and steel bump to v2.1 (#382) 4 月之前
README.md a2831045ac reorg to match readme 3 年之前

README.md

Rent

Ah, rent. Everybody's favorite thing to deal with.

Luckily, rent is much less daunting on Solana than in the real world (sorry, best we could do).


Simply put, all storage on Solana costs rent. After all, this thing ain't free!

Rent is typically a small amount and if you load your account with enough rent for two years it's actually exempt! That's right: if your account holds more than the cost of rent for two years, that account is not charged any rent.


Rent itself is based off of the size of the data you're seeking to store in the account.

Let's take a look.