Back to HomeDeployer 0xc8b8c3...d05b07 Deployment Block 1,780,432 Deployment Date Jun 27, 2016, 10:47 AM Code Size 151.0 B
Deployed June 27, 2016 (10 years ago)Block 1,780,432
The canonical SimpleStorage (Homestead, Mar 2016): a single uint with set(x) and a constant get() getter, the opening example of the Solidity documentation.
Homestead EraVerified Source
Historical Significance
The 'hello world' of Solidity: the first example from the official documentation, storing and returning a single integer.
Context
Compiled with soljson-v0.1.5 (optimizer OFF); exact match of both the 151-byte runtime and 167-byte creation bytecode. One of 18 byte-identical deployments.
Key Facts
Deployment Transaction: 0x501ec648b84709db...dbe61002cdbfa358
Source Verified
SolidityExact bytecode match(151 bytes)
Compiler: soljson
Exact bytecode match. Runtime: 151 bytes (byte-for-byte). Creation: 167 bytes (byte-for-byte). Compiled with soljson-v0.1.5+commit.23865e39, optimizer OFF.
Homestead Era
The first planned hard fork. Removed the canary contract, adjusted gas costs.
Block span: 1,150,000 — 1,919,999
March 14, 2016 — July 20, 2016
Bytecode Overview
Opcodes151
Unique Opcodes38
Jump Instructions11
Storage Operations3
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
contract SimpleStorage {
uint storedData;
function set(uint x) {
storedData = x;
}
function get() constant returns (uint) {
return storedData;
}
}