Back to Home

Greeter

Unknown
0xda0c1c188213...13ae267a68eb
FrontierExact Bytecode Match
Deployed August 8, 2015 (10 years ago)Block 52,444

A Greeter with the message 'Ethereum will change the world smarter' - deployed Aug 8, 2015 by a developer connected to the Tokyo Smart Contract meetup.

Key Facts

Deployment Block
52,444
Deployment Date
Aug 8, 2015, 08:13 AM
Code Size
820.0 B
Gas at Deploy
243,054
Transactions by Year
20151

Description

Deployed at block 52,444 on August 8, 2015 by 0xd12e0ECc. Minutes earlier (block 52,369), the deployer sent 3 ETH to 0x4b0C6F0297 - the developer who deployed the famous Japan meetup Greeter at block 52,918 with the greeting 'Hello world from 0804 Smart Contract Japan meeting!'. The two appear to have been at the same Tokyo meetup on August 4, 2015, and both deployed Greeter contracts on Ethereum's first days as a demonstration of the platform.

Source Verified

SolidityExact bytecode match(820 bytes)
Compiler: v0.1.1+

Creation TX (820 bytes) = compiled Greeter base (692 bytes) + ABI-encoded 'Ethereum will change the world smarter' (128 bytes). soljson v0.1.1+commit.6ff4cd6a, optimizer OFF.

Heuristic Analysis

The following characteristics were detected through bytecode analysis and may not be accurate.

Detected Type: Unknown

Frontier Era

The initial release of Ethereum. A bare-bones implementation for technical users.

Block span: 01,149,999
July 30, 2015March 14, 2016

Bytecode Overview

Opcodes820
Unique Opcodes84
Jump Instructions31
Storage Operations11

Verified Source Available

Source verified through compiler archaeology and exact bytecode matching.

View Verification Proof
Show 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