Back to HomeToken Name peseta Symbol PST Decimals 2 Deployer 0x931CD8...9927C7 Deployment Block 857,773 Deployment Date Jan 16, 2016, 03:39 PM Code Size 1.8 KB Gas at Deploy 461,331
Deployed January 16, 2016 (10 years ago)Block 857,773
Basic ethereum.org token template (unoptimized). One of 138 identical deployments compiled without the optimizer.
Token Information
Key Facts
Deployment Transaction: 0xe3402e6d3c1e6970...40f918c88b6bf911
Source Verified
SolidityExact bytecode match(1,829 bytes)
Compiler: v0.2.1
Exact runtime bytecode match. Native C++ solc v0.2.1 (webthree-umbrella v1.1.2), optimizer OFF. 138 identical siblings.
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Detected Type: Token
Has ERC-20-like patterns
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
Opcodes1,829
Unique Opcodes120
Jump Instructions75
Storage Operations35
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
contract MyToken {
string public name;
string public symbol;
uint8 public decimals;
mapping (address => uint256) public balanceOf;
event Transfer(address indexed from, address indexed to, uint256 value);
function MyToken(uint256 initialSupply, string tokenName, uint8 decimalUnits, string tokenSymbol) {
balanceOf[msg.sender] = initialSupply;
name = tokenName;
symbol = tokenSymbol;
decimals = decimalUnits;
}
function transfer(address _to, uint256 _value) {
if (balanceOf[msg.sender] < _value) throw;
if (balanceOf[_to] + _value < balanceOf[_to]) throw;
balanceOf[msg.sender] -= _value;
balanceOf[_to] += _value;
Transfer(msg.sender, _to, _value);
}
}