A Frontier-era Greeter with the message: Hola! (block 97,240)
Historical Significance
Part of the wave of Frontier Greeter deployments. Notably the fourth Hola! Greeter found from this period (also blocks 97227, 97261, 97268), likely deployed by a Spanish-speaking developer experimenting with Ethereum.
Key Facts
Description
Deployed during Ethereum Frontier era using the canonical mortal+greeter tutorial. Greeting: Hola! Verified as an exact bytecode match against soljson v0.1.1+commit.6ff4cd6a.
Source Verified
Creation TX matches: compiled Greeter base (692 bytes) + ABI-encoded greeting Hola! soljson v0.1.1+commit.6ff4cd6a, optimizer OFF.
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;
}
}