Ethereumブロックチェーン
プログラム可能なブロックチェーンとしてのEthereum、そのアカウント、トランザクション、Etherの役割について学びます。
「Ethereumブロックチェーン」はCoddyKit上の無料Web3 & DApp Development Fundamentalsレッスンです。 これはレッスン1/3です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはWeb3 & DApp Development Fundamentals学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Web3 & DApp Development Fundamentalsコースには全3レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
Welcome to Ethereum!
You've learned about blockchain basics. Now, let's dive into Ethereum, a revolutionary blockchain platform.
Unlike simpler blockchains, Ethereum isn't just for sending money. It's a programmable blockchain, meaning you can build and run all sorts of decentralized applications (DApps) on it!
More Than Just Digital Cash
Think of Bitcoin as a digital currency primarily for transactions. Ethereum takes this further.
It's often called a 'world computer' because it allows developers to deploy arbitrary code (smart contracts) that runs exactly as programmed, without downtime, censorship, or third-party interference.
Who's Who: Ethereum Accounts
Interacting with the Ethereum blockchain means using accounts. These are entities that can hold Ether (Ethereum's native currency) and send transactions.
There are two main types of accounts on Ethereum:
- Externally Owned Accounts (EOAs)
- Contract Accounts
Your Personal Wallet: EOAs
Externally Owned Accounts (EOAs) are the accounts you, as a user, control. They are managed by a private key, which acts like a super-secret password.
With an EOA, you can:
- Send and receive Ether.
- Interact with smart contracts.
- Sign transactions.
Code-Driven: Contract Accounts
Contract Accounts are controlled by the code of a smart contract that lives on the blockchain. They don't have a private key.
Instead, their behavior is entirely defined by the smart contract's code. They can hold Ether, but can only send transactions or interact with other contracts when triggered by an EOA or another contract.
Making Moves: Ethereum Transactions
A transaction on Ethereum is an instruction, signed by an EOA, that changes the state of the blockchain. It's how you send Ether, deploy smart contracts, or interact with existing ones.
Every transaction is recorded on the blockchain and is immutable once confirmed.
Anatomy of a Transaction
Each transaction contains several key pieces of information:
to: The recipient's address (EOA or Contract Account).value: The amount of Ether to send (optional).data: Raw bytecode for contract deployment or function call data.nonce: A transaction counter for the sender, preventing replay attacks.gasLimit&gasPrice: For transaction fees.
Ether: Fueling the Network
Ether (ETH) is the native cryptocurrency of the Ethereum blockchain. It plays two crucial roles:
- Value Transfer: It's used as a digital currency for payments.
- Gas: It pays for the computational resources required to execute operations on the network.
Gas: The Network's Engine
Every operation on the Ethereum network—from sending Ether to running smart contract code—requires computational effort. This effort is measured in units called gas.
You pay for this gas using Ether. This mechanism prevents network spam and allocates resources fairly, as users must pay for the computing power they consume.
Quick Check
You've learned about the two main types of accounts on Ethereum. Let's test your understanding!
Recap: The Ethereum Foundation
Great job! You've grasped the core concepts of the Ethereum blockchain.
- Ethereum is a programmable blockchain for DApps.
- There are two types of accounts: EOAs (user-controlled) and Contract Accounts (code-controlled).
- Transactions are signed instructions that change the blockchain's state.
- Ether (ETH) is the native currency, used for value and to pay for gas.
Next, we'll explore what makes Ethereum truly unique: Smart Contracts!
よくある質問
「Ethereumブロックチェーン」レッスンは無料ですか?
はい。「Ethereumブロックチェーン」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Web3 & DApp Development Fundamentalsコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Web3 & DApp Development Fundamentalsコースには全3レッスンが含まれています。
「Ethereumブロックチェーン」で何を学びますか?
プログラム可能なブロックチェーンとしてのEthereum、そのアカウント、トランザクション、Etherの役割について学びます。 ブラウザで直接実行するハンズオンコードでWeb3 & DApp Development Fundamentalsを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
Web3 & DApp Development Fundamentalsを始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのWeb3 & DApp Development Fundamentalsは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン1/3です。
「Ethereumブロックチェーン」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このWeb3 & DApp Development Fundamentalsレッスンでコードを書いて実行できますか?
はい。すべてのWeb3 & DApp Development Fundamentalsレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。
このコースのすべてのレッスン
- Ethereumブロックチェーン
- スマートコントラクトとは
- EVMとGasの仕組み