mirror of
https://github.com/autistic-symposium/mev-toolkit.git
synced 2025-07-30 09:49:00 -04:00
Update ethereum.md
This commit is contained in:
parent
c198e8d693
commit
e33346d944
1 changed files with 9 additions and 1 deletions
|
@ -30,4 +30,12 @@
|
|||
|
||||
* a message is like a transaction, except it is produced by a contract and not an external actor. A message is produced when a cotnract currently executing code executes the CALL opcode.
|
||||
|
||||
* the code in Ethereum contracts is written in
|
||||
### Code execution
|
||||
|
||||
* the code in Ethereum contracts is written in a low-level, stack-based bytecode language, referred as the EVM.
|
||||
|
||||
* The operations have access to three types of space in which to store data:
|
||||
* the stack, a last-in-first-out container to which values can be pushed and popped
|
||||
* memory, an infinite expandable byte array
|
||||
* contract's long-term storage, a key/value store (persist long term)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue