Back to Home

dao

Token
Frontier GlobalRegistrar
0xe222d46d1657...db502ed7344e
HomesteadContract #18KSource VerifiedEdit this contract
Deployed June 2, 2016 (10 years ago)Block 1,629,866

The 2015 ethereum.org tutorial token: one balance mapping, the whole supply to the creator, and a sendCoin that predates ERC-20 transfer.

Homestead EraVerified Source

Historical Significance

The ancestor of every copied token contract that followed. It shows how little a token was before ERC-20: a mapping, a subtraction, an addition and an event, with no allowance mechanism and no metadata for a wallet to display.

Context

Ethereum's Frontier network went live on 30 July 2015. The tutorial token of that period predates ERC-20: balances are read through coinBalanceOf, transfers are sent with sendCoin, and the event announcing one is called CoinTransfer.

Contract Information
Registered Name
dao
Frontier GlobalRegistrar
The official Ethereum name registry hardcoded in go-ethereum for Frontier mainnet. Referenced in the original ethereum.org 'Register a name for your coin' tutorial (2015).
Key Facts
Deployment Block
1,629,866
Deployment Date
Jun 2, 2016, 03:37 PM
Code Size
250.0 B
Gas at Deploy
144,258
Transactions by Year
20161

Description

The token from the 2015 ethereum.org tutorial, in the form that predates ERC-20. It keeps one public mapping of balances, hands the whole supply to whoever creates it, and moves units with sendCoin(receiver, amount), which checks the sender's balance, returns false rather than reverting when it is short, and announces a successful move with a CoinTransfer event.

There is no approval, no allowance, no decimals, no name and no symbol. The supply is set once and cannot be added to.

This one was created with a supply of 10,000 units, which is the tutorial's own default.

Heuristic Analysis

The following characteristics were detected through bytecode analysis and may not be accurate.

Detected Type: Token
Has ERC-20-like patterns

Bytecode Overview

Opcodes250
Unique Opcodes75
Jump Instructions12
Storage Operations7

External Links

Related contracts