Back to Home

Standard_Token_Factory

Utility
0x91d050e1a0ee...c5405854ba99
FrontierContract #234Source VerifiedEdit this contract
Deployed August 13, 2015 (11 years ago)Block 81,645

A factory for pre-ERC-20 standard tokens: one call deploys a token with a chosen supply and records it under the caller's address.

Frontier EraVerified Source

Historical Significance

A token factory operating before ERC-20 was proposed, offering the thing that later token generators sold: a token without writing or compiling Solidity. The registry it keeps of who created what is the part that outlived the interface, since the address list survives whether or not anything uses the tokens.

Context

Ethereum's Frontier network went live on 30 July 2015. The chain carried almost no applications in its first months: what was deployed was mostly tutorial code, token experiments and registries, written in a Solidity that was itself only a few months old and compiled from the geth console.

Key Facts
Deployment Block
81,645
Deployment Date
Aug 13, 2015, 10:34 PM
Code Size
4.2 KB
Gas at Deploy
1,159,823
Transactions by Year
20151
20251

Description

Standard_Token_Factory deploys tokens on request. createStandardToken(amount) creates a new fixed supply token, immediately sends the whole supply on to the caller, and files the new token's address under that caller in a public mapping. createdByMe() returns the list of tokens an account has created through it.

The tokens it produces follow the Standardized Contract APIs that preceded ERC-20: sendCoin, sendCoinFrom, coinBalance and coinBalanceOf, with blanket and single-use approvals rather than an allowance mapping.

The factory keeps no fee, has no owner and no way to stop it. Anyone who has the address can mint themselves a token by sending one transaction.

Heuristic Analysis

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

Detected Type: Utility

Bytecode Overview

Opcodes4,340
Unique Opcodes190
Jump Instructions109
Storage Operations55

External Links

Related contracts