Byte-identical deployment of: The classic Frontier 'greeter' (Jan 2016): a mortal-derived contract storing a constructor-set greeting returned by greet(), with
Historical Significance
The greeter from the original Frontier release walkthrough, the first contract many early developers ever deployed.
Context
Compiled with soljson-v0.2.0 (optimizer OFF); exact match of the 542-byte runtime. One of 67 byte-identical deployments.
Key Facts
Source Verified
Exact runtime bytecode match. Runtime: 542 bytes (byte-for-byte), compiled with soljson-v0.2.0+commit.4dc2445e, optimizer OFF. The on-chain creation (908 bytes) appends the ABI-encoded greeting constructor string; the 542-byte runtime is the shared cluster invariant.
Historian Categories
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Frontier Era
The initial release of Ethereum. A bare-bones implementation for technical users.
Bytecode Overview
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; }
}External Links
Related contracts
Contract 0xe360ff...dfa702
Same deployerThe mortal base contract from the Frontier Guide deployed on its own, with nothing inheriting from it.
0xe360ff...dfa702December 26, 2015Contract 0x91358f...bc8347
Same deployerThe mortal base contract from the Frontier Guide deployed on its own, with nothing inheriting from it.
0x91358f...bc8347December 26, 2015Contract 0x4d0d85...e0f690
Same deployerThe mortal base contract from the Frontier Guide deployed on its own, with nothing inheriting from it.
0x4d0d85...e0f690December 26, 2015Contract 0x1e57df...e16908
Same deployerThe mortal base contract from the Frontier Guide deployed on its own, with nothing inheriting from it.
0x1e57df...e16908December 26, 2015Digix
Same eraThe earliest known attempt to deploy a smart contract on Ethereum mainnet (Aug 7 2015, thanateros.eth). Ran out of gas before code deposit; creation bytecode reconstructed exactly.
0x9a049f...a977a0August 7, 2015Test
Same eraThe earliest known Ethereum contract with executable runtime code. A single function go() that returns the string "eth", compiled with the first publicly available Solidity compiler (v0.1.1).
0x651629...8c21faAugust 7, 2015