Back to Home

Greeter

Utility
Part of The Linagee Collection
0x76173df7acee...4a3ec1e01da7
FrontierContract #70Exact Bytecode MatchEdit this contract
Deployed August 8, 2015 (11 years ago)Block 55,365

The go-ethereum Contract Tutorial greeter, deployed with the greeting: Welcome to Walmart I love you!

Frontier EraVerified Source

Historical Significance

The Contract Tutorial was the introduction to Solidity that shipped with go-ethereum, and deploying the greeter was its final step. Each copy therefore preserves the sentence its author chose to write onto a public chain while learning the tools. The Solidity source here was recovered by compiling the tutorial text with period compilers until the output matched the deployed bytecode exactly.

Context

Ethereum's Frontier network went live on 30 July 2015. The Contract Tutorial on the go-ethereum wiki, which the Frontier Guide included by reference, was the standard introduction of that period, and it named its three contracts mortal, greeter and token. Solidity was a few months old, contracts were compiled and deployed from the geth console, and no block explorer of the time kept the source, so the greeters survive as bytecode alone.

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

The greeter is the worked example of the Contract Tutorial on the go-ethereum wiki. It inherits a base contract named mortal, which records the account that created it and exposes kill(), a function that self-destructs the contract and sends its balance to that account. Only the creator can call it.

The greeter itself adds one string. The constructor stores the greeting given at deployment and greet() returns it. There is no setter, so the greeting a copy is born with is the only greeting it ever has, and no account other than the creator can affect it.

This copy was deployed with the greeting: Welcome to Walmart I love you! The account that deployed it, 0x3d0768da09ce77d25e2d998e6a7b6ed4b9116c2d, had been putting contracts on mainnet since block 48,512.

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.

Historian Categories

Experimental
Heuristic Analysis

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

Detected Type: Utility

Bytecode Overview

Opcodes788
Unique Opcodes81
Jump Instructions29
Storage Operations11

External Links

Related contracts