0 votes
in BlockChain by
List and explain the parts of EVM memory.

1 Answer

0 votes
by
List and explain the parts of EVM memory.

The memory of an EVM is divided into three types:

Storage:

Storage values are stored permanently on the Blockchain network

It is extremely expensive

Memory:

Memory is a temporary modifiable storage

It can be accessed only during contract execution. Once the execution is finished, its data is lost

Stack:

A stack is temporary and non-modifiable storage.

Here, when the execution completes, the content is lost.
...