The classic Frontier 'greeter' (Jan 2016): a mortal-derived contract storing a constructor-set greeting returned by greet(), with an owner-only kill(). One of 6
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.
Homestead Era
The first planned hard fork. Removed the canary contract, adjusted gas costs.
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 0x2807ff...538ebd
Same deployerIdentical-runtime sibling. The classic Frontier 'greeter' (Jan 2016): a mortal-derived contract storing a constructor-set greeting returned by greet(), with an
0x2807ff...538ebdJuly 18, 2016SimpleStorage
Same eraThe canonical SimpleStorage (Homestead, Mar 2016): a single uint with set(x) and a constant get() getter, the opening example of the Solidity documentation.
0x040027...a9d74dMarch 24, 2016Contract 0x62aab6...7b4128
Same eraThe canonical SimpleStorage (Homestead, Mar 2016): a single uint with set(x) and a constant get() getter, the opening example of the Solidity documentation. One
0x62aab6...7b4128March 24, 2016Contract 0xa88810...795a99
Same eraIdentical-runtime sibling. The canonical SimpleStorage (Homestead, Mar 2016): a single uint with set(x) and a constant get() getter, the opening example of the
0xa88810...795a99April 3, 2016Contract 0x1511f0...4b2405
Same eraByte-identical deployment of: The canonical SimpleStorage (Homestead, Mar 2016): a single uint with set(x) and a constant get() getter, the opening example of t
0x1511f0...4b2405May 12, 2016Penny
Same eraIdentical-runtime sibling. Standard ethereum.org tutorial token (Homestead, Mar 2016): name/symbol/decimals metadata, a public balanceOf mapping and an overflow
0xb9a01c...3da640May 20, 2016