Back to Home

Token

Token
0xa7e4a2f08c91...23d272d75d94
Tangerine WhistleContract #25KExact Bytecode MatchEdit this contract
Deployed November 13, 2016 (9 years ago)Block 2,616,657

A fixed-supply token with transfers and third-party allowances, deployed November 2016.

Tangerine Whistle EraVerified Source

Historical Significance

A token written to the interface rather than to a tutorial: balances, transfers, an allowance mapping and a total supply, with no owner, no minting and no metadata beyond what the interface asks for. Contracts of this shape are what ERC-20 was describing when it was drafted, and their sameness is the point, since a wallet or an exchange can handle any of them without knowing anything else.

Context

By late 2016 ERC-20 had settled the interface a token was expected to answer, and the ethereum.org tutorial was still where most people copied one from. OpenZeppelin's contracts were not yet the default, so the code behind a token of this period is usually the tutorial's, with the constructor arguments changed and nothing else.

Key Facts
Deployment Block
2,616,657
Deployment Date
Nov 13, 2016, 07:13 AM
Code Size
4.3 KB
Gas at Deploy
1,311,199

Description

A token from the ethereum.org tutorial. Balances sit in a public balanceOf mapping and transfer(to, value) moves them, throwing rather than returning false when the sender is short and checking the recipient's balance for overflow before adding to it. An allowance mapping lets a holder authorise another address to spend a limited amount through transferFrom. There is no owner and no way to create further units: the supply written at deployment is the whole supply. Its opening supply is 0 units, indivisible.

Source Verified

Exact bytecode match(4,397 bytes)
Compiler: v0.4.4+

Historian Categories

Token
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

Opcodes4,397
Unique Opcodes216
Jump Instructions192
Storage Operations88

External Links

Related contracts