A Frontier-era Greeter contract with the message: 'Cyperx says Hello'
Historical Significance
One of many early Greeter deployments showing real developers learning Solidity on the live Ethereum network in 2015.
Key Facts
Description
Deployed during Ethereum's Frontier era using the canonical mortal+greeter tutorial source from the Solidity documentation. The greeting stored is 'Cyperx says Hello'. Verified as an exact bytecode match against the greeter-verification repo.
Source Verified
Creation TX matches: compiled Greeter base (692 bytes) + ABI-encoded greeting. 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
token
Same deployerThe Frontier Guide's Coin tutorial contract: a pre-ERC-20 token with coinBalanceOf, sendCoin and a CoinTransfer event.
0x412c79...e5f4fdAugust 15, 2015token
Same deployerThe Frontier Guide's Coin tutorial contract: a pre-ERC-20 token with coinBalanceOf, sendCoin and a CoinTransfer event.
0xe7ca5a...30b8b7August 15, 2015token
Same deployerThe Frontier Guide's Coin tutorial contract: a pre-ERC-20 token with coinBalanceOf, sendCoin and a CoinTransfer event.
0x137706...78ce8dAugust 15, 2015token
Same deployerThe Frontier Guide's Coin tutorial contract: a pre-ERC-20 token with coinBalanceOf, sendCoin and a CoinTransfer event.
0xf4a44a...be9446August 15, 2015Contract 0xaa6bde...d36bb2
Same deployerA copy of the coin contract from the Frontier Guide, the two function token that taught a generation of Ethereum developers to move a balance.
0xaa6bde...d36bb2August 27, 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, 2015