EVM-solidity-consensy

EVM: From Solidity to byte code, memory and storage

View the video: EVM: From Solidity to byte code, memory and storage

Peter Robinson and David Hyland-Wood described how Solidity code is compiled, deployed, and executes in the Ethereum Virtual Machine.
The talk covers EVM opcodes and how code in the EVM uses the various data locations: Stack:
EVM Opcodes pop information from and push data onto the stack.
CallData: Transaction parameters.
Memory: Temporary data store within a transaction.
Storage: Persistent storage that is part of world state. Code: Stores code and static data such as strings.
Logs: Write-only event log output.

You can find the presentation slides here: EVM slides

Total
0
Share