The Frontier greeter without the kill function
Context
Deployed in September 2015 on the Frontier chain.
Key Facts
Description
The greeter from the Frontier contract tutorial, stripped to its point: a string given at construction and a greet function that returns it. The tutorial's version inherits a mortal base so the creator can recover the balance and remove the contract; this deployment drops that inheritance entirely, so the greeting cannot be changed and the contract cannot be killed. It has stood unchanged since.
Source Verified
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)
// Submitted by EthereumHistory (ethereumhistory.com)
contract greeter {
string greeting;
function greeter(string _greeting) {
greeting = _greeting;
}
function greet() constant returns (string) {
return greeting;
}
}External Links
Related contracts
Contract 0x69fe01...5d2dba
Same deployerA copy of the greeter contract from the Frontier Guide, storing the greeting 'Hello World!'.
0x69fe01...5d2dbaSeptember 15, 2015MessageStore
Same eraA 6-line contract storing a single public string, deployed Day 9 of Ethereum by a prolific early experimenter who shipped 18 contracts in one week.
0xd2eccd...ff3d6bAugust 8, 2015CoinFlipper
Same eraA coin flip on the block timestamp that pays double or keeps the stake
0x6c8dda...5ef84eAugust 8, 2015Contract 0xa85146...9bbf06
Same erago-ethereum's built-in hash registrar, mapping a key to a content hash
0xa85146...9bbf06August 10, 2015Ballot
Same eraDelegated voting with a proposal count fixed at deployment
0x3cf26c...b6a8e1August 18, 2015Ballot
Same eraDelegated voting with a proposal count fixed at deployment
0x56ce77...b44745August 18, 2015