Back to HomeDeployer 0xfc274a...3ac91b Deployment Block 925,567 Deployment Date Jan 30, 2016, 04:03 AM Code Size 75.0 B Gas at Deploy 37,558
Bytecode verified via sibling
This contract shares identical runtime bytecode with SimpleStorage (0x4819e3f7...) which has been verified through compiler archaeology.
Deployed January 30, 2016 (10 years ago)Block 925,567
This contract is not yet documented
Know something about this contract? Switch to the History tab and suggest an edit to help preserve Ethereum history.
Frontier EraVerified Source
Key Facts
Transactions by Year
20161
Deployment Transaction: 0x3bb981eaf21023ec...a84f1d35896ae576
Source Verified
Etherscan verified
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: 0 — 1,149,999
July 30, 2015 — March 14, 2016
Bytecode Overview
Opcodes75
Unique Opcodes34
Jump Instructions5
Storage Operations2
Verified Source Available
Source verified on Etherscan.
Show source code (Solidity)
contract SimpleStorage {
uint storedData;
function set(uint x) {
storedData = x;
}
function get() constant returns (uint retVal) {
return storedData;
}
}