Back to HomeDeployer 0x8fdb74...9b3fbb Deployment Block 1,506,372 Deployment Date May 12, 2016, 11:02 PM Code Size 151.0 B
Deployed May 12, 2016 (10 years ago)Block 1,506,372
Byte-identical deployment of: The canonical SimpleStorage (Homestead, Mar 2016): a single uint with set(x) and a constant get() getter, the opening example of t
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: 0x55d93d805a24c7d6...7cd00aea71322579
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;
}
}