Back to Home

Multiply7

Unknown
0xfc3c994faebc...58e21f90d3d6
FrontierContract #2,651Exact Bytecode MatchEdit this contract
Deployed October 24, 2015 (10 years ago)Block 434,401

The hello-world of Solidity: multiply(x) returns x*7. The ethereum.org tutorial contract. 120 copies deployed Sep 2015 through Feb 2016.

Key Facts

Deployment Block
434,401
Deployment Date
Oct 24, 2015, 09:28 PM
Code Size
58.0 B
Gas at Deploy
33,130

Description

One of the simplest Solidity contracts ever deployed: a single function that multiplies an input by 7. This is the first example from the ethereum.org Solidity documentation circa 2015.

The deployer (0x8D0b) ran 120 copies between Sep 22, 2015 and Feb 2016 — likely a tutorial platform or automated testing system walking through the official Solidity examples.

Compiler: soljson v0.1.3 through v0.2.1 all produce identical output with optimizer ON. 42-byte runtime.

Source Verified

SolidityExact bytecode match(58 bytes)
Compiler: soljson

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

Opcodes58
Unique Opcodes27
Jump Instructions1
Storage Operations0

Verified Source Available

Source verified through compiler archaeology and exact bytecode matching.

View Verification Proof
Show source code (Solidity)
contract Multiply7 {
    function multiply(uint input) returns (uint) {
        return input * 7;
    }
}

External Links