Back to HomeDeployer 0xf15B73...d88C1F Deployment Block 116,114 Deployment Date Aug 20, 2015, 11:02 AM Code Size 788.0 B Gas at Deploy 221,952
Deployed August 20, 2015 (10 years ago)Block 116,114
A Frontier-era Greeter with the message: 'I am on the etherchain!!'
Key Facts
Transactions by Year
20151
Deployment Transaction: 0x6c653e07b6187dfa...019c5af531edcecc
Description
Deployed during Ethereum's Frontier era using the canonical mortal+greeter tutorial. Greeting: 'I am on the etherchain!!'. Verified as an exact bytecode match.
Source Verified
SolidityExact bytecode match(788 bytes)
Compiler: v0.1.1+
Creation TX matches: compiled Greeter base (692 bytes) + ABI-encoded greeting. soljson v0.1.1+commit.6ff4cd6a, optimizer OFF.
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Detected Type: Unknown
Frontier Era
The initial release of Ethereum. A bare-bones implementation for technical users.
Block span: 0 — 1,149,999
July 30, 2015 — March 14, 2016
Bytecode Overview
Opcodes788
Unique Opcodes80
Jump Instructions28
Storage Operations11
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
contract mortal {
address owner;
function mortal() { owner = msg.sender; }
function kill() { if (msg.sender == owner) suicide(owner); }
}
contract greeter is mortal {
string greeting;
function greeter(string _greeting) {
greeting = _greeting;
}
function greet() constant returns (string) {
return greeting;
}
}