Back to Home

LilyCoin(Л)

Token
0x9bc149ee1721...0366711e7b5d
DAO ForkContract #22KExact Bytecode MatchEdit this contract
Deployed August 5, 2016 (10 years ago)Block 2,017,106

A token with transfers and allowance spending, and an owner who can mint new units, deployed August 2016.

DAO Fork EraVerified Source

Historical Significance

The advanced token from the ethereum.org tutorial puts a market inside the token: the owner sets a buy and a sell price and holders trade against the contract's own ether balance rather than finding a counterparty. It is an automated market maker with a fixed price and no curve, written years before the term existed, and it fails the same way each time, since the contract will keep quoting a price it can no longer honour once its balance runs out. The owner also mints and freezes, so every risk in the design is concentrated in one account.

Context

Homestead arrived in March 2016 and the ethereum.org tutorials were rewritten around the transfer and balanceOf names that ERC-20 was standardising. Deploying a token had become a matter of filling in four constructor arguments, and most of the deployments of this period are exactly that.

Token Information
Token Name
LilyCoin
Symbol
Л
Decimals
2
Key Facts
Deployment Block
2,017,106
Deployment Date
Aug 5, 2016, 09:10 PM
Code Size
5.0 KB
Gas at Deploy
1,651,349

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 records what each spender has been authorised for. ApproveAndCall sets the allowance and calls receiveApproval on the spender in the same transaction, so a spending contract learns of its allowance at the moment it is granted. The owner can create new units, freeze an account so it can no longer send, set a buy and a sell price at which holders trade against the contract's own ether balance and hand the role to another address. It was deployed as LilyCoin, with the symbol Л and an opening supply of 0 base units at 2 decimal places and it answers standard() with the string Token 0.1, the label the tutorial used before ERC-20 had a number.

Source Verified

Exact bytecode match(5,161 bytes)
Compiler: v0.3.3+

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

Opcodes5,161
Unique Opcodes174
Jump Instructions152
Storage Operations82

External Links

Related contracts