fbpx

Graph of memory locations in Solidity: storage, calldata, etc…

Julien Klepatch

In Solidity smart contracts, there are 4 memory locations:

  • storage
  • memory
  • stack
  • calldata

They all have different lifetimes and it’s not always easy to choose which one is right. In the below graph I drew their lifetimes against the execution of blocks, smart contract and functions.

Lifetime of memory locations in Solidity

Storage is the only memory location than span across block, i.e it persists to the blockchain.

Memory spans across multiple function executions in the same smart contract.

Stack last only as long as the function it is contained in.

And calldata is only available in the argument of the outer function execution

0 Comments

Leave a Reply

More great articles

Introducing the forum of EatTheBlocks

The lonely developer syndrom... Let's say you have been working on a Dapp / smart contract idea. You know what…

Read Story

Call vs transaction API in Ethereum

In Ethereum, there are 2 APIs to interact with a smart contract: Calls (eth_call) Transactions (eth_sendTransactions) In Solidity (the language…

Read Story

Annoucements made during Devcon4

Devcon4 just finished about a week ago in Prague. The 3-day event attracted thousands of guests this year and the…

Read Story

Never miss a minute

Get great content to your inbox every week. No spam.
[contact-form-7 id="6" title="Footer CTA Subscribe Form"]
Arrow-up