Back to Home

Multiply7

Unknown
0xfcb20ae9a3fa...b0643fb96d3f
FrontierExact Bytecode Match
Deployed August 10, 2015 (10 years ago)Block 63,886

The Multiply7 tutorial contract — one of the first Solidity examples ever deployed to mainnet.

Key Facts

Deployment Block
63,886
Deployment Date
Aug 10, 2015, 01:04 PM
Code Size
126.0 B
Gas at Deploy
49,243

Description

A deployment of the canonical Multiply7 tutorial contract from the official Solidity documentation. This single-function contract multiplies any input by 7, and served as the introductory example for developers learning Solidity in the earliest days of Ethereum. Deployed on August 10, 2015 — just 3 days after Ethereum mainnet launched — by an early experimenter (0xc70ba22f) who deployed 11 contracts in the Frontier era, including gambling variants and token experiments.

Source Verified

SolidityExact bytecode match(126 bytes)
Compiler: soljson

Exact creation bytecode match (126 bytes). Compiled with soljson v0.1.1 (commit 6ff4cd6), optimizer OFF. Tutorial contract from official Solidity documentation, deployed Day 3 of Ethereum mainnet.

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

Opcodes126
Unique Opcodes36
Jump Instructions6
Storage Operations1

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) constant returns (uint) {
        return input * 7;
    }
}

External Links