계정과 상태
외부 소유 계정과 컨트랙트
계정과 상태은(는) CoddyKit의 무료 Web3 & DApp Development Fundamentals 강의입니다. 이것은 4개 중 4번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Web3 & DApp Development Fundamentals 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Web3 & DApp Development Fundamentals 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
What Is the World State?
Ethereum's world state is the complete snapshot of all accounts and their data at a given moment.
Every transaction transforms this state from one valid version to the next. Accounts are the building blocks of that state.
Two Types of Accounts
Ethereum has exactly two account types:
- Externally Owned Accounts (EOAs) — controlled by private keys (users)
- Contract Accounts — controlled by their code
Both share the same 20-byte address format.
Externally Owned Accounts
An EOA is controlled by a private key. It can initiate transactions: send ETH or call contracts.
EOAs have no code of their own — they are simply key-controlled accounts that humans (or bots) operate.
EOA {
address: 0xAbc...123
balance: 4.2 ETH
nonce: 17
code: none
}Contract Accounts
A contract account holds code (bytecode) and storage. It has no private key and cannot start a transaction on its own.
It only acts when called by an EOA or another contract, running its code in response.
Contract {
address: 0xDef...456
balance: 10 ETH
code: 0x6080604052...
storage: { slot0: ..., slot1: ... }
}The Four Account Fields
Every account stores four fields:
- nonce — transaction count (EOA) or contracts created (contract)
- balance — ETH held, in wei
- storageRoot — hash of the account's storage
- codeHash — hash of the account's code
EOA vs Contract Differences
The key distinction:
- Only EOAs can initiate transactions
- Only contracts have code and significant storage
- An EOA's codeHash is empty; a contract's is not
How State Changes
State changes only through transactions. A transaction can move ETH, deploy a contract, or call a contract that updates its storage.
After each block, the world state advances to a new, agreed-upon version.
The State Trie
All accounts are stored in a giant Merkle Patricia Trie. Its root hash — the state root — is recorded in each block header.
This single hash commits to the entire world state, just as a Merkle root commits to all transactions.
block header includes:
stateRoot -> all accounts
txRoot -> all transactions
receiptRoot -> all receiptsAccount Creation
An EOA effectively exists the moment a key pair is generated — no on-chain step is needed until it transacts.
A contract account is created when a deployment transaction runs constructor code and stores the resulting bytecode.
Smart Contract Interaction
To interact with a contract, an EOA sends a transaction specifying the contract address and the function data.
The EVM looks up the contract's code by its codeHash and executes it, possibly updating storage.
Putting It Together
Ethereum's state is a collection of accounts. EOAs are key-controlled and initiate transactions; contracts hold code and storage and react to calls.
The state root in each block commits to all of it.
Quick Check
Test your accounts knowledge.
Recap: Accounts and State
You learned that:
- Ethereum has EOAs (key-controlled) and contract accounts (code-controlled)
- Only EOAs can initiate transactions
- Each account has a nonce, balance, storageRoot, and codeHash
- The state root commits to all accounts
You have completed the Web3 fundamentals track.
자주 묻는 질문
“계정과 상태” 강의는 무료인가요?
네 — “계정과 상태” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Web3 & DApp Development Fundamentals 강의 전체를 잠금 해제할 수 있습니다. Web3 & DApp Development Fundamentals 강의에는 총 4개의 강의가 포함되어 있습니다.
“계정과 상태”에서 뭘 배우나요?
외부 소유 계정과 컨트랙트 브라우저에서 직접 실행하는 실습 코드로 Web3 & DApp Development Fundamentals을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Web3 & DApp Development Fundamentals을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Web3 & DApp Development Fundamentals은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 4번째 강의입니다.
“계정과 상태” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Web3 & DApp Development Fundamentals 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Web3 & DApp Development Fundamentals 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.