Back to Home

Greeter

Unknown
0x76173df7acee...4a3ec1e01da7
FrontierExact Bytecode Match
Deployed August 8, 2015 (10 years ago)Block 55,365

A Greeter contract by Linagee (same deployer as the HelloWorld at block 48,681) with the greeting 'Welcome to Walmart I love you!'

Key Facts

Deployer
Linagee(0x3D0768...116c2D)
Deployment Block
55,365
Deployment Date
Aug 8, 2015, 09:31 PM
Code Size
788.0 B
Gas at Deploy
222,336
Transactions by Year
20151

Description

Deployed at block 55,365 on August 8, 2015 by 0x3D0768 - the same address that deployed the first successful HelloWorld contract on Ethereum (block 48,681). The greeting stored is 'Welcome to Walmart I love you!' - deployed using the canonical Frontier Greeter tutorial source with the greeting passed as a constructor argument. The bytecode is identical to the HelloWorld deployment; only the constructor arg differs.

Source Verified

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

Creation TX (788 bytes) matches exactly: compiled Greeter bytecode (692 bytes) + ABI-encoded constructor arg 'Welcome to Walmart I love you!' (96 bytes). Compiler: 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

Opcodes788
Unique Opcodes81
Jump Instructions29
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