Back to Home

Token

Token
0xba3f83d994e5...7438d9ce748b
Tangerine WhistleContract #26KExact Bytecode MatchEdit this contract
Deployed November 17, 2016 (9 years ago)Block 2,639,534

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,639,534
Deployment Date
Nov 17, 2016, 01:31 AM
Code Size
2.2 KB
Gas at Deploy
777,959

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 100 units, indivisible.

Source Verified

Exact bytecode match(2,245 bytes)
Compiler: v0.4.0+

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

Opcodes2,245
Unique Opcodes201
Jump Instructions155
Storage Operations88

External Links

Related contracts