A minimal string-storage contract hardcoding the name 'Etherparty', deployed 3 times on August 8, 2015 by the same wallet that deployed SimpleStorage.
Key Facts
Description
Three identical contracts deployed by 0x5947168a at blocks 55,345-55,355 on August 8, 2015 - the same deployer who deployed 4 SimpleStorage tutorial contracts minutes later. The contract stores a single string 'Etherparty' and exposes a get() function returning it. The 'Etherparty' name references an early Ethereum platform from Canada focused on smart contract creation tools. The deployer received 1.182 ETH from a genesis-funded wallet, suggesting they were a developer testing or demonstrating the platform's tooling on Frontier Day 1.
Source Verified
All 3 contracts are byte-for-byte identical (499 bytes). Compiled with 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 Etherparty {
string name = "Etherparty";
function get() constant returns (string) { return name; }
}