One of six HelloWorld Greeter deployments by Linagee on Ethereum Frontier Day 1 - same source, same compiler, greeting: 'Hello World!'
Historical Significance
Part of a wave of Linagee HelloWorld deployments on Frontier Day 1. Shows the early developer practice of repeatedly deploying contracts to test or demonstrate functionality on the live network.
Key Facts
Description
Deployed by 0x3D0768 on August 7-8, 2015 - the same address that deployed the first successful HelloWorld on Ethereum (block 48,681). Linagee deployed the canonical Frontier Greeter tutorial at least 6 times with the 'Hello World!' greeting, plus a seventh instance with 'Welcome to Walmart I love you!' All share the same bytecode base: soljson v0.1.1 optimizer OFF, mortal + greeter inheritance pattern.
Source Verified
Creation TX matches: compiled Greeter bytecode (692 bytes) + ABI-encoded constructor arg 'Hello World!' = 788 bytes. Compiler: soljson v0.1.1+commit.6ff4cd6a, optimizer OFF.
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
DeadBeef Test
Same deployerA raw bytecode test deployment by Linagee on Frontier Day 1 - the classic 0xdeadbeef pattern.
0x4dae54...f974bcAugust 7, 2015DeadBeef Test
Same deployerA raw bytecode test deployment by Linagee on Frontier Day 1 - the classic 0xdeadbeef pattern.
0x9973aa...f31f0bAugust 7, 2015DeadBeef Test
Same deployerA raw bytecode test deployment by Linagee on Frontier Day 1 - the classic 0xdeadbeef pattern.
0x87c44b...75f2adAugust 7, 2015Test
Same deployerThe 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, 2015Greeter
Same deployerAn early Ethereum contract that returns the string “Hello World!” when called.
0xfea8c4...8b08ebAugust 7, 2015Greeter
Same deployerOne of six HelloWorld Greeter deployments by Linagee on Ethereum Frontier Day 1 - same source, same compiler, greeting: 'Hello World!'
0xd464e6...dc98f3August 7, 2015