가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Chapter 6

Ethereum Foundations: Accounts, Gas, the EVM, and Smart Contract Execution

Understand the account-based model and programmable execution environment that made smart contracts widely accessible.

Inside this chapter

  1. Ethereum Account Model
  2. Gas, Fees, and Computation
  3. The EVM and Contract Execution
  4. A Simple Contract Example

Series navigation

Study the chapters in order for the smoothest path from beginner blockchain concepts to advanced architecture and production practices. Use the navigation at the bottom of each page to move chapter by chapter.

Tutorial Home

Chapter 6

Ethereum Account Model

Ethereum uses an account-based model rather than the UTXO model. Externally owned accounts are controlled by private keys, while contract accounts are controlled by deployed smart-contract code. Each account has fields such as balance, nonce, and in the case of contracts, bytecode and storage.

Chapter 6

Gas, Fees, and Computation

Because Ethereum supports programmable execution, every operation has a gas cost. Gas measures computation and storage-related effort. Users specify fee parameters, and the network executes transactions only if enough gas is available. This prevents infinite loops and helps allocate scarce block resources.

transaction fee = gas used x effective gas price

Students should understand that expensive on-chain storage and loops are design concerns, not just billing details.

Chapter 6

The EVM and Contract Execution

The Ethereum Virtual Machine is the runtime environment that executes smart-contract bytecode on every validating node. The same transaction input and prior state should produce the same output state across the network, which is why determinism matters. Smart contracts can read state, update storage, emit events, and call other contracts.

Chapter 6

A Simple Contract Example

pragma solidity ^0.8.20;

contract Counter {
    uint256 public value;

    function increment() external {
        value += 1;
    }
}

This small example already introduces important ideas: persistent on-chain storage, externally callable functions, and deterministic state transitions.

Copyright © 2026, WithoutBook.