Back to Home

peseta(PST)

Token
0xcc2ee7b5eee0...51907be0bd4e
FrontierExact Bytecode Match
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

Token Name
peseta
Symbol
PST
Decimals
2

Key Facts

Deployment Block
857,773
Deployment Date
Jan 16, 2016, 03:39 PM
Code Size
1.8 KB
Gas at Deploy
461,331

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: 01,149,999
July 30, 2015March 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 Proof
Show 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);
    }
}

External Links