Ethereum Virtual Machine
Eksekusi bytecode
Ethereum Virtual Machine adalah pelajaran Web3 & DApp Development Fundamentals gratis di CoddyKit. Ini adalah pelajaran 1 dari 4. Kamu bisa membaca pelajaran lengkapnya di bawah secara gratis — lalu praktikkan langsung di browser dengan editor kode bawaan dan tutor AI 24/7. Ini adalah bagian dari jalur belajar Web3 & DApp Development Fundamentals, dan progresmu tersinkronisasi di web dan aplikasi CoddyKit. Kursus Web3 & DApp Development Fundamentals mencakup 4 pelajaran total.
Bagian dari pelajaran ini belum diterjemahkan dan ditampilkan dalam bahasa Inggris.
What Is the EVM?
The Ethereum Virtual Machine (EVM) is the runtime that executes smart contract code on every Ethereum node.
It is a sandboxed, deterministic computer shared by the whole network.
A Global Computer
The EVM is often called a world computer. Every full node runs the same EVM and processes the same transactions, arriving at the same result.
This shared execution is what gives Ethereum a single, agreed-upon state.
Stack-Based Machine
The EVM is a stack machine: operations push and pop values from a stack rather than using named registers.
For example, addition pops two values and pushes their sum.
PUSH1 0x05 // stack: [5]
PUSH1 0x03 // stack: [5, 3]
ADD // stack: [8]Bytecode
Smart contracts are deployed as bytecode — a compact sequence of bytes the EVM understands. Solidity source is compiled down to this bytecode.
The EVM never sees your high-level Solidity; it only runs bytecode.
Solidity source
| (compiler: solc)
v
EVM bytecode (0x6080604052...)
| (deployed)
v
EVM executes itOpcodes
Bytecode is made of opcodes — single-byte instructions like ADD, MUL, SLOAD, and JUMP.
Each opcode performs one low-level operation and has a fixed gas cost. We explore opcodes in a later lesson.
Deterministic Execution
The EVM is fully deterministic: the same inputs always produce the same outputs on every node.
This is essential — if nodes disagreed on results, the network could never reach consensus on the state.
256-bit Word Size
The EVM operates on 256-bit words (32 bytes). This large size suits cryptographic operations like hashing and elliptic-curve math.
It is unusual compared to the 32- or 64-bit words of ordinary CPUs.
Gas Metering
The EVM meters gas as it runs. Each opcode deducts its gas cost, and execution halts if gas runs out.
This guarantees termination and prevents any contract from running forever.
The Sandbox
EVM execution is sandboxed: contract code cannot access the network, filesystem, or other processes.
It can only read and write blockchain state. This isolation keeps execution predictable and secure.
EVM-Compatible Chains
Many other blockchains run the EVM or a clone of it — Polygon, BNB Chain, Avalanche C-Chain, and Arbitrum among them.
This EVM compatibility lets developers deploy the same contracts across many chains.
Putting It Together
The EVM is a deterministic, sandboxed, stack-based virtual machine that executes contract bytecode on every node, metering gas and operating on 256-bit words.
Its determinism is the foundation of network consensus.
Quick Check
Test your EVM knowledge.
Recap: The EVM
You learned that:
- The EVM runs smart contract bytecode on every node
- It is a stack-based, deterministic, sandboxed machine
- Solidity compiles to bytecode made of opcodes
- It uses 256-bit words and meters gas
Next: EVM data locations.
Pertanyaan yang Sering Diajukan
Apakah pelajaran “Ethereum Virtual Machine” gratis?
Ya — teks lengkap “Ethereum Virtual Machine” gratis dibaca di sini di web. Untuk praktiknya secara interaktif (editor kode bawaan dan tutor AI 24/7) dan buka sisa kursus Web3 & DApp Development Fundamentals, upgrade ke CoddyKit PRO. Kursus Web3 & DApp Development Fundamentals mencakup 4 pelajaran total.
Apa yang akan aku pelajari di “Ethereum Virtual Machine”?
Eksekusi bytecode Kamu berlatih Web3 & DApp Development Fundamentals dengan kode praktik yang langsung kamu jalankan di browser, dan tutor AI 24/7 menjawab pertanyaanmu saat kamu mengerjakan pelajaran ini.
Apakah aku perlu pengalaman untuk memulai Web3 & DApp Development Fundamentals?
Tidak diperlukan pengalaman sebelumnya. Web3 & DApp Development Fundamentals di CoddyKit dirancang untuk pemula hingga pelajar tingkat lanjut, jadi kamu bisa memulai di sini atau dari awal dan belajar sesuai kecepatan kamu sendiri. Ini adalah pelajaran 1 dari 4.
Berapa lama pelajaran “Ethereum Virtual Machine” memakan waktu?
Sebagian besar pelajaran CoddyKit memakan waktu sekitar 5–10 menit. Setiap pelajaran ringkas dan interaktif, jadi kamu membuat kemajuan stabil dan melanjutkan dari tempat kamu tinggalkan di web dan aplikasi.
Bisakah aku menulis dan menjalankan kode dalam pelajaran Web3 & DApp Development Fundamentals ini?
Ya. Setiap pelajaran Web3 & DApp Development Fundamentals menyertakan editor kode bawaan, jadi kamu menulis dan menjalankan kode nyata langsung di browser dan mendapatkan umpan balik AI instan — tidak diperlukan penyiapan lokal.
Semua pelajaran dalam kursus ini
- Ethereum Virtual Machine
- Storage, Memory, Stack
- Opcode
- Akun dan State