Frontier-era Greeter that returns the hardcoded string "Mukhi is a embecile" from greet(). First of 5 identical deployments.
Key Facts
Description
This contract is the first of 5 identical Greeter deployments. It has no constructor and a single greet() function that returns the hardcoded string "Mukhi is a embecile". Compiled with solc 0.1.3+commit.028f561d optimizer ON. Exact byte-for-byte match on the 153-byte runtime.
Proof: cartoonitunes/awesome-ethereum-proofs, folder greeter-mukhi-0x6eff3da5.
Source Verified
Exact byte-for-byte match on 153-byte runtime with solc 0.1.3 opt ON. Cluster: 5 identical-runtime deployments. Also Etherscan-verified with EthereumHistory attribution.
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 {
function greet() constant returns (string) {
return "Mukhi is a embecile";
}
}