Ouma Godwin
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    ![ChatGPT Image Jul 21, 2025, 09_03_51 AM(1)](https://hackmd.io/_uploads/Hk0s_IjUee.png) # Unpacking the EVM: Opcodes – The DNA of Ethereum Smart Contracts 🧬 The Ethereum blockchain, often described as a "world computer," is powered by the **Ethereum Virtual Machine (EVM)**. If you've ever written a smart contract in Solidity, you've interacted with the EVM, even if you didn't realize it. But what exactly makes the EVM tick? The answer lies in its fundamental building blocks: **opcodes**. This article will pull back the curtain on EVM opcodes, explaining what they are, how they work, and why understanding them is invaluable for every Ethereum developer, whether you're just starting your journey or already navigating complex DeFi protocols. ## What are Opcodes? The EVM's Native Tongue 🗣️ Imagine your computer's Central Processing Unit (CPU). It doesn't understand human languages or even high-level programming languages like Python or JavaScript directly. Instead, it processes **machine code** – a series of very specific, low-level instructions. The EVM works in a similar way. When you write a smart contract in Solidity (or Vyper, or Yul), it's compiled down into **EVM bytecode**. This bytecode is a sequence of **opcodes**, which are single-byte instructions that the EVM can directly understand and execute. Think of opcodes as the EVM's "machine language" or its "DNA." Each opcode tells the EVM to perform a very specific, atomic action. These actions can range from basic arithmetic operations to complex interactions with the blockchain's state. **Why do we need them?** While high-level languages like Solidity make smart contract development accessible, they abstract away the low-level execution details. Understanding opcodes gives you: * **Deeper Insight:** A clear picture of how your code actually runs on the blockchain. * **Gas Optimization:** The ability to write more efficient and cheaper contracts by minimizing costly operations. * **Enhanced Debugging:** Pinpointing issues at the root cause, beyond just Solidity error messages. * **Security Audits:** Identifying potential vulnerabilities that might not be obvious in high-level code. ## The EVM's Workspace: Stack, Memory, and Storage 🏗️ Before we dive into specific opcodes, it's crucial to understand the three primary areas the EVM uses to store and manipulate data during smart contract execution: ### 1\. The Stack (Volatile, Fast) The EVM is a **stack-based machine**. This means it performs operations by pushing values onto a stack (a "Last-In, First-Out" or LIFO data structure) and then popping them off for computations. * **Think of it like:** A stack of plates. You can only add or remove plates from the top. * **Characteristics:** * **Volatile:** Data on the stack is temporary and cleared after each function execution. * **Limited Size:** The stack has a maximum depth of 1024 items. Each item is a 32-byte (256-bit) word. * **Primary Use:** Holding function arguments, local variables, and intermediate computation results. ### 2\. Memory (Volatile, Cheaper than Storage) Memory is a temporary, linear byte-addressable space that smart contracts can use during execution. * **Think of it like:** Your computer's RAM. It's used for temporary data needed during a program's run. * **Characteristics:** * **Volatile:** Like the stack, memory is cleared at the end of each external function call. * **Expandable:** Memory can expand, but doing so incurs gas costs that scale quadratically. * **Primary Use:** Storing more complex data structures like dynamic arrays and strings that don't fit directly on the stack. ### 3\. Storage (Persistent, Expensive) 💰 Storage is the persistent, key-value store of a smart contract. This is where your contract's state variables (like balances in a token contract or ownership records) are permanently saved on the blockchain. * **Think of it like:** Your computer's hard drive. Data here persists even after the computer is turned off. * **Characteristics:** * **Persistent:** Data written to storage remains on the blockchain indefinitely. * **Key-Value Map:** It's a mapping from 256-bit "slots" (keys) to 256-bit "values." * **Most Expensive:** Operations involving storage (reading or writing) are significantly more expensive in terms of gas compared to stack or memory operations, as they change the global state of the blockchain. ## How Opcodes Work: The Execution Cycle ⚙️ The EVM executes bytecode sequentially, one opcode at a time. A **Program Counter (PC)** keeps track of the next instruction to be executed. Here's a simplified look at the process: 1. **Fetch:** The EVM reads the opcode pointed to by the Program Counter. 2. **Decode:** It identifies which operation the opcode represents. 3. **Execute:** It performs the operation. This might involve: * Popping values from the stack. * Performing arithmetic. * Reading from or writing to memory or storage. * Pushing results back onto the stack. * Changing the Program Counter (e.g., for `JUMP` or `JUMPI` opcodes). * Consuming a specific amount of **gas** for that operation. 4. **Increment PC:** Unless a jump instruction occurs, the Program Counter increments to the next opcode. This cycle repeats until the contract execution finishes (e.g., with a `STOP` or `RETURN` opcode) or encounters an error (e.g., `REVERT` or `OUTOFGAS`). ## Common Opcodes for Beginners 👶 Let's look at some fundamental opcodes and how they relate to the Solidity code you might write. ### 1\. Stack Manipulation These opcodes directly interact with the stack. * `PUSHx` (e.g., `PUSH1`, `PUSH32`): Pushes a constant value (1 to 32 bytes) onto the stack. * **Solidity equivalent:** Declaring a literal value: `uint256 x = 10;` (where 10 would likely be pushed). * `POP` (0x50): Removes the top item from the stack. * **Solidity equivalent:** When a variable or intermediate result is no longer needed. * `DUPx` (e.g., `DUP1`, `DUP2`): Duplicates an item from the stack (e.g., `DUP1` duplicates the top item, `DUP2` duplicates the second item). * **Solidity equivalent:** Reusing a variable's value without re-fetching it. * `SWAPx` (e.g., `SWAP1`, `SWAP2`): Swaps the position of two items on the stack. * **Solidity equivalent:** Rearranging values for subsequent operations. ### 2\. Arithmetic Operations These perform mathematical computations on values popped from the stack. * `ADD` (0x01): Pops two values, adds them, and pushes the result. * **Solidity equivalent:** `a + b` * `MUL` (0x02): Pops two values, multiplies them, and pushes the result. * **Solidity equivalent:** `a * b` * `SUB` (0x03): Pops two values, subtracts the second from the first, and pushes the result. * **Solidity equivalent:** `a - b` * `DIV` (0x04): Pops two values, divides the first by the second, and pushes the quotient. * **Solidity equivalent:** `a / b` ### 3\. Memory Operations These interact with the volatile memory area. * `MSTORE` (0x52): Pops an offset and a value from the stack, and stores the value at the specified memory offset. * **Solidity equivalent:** Assigning a value to a `memory` variable, e.g., `string memory greeting = "Hello";` * `MLOAD` (0x51): Pops an offset from the stack, loads the 32-byte word from that memory location, and pushes it onto the stack. * **Solidity equivalent:** Reading a value from a `memory` variable. ### 4\. Storage Operations These interact with the persistent storage area. These are typically the most gas-expensive opcodes. * `SSTORE` (0x55): Pops a key (slot) and a value from the stack, and stores the value permanently at that storage slot. * **Solidity equivalent:** Assigning a value to a state variable, e.g., `uint256 public myNumber = 100;` * `SLOAD` (0x54): Pops a key (slot) from the stack, loads the 32-byte word from that storage slot, and pushes it onto the stack. * **Solidity equivalent:** Reading a value from a state variable. ### 5\. Control Flow These opcodes alter the Program Counter, allowing for conditional execution or looping. * `JUMP` (0x56): Pops a destination address from the stack and sets the Program Counter to that address, an unconditional jump. * `JUMPI` (0x57): Pops a destination address and a condition from the stack. If the condition is true (non-zero), it jumps; otherwise, it proceeds to the next instruction. * **Solidity equivalent:** `if`, `for`, `while` statements. ### 6\. Call Data Operations These interact with the `calldata`, which is the read-only, immutable input data of a transaction. * `CALLDATALOAD` (0x35): Pops an offset from the stack, loads 32 bytes from `calldata` starting at that offset, and pushes it onto the stack. * **Solidity equivalent:** Accessing function parameters. ## Opcodes for the Seasoned Ethereum Dev: Mastery & Optimization 👨‍💻 For experienced developers, diving into opcodes isn't just about understanding the basics; it's about pushing the boundaries of gas optimization, advanced debugging, and even custom EVM tooling. ### Gas Costs: The True Cost of Opcodes ⛽ Every single opcode has an associated **gas cost**, which is the "fuel" required to execute it. This cost reflects the computational resources (CPU, memory, storage access) consumed. Gas costs are critical because they directly translate to the Ether (or native token of an EVM-compatible chain) a user pays for a transaction. * **Understanding the Yellow Paper / EIPs:** The official Ethereum Yellow Paper defines the initial gas costs. However, these costs are subject to change through Ethereum Improvement Proposals (EIPs). Staying updated on these EIPs is crucial for accurate gas analysis. For instance, `SLOAD` (reading from storage) has a dynamic gas cost that differentiates between "warm" (already accessed in the current transaction) and "cold" (first-time access) storage slots. * **Impact of Storage vs. Memory vs. Stack:** * **Stack operations** are generally the cheapest. * **Memory operations** are more expensive than stack, and their cost increases with memory usage (due to "memory expansion costs"). * **Storage operations (`SLOAD`, `SSTORE`)** are by far the most expensive because they modify the global state of the blockchain, requiring persistent writes across all nodes. A `SSTORE` from zero to non-zero is particularly costly. **Optimization Strategies at the Opcode Level:** * **Minimize `SSTORE` Operations:** The biggest gas savings often come from reducing state writes. If you can compute a value in memory and only store the final result once, do so. * **Variable Packing:** Solidity compiles state variables into 32-byte storage slots. By carefully ordering your state variables (especially `uint`s, `bytes`, or `bool`s smaller than 32 bytes), the compiler can pack multiple variables into a single storage slot, drastically reducing `SSTORE` and `SLOAD` operations. * Example: `uint8 a; uint8 b; uint8 c;` will use one slot if declared consecutively, whereas `uint256 x; uint8 a; uint256 y;` would use three. * **Use `memory` vs. `storage` wisely:** For temporary data or function parameters, always prefer `memory`. Only use `storage` for data that needs to persist across transactions. * **Short-circuiting Logic:** In conditional statements (`&&`, `||`), ensure that the most likely or cheapest condition comes first to potentially avoid executing more expensive operations. This translates directly to `JUMPI` instructions that skip blocks of opcodes. * **Inline Assembly (Yul):** For extreme gas optimization or highly specific low-level control, developers can write parts of their Solidity contracts using Yul (Solidity's intermediate language) or raw inline assembly. This allows direct manipulation of opcodes, stack, memory, and gas, but it comes at the cost of readability, maintainability, and increased risk of bugs. ### Advanced Opcodes & Security Implications 🔒 Some opcodes have significant security implications that experienced developers must understand: * **`CALL` (0xF1), `DELEGATECALL` (0xF4), `STATICCALL` (0xFA):** These opcodes enable contracts to interact with other contracts. * **`CALL`:** The most common. Executes code in the context of the *called* contract. Crucial for understanding **reentrancy attacks** (e.g., DAO hack), where a malicious contract can re-enter a vulnerable function before its state is updated. * **`DELEGATECALL`:** Executes code in the context of the *calling* contract, preserving `msg.sender` and `msg.value`. This is fundamental for **proxy patterns** (upgradable contracts) but also a common source of critical vulnerabilities if the target address or calldata is not properly validated (e.g., Parity multi-sig hack). * **`STATICCALL`:** Similar to `CALL` but prevents any state modifications in the called contract. Useful for reading data from other contracts safely. * **`SELFDESTRUCT` (0xFF):** Causes the contract to self-destruct, sending all its remaining Ether to a specified address. Can be misused if not properly controlled. * **`CREATE` (0xF0), `CREATE2` (0xF5):** Opcodes for deploying new contracts from within a smart contract. `CREATE2` is particularly interesting for deterministic contract addresses. ### Debugging with Opcodes 🛠️ When high-level debugging tools aren't enough, understanding the opcode trace becomes invaluable. Tools like: * **Remix IDE's Debugger:** Allows you to step through compiled bytecode, view the stack, memory, storage, and gas consumption at each opcode. * **Tenderly Debugger:** Offers a powerful visual debugger that traces transactions at the opcode level, showing state changes, calls, and gas usage. * **`debug_traceCall` / `debug_traceTransaction` RPC methods:** Ethereum clients expose these methods to get a detailed, opcode-level trace of a transaction or a simulated call. This is incredibly useful for deep analysis and identifying subtle bugs or gas inefficiencies. ## The Journey from Solidity to Opcodes 🗺️ To truly appreciate opcodes, it helps to see how your Solidity code transforms. Consider this simple Solidity function: ```solidity pragma solidity ^0.8.0; contract SimpleAdder { function add(uint256 a, uint256 b) public pure returns (uint256) { return a + b; } } ``` When compiled, the `add` function will result in bytecode that the EVM executes. A simplified representation of the core logic might involve opcodes like: 1. `CALLDATALOAD`: Loads `a` from the transaction's input `calldata` onto the stack. 2. `CALLDATALOAD`: Loads `b` from the transaction's input `calldata` onto the stack. 3. `ADD`: Pops `a` and `b` from the stack, adds them, and pushes the `sum` onto the stack. 4. `MSTORE`: Stores the `sum` in memory (preparing it for return). 5. `RETURN`: Returns the data from memory to the caller. While the actual bytecode would be much more complex (involving setup, function selector checks, error handling, etc.), this illustrates the direct mapping from a high-level operation to low-level EVM instructions. ## Conclusion: Why Go Low-Level? 🚀 Understanding EVM opcodes is like learning the assembly language of the Ethereum blockchain. For beginners, it demystifies the "magic" behind smart contracts and provides a solid foundation. For experienced developers, it's an indispensable skill for writing highly optimized, secure, and performant contracts, debugging complex issues, and even building advanced tools. While you won't be writing entire contracts in opcodes, having this deep-seated knowledge empowers you to: * **Write better Solidity:** Anticipate gas costs and structure your code for efficiency. * **Debug smarter:** Trace execution flow and pinpoint exact points of failure. * **Perform thorough audits:** Identify subtle vulnerabilities hidden in the bytecode. So, whether you're just starting your Web3 journey or already a seasoned traveler, take the time to peek under the hood of the EVM. The world of opcodes awaits, ready to unlock a new level of mastery in decentralized application development.

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully