Back to Home

Coin

Token
0x4fb5acbe16ff...4c7e253b08ae
FrontierContract #40Exact Bytecode Match
Deployed August 8, 2015 (10 years ago)Block 54,126

The earliest Coin stub on Ethereum mainnet - an empty sendCoin implementation from the ethereum.org tutorial, deployed August 2015.

Key Facts

Deployment Block
54,126
Deployment Date
Aug 8, 2015, 03:53 PM
Code Size
200.0 B
Gas at Deploy
68,369

Description

A stub deployment of the ethereum.org Coin tutorial contract, deployed at block 54,126 (August 2015). The contract has a public coinBalanceOf mapping and a sendCoin function with an empty body - sufficient defaults to 0 and is returned implicitly. No transfer logic was implemented; this was likely a developer testing the tutorial template before building the full contract. At 181 bytes, it is one of the smallest meaningful contracts deployed on Frontier Ethereum.

Source Verified

SolidityExact bytecode match(200 bytes)
Compiler: v0.1.1+

soljson v0.1.1+commit.6ff4cd6, optimizer OFF, compileJSON. Empty sendCoin body produces 181b runtime matching live eth_getCode exactly.

Heuristic Analysis

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

Detected Type: Token

Frontier Era

The initial release of Ethereum. A bare-bones implementation for technical users.

Block span: 01,149,999
July 30, 2015March 14, 2016

Bytecode Overview

Opcodes200
Unique Opcodes40
Jump Instructions9
Storage Operations1

Verified Source Available

Source verified through compiler archaeology and exact bytecode matching.

View Verification Proof
Show source code (Solidity)
contract Coin {
    mapping (address => uint) public coinBalanceOf;
    function sendCoin(address receiver, uint amount) returns(uint sufficient) {}
}

External Links