The Multiply7 tutorial contract — one of the first Solidity examples ever deployed to mainnet.
Key Facts
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
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.
Frontier Era
The initial release of Ethereum. A bare-bones implementation for technical users.
Bytecode Overview
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
contract Multiply7 {
function multiply(uint input) constant returns (uint) {
return input * 7;
}
}