Back to HomeDeployer 0x2a595f...677243 Deployment Block 655,938 Deployment Date Dec 7, 2015, 05:59 PM Code Size 75.0 B Gas at Deploy 37,558
Deployed December 7, 2015 (10 years ago)Block 655,938
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
Deployment Transaction: 0xc2801218d9453d89...c6685718a3eba552
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;
}
}