Term

Ethereum Virtual Machine (EVM)

The Ethereum Virtual Machine (EVM) is the runtime environment for executing smart contracts on the Ethereum blockchain and EVM-compatible networks.

Type:
eth
platform
smart contract
Also known as:
EVM
1
basic

The Ethereum Virtual Machine (EVM) is the runtime environment in which smart contracts execute on the Ethereum blockchain. It's a decentralized virtual machine that handles the internal state and computation of Ethereum. The EVM is responsible for executing the logic encoded in smart contracts, maintaining the global state of the network, and ensuring deterministic execution across all nodes in the network. It serves as the computational engine that powers Ethereum's programmable blockchain functionality.

Example 1.1

"Smart contracts written in Solidity are compiled to EVM bytecode and executed on the EVM, enabling applications ranging from decentralized finance (DeFi) to non-fungible token (NFT) marketplaces."

2
technical

The EVM is Turing-complete, meaning it can execute any algorithm given enough resources. It operates on its own unique instruction set, and smart contracts written in high-level languages like Solidity or Vyper are compiled down to EVM bytecode. The EVM architecture consists of a stack-based execution model with a memory space, storage for persistent data, and environment variables providing context about the blockchain state. This architecture ensures that contract execution remains deterministic across all nodes in the network.

Example 2.1

"The EVM's Turing-completeness allows developers to write complex smart contracts with loops, conditionals, and other control structures. This contrasts with Bitcoin and Bitcoin Cash's more limited scripting language, which prioritizes security and simplicity over computational expressiveness."

3
security

The EVM is designed to be isolated from the network and file system, which makes it a secure environment for running untrusted code. Each smart contract runs in its own isolated environment and can't interact with other contracts unless explicitly programmed to do so. This sandboxing approach limits the potential damage from malicious code and prevents contracts from accessing unauthorized data. Despite these security features, smart contract vulnerabilities have led to significant exploits, highlighting the importance of thorough auditing and formal verification.

Example 3.1

"The EVM's isolation provides a layer of security, as a bug in one smart contract can't affect others unless they're programmed to interact. This differs from UTXO-based systems like Bitcoin Cash, which use a different security model focused on script validation rather than virtual machine execution."

4
gas

Every operation on the EVM requires a certain amount of "gas", which is paid in ETH. This mechanism prevents spam on the network and incentivizes miners to include transactions in the blockchain. Gas costs vary based on the computational complexity of operations, with simple operations like addition costing little gas and more complex operations like storage writes costing more. This economic model ensures that network resources are used efficiently and that users pay proportionally to their computational demands.

Example 4.1

"When you execute a smart contract on the EVM, you have to pay gas fees, which are calculated based on the complexity of the operations the contract performs. During network congestion, these fees can become prohibitively expensive, which has led some users to explore alternatives like Bitcoin Cash for simple payment transactions with consistently low fees."

5
compatibility

The EVM has become a standard beyond Ethereum itself, with many blockchains adopting EVM compatibility to leverage Ethereum's developer ecosystem and tooling. These "EVM-compatible" chains can execute the same smart contracts as Ethereum but often with different consensus mechanisms, block times, or fee structures. This compatibility has created a multi-chain ecosystem where developers can deploy the same code across numerous networks, each with its own characteristics.

Example 5.1

"Blockchains like Binance Smart Chain, Avalanche, and Polygon are EVM-compatible, allowing developers to deploy Ethereum smart contracts with minimal modifications. This interoperability creates bridges between different blockchain ecosystems, though UTXO-based systems like Bitcoin Cash follow a fundamentally different architecture."

All terms and definitions may update as the Cryptionary improves.