Back to HomeDeployer 0x0047A8...884dE8 Deployment Block 247,409 Deployment Date Sep 17, 2015, 10:50 AM Code Size 76.0 B Gas at Deploy 37,562
Key Facts
Transactions by Year
20154
Deployment Transaction: 0x65e0cc7171e36882...e32bec4903117069
Description
Verified with soljson-v0.1.1+commit.6ff4cd6 and optimizer ON.
Source Verified
SolidityExact bytecode match(76 bytes)
Compiler: soljson
Backfilled from awesome-ethereum-proofs PR #49.
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Detected Type: program
Frontier Era
The initial release of Ethereum. A bare-bones implementation for technical users.
Block span: 0 — 1,149,999
July 30, 2015 — March 14, 2016
Bytecode Overview
Opcodes76
Unique Opcodes34
Jump Instructions5
Storage Operations2
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
contract Target {
uint stored;
function set(uint256 x) {
stored = x;
}
function get() returns (uint) {
return stored;
}
}