0Pricing
Web3 & DApp Development Fundamentals · レッスン

トークンの実装

transferとapprove

「トークンの実装」はCoddyKit上の無料Web3 & DApp Development Fundamentalsレッスンです。 これはレッスン2/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはWeb3 & DApp Development Fundamentals学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Web3 & DApp Development Fundamentalsコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

Building a Token

Now you will implement the core of an ERC-20 token from scratch. Understanding the internals helps you debug and audit real tokens, even when you later use libraries.

We will focus on the state, transfer, and approve.

Core State Variables

A token needs to track balances and total supply. Balances are stored in a mapping from address to amount.

<code>contract Token {
    string public name = 'MyToken';
    string public symbol = 'MTK';
    uint8 public decimals = 18;
    uint256 public totalSupply;
    mapping(address => uint256) public balanceOf;
}</code>

The Constructor

The constructor mints an initial supply to the deployer. We increase totalSupply and credit the creator's balance.

<code>constructor(uint256 initialSupply) {
    totalSupply = initialSupply;
    balanceOf[msg.sender] = initialSupply;
}</code>

The Events

Declare the two required events. We will emit Transfer on every movement and Approval when an allowance is set.

<code>event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);</code>

Implementing transfer

The transfer function moves tokens from the caller to a recipient. It must check the caller has enough balance and emit the Transfer event.

<code>function transfer(address to, uint256 amount) public returns (bool) {
    require(balanceOf[msg.sender] >= amount, 'insufficient balance');
    balanceOf[msg.sender] -= amount;
    balanceOf[to] += amount;
    emit Transfer(msg.sender, to, amount);
    return true;
}</code>

Guarding Against Zero Address

Sending tokens to address(0) effectively destroys them by accident. Many implementations reject it explicitly.

<code>function transfer(address to, uint256 amount) public returns (bool) {
    require(to != address(0), 'transfer to zero');
    require(balanceOf[msg.sender] >= amount, 'insufficient');
    balanceOf[msg.sender] -= amount;
    balanceOf[to] += amount;
    emit Transfer(msg.sender, to, amount);
    return true;
}</code>

The allowance Mapping

To support delegated transfers we add a nested mapping: owner to spender to approved amount.

<code>mapping(address => mapping(address => uint256)) public allowance;</code>

Implementing approve

The approve function lets the caller authorize a spender to move up to a certain amount of their tokens. It records the allowance and emits Approval.

<code>function approve(address spender, uint256 amount) public returns (bool) {
    allowance[msg.sender][spender] = amount;
    emit Approval(msg.sender, spender, amount);
    return true;
}</code>

Overflow Safety

Since Solidity 0.8, arithmetic reverts on overflow and underflow automatically. The subtraction in transfer is safe: if the balance is too low it reverts, though the explicit require gives a clearer error.

Why Return bool

The standard specifies a bool return for compatibility. We return true on success. On failure we revert, which is the modern convention and safer than silently returning false.

Putting It Together

With state, events, transfer, and approve in place you have a functioning fungible token. The next lesson adds transferFrom to complete the allowance flow.

<code>// state + constructor + events + transfer + approve
// = a minimal working ERC-20</code>

Quick Check

Test your understanding of implementing a token.

Recap

You implemented the core of an ERC-20 token:

  • State: name, symbol, decimals, totalSupply, balanceOf mapping
  • Constructor mints the initial supply to the deployer
  • transfer checks balance, updates state, emits Transfer
  • approve records an allowance and emits Approval
  • Guard against the zero address and rely on 0.8 overflow safety

よくある質問

「トークンの実装」レッスンは無料ですか?

はい。「トークンの実装」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Web3 & DApp Development Fundamentalsコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Web3 & DApp Development Fundamentalsコースには全4レッスンが含まれています。

「トークンの実装」で何を学びますか?

transferとapprove ブラウザで直接実行するハンズオンコードでWeb3 & DApp Development Fundamentalsを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Web3 & DApp Development Fundamentalsを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのWeb3 & DApp Development Fundamentalsは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン2/4です。

「トークンの実装」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このWeb3 & DApp Development Fundamentalsレッスンでコードを書いて実行できますか?

はい。すべてのWeb3 & DApp Development Fundamentalsレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. ERC-20標準
  2. トークンの実装
  3. Allowance
  4. ミントとバーン
← Web3 & DApp Development Fundamentalsに戻る