Puntos de guardián (G), a token deployed at block 2,841,239 from the MyToken gist used by the ethereum.org token tutorial.
Context
Frontier and Homestead era token deployment.
Token Information
Key Facts
Description
Puntos de guardián (G) is an ERC-20 style token contract deployed at block 2,841,239. Its runtime and creation bytecode both match the MyToken gist used by the ethereum.org token tutorial compiled with solc v0.4.6+commit.2dabbdf0 (optimizer on), byte for byte. 7 contracts on mainnet share this exact runtime bytecode, so one source verifies all of them.
Source Verified
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Spurious Dragon Era
Continued DoS protection. State trie clearing.
Bytecode Overview
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
// Submitted by EthereumHistory (ethereumhistory.com)
/**
*Submitted for verification at Etherscan.io on 2025-05-23
*/
contract MyToken {
/* Public variables of the token */
string public name;
string public symbol;
uint8 public decimals;
/* This creates an array with all balances */
mapping (address => uint256) public balanceOf;
/* This generates a public event on the blockchain that will notify clients */
event Transfer(address indexed from, address indexed to, uint256 value);
/* Initializes contract with initial supply tokens to the creator of the contract */
function MyToken(uint256 _supply, string _name, string _symbol, uint8 _decimals) {
/* if supply not given then generate 1 million of the smallest unit of the token */
if (_supply == 0) _supply = 1000000;
/* Unless you add other functions these variables will never change */
balanceOf[msg.sender] = _supply;
name = _name;
symbol = _symbol;
/* If you want a divisible token then add the amount of decimals the base unit has */
decimals = _decimals;
}
/* Send coins */
function transfer(address _to, uint256 _value) {
/* if the sender doenst have enough balance then stop */
if (balanceOf[msg.sender] < _value) throw;
if (balanceOf[_to] + _value < balanceOf[_to]) throw;
/* Add and subtract new balances */
balanceOf[msg.sender] -= _value;
balanceOf[_to] += _value;
/* Notifiy anyone listening that this transfer took place */
Transfer(msg.sender, _to, _value);
}
}External Links
Related contracts
DoriToken
Same eraDoriToken (DTK), a token deployed at block 2,692,510 from the ethereum.org token tutorial.
0xdbd90d...c4cb16November 25, 2016HumanStandartTokenTC
Same eraHumanStandartTokenTC (HSTTC), a token deployed at block 2,711,154 from the ConsenSys HumanStandardToken contract.
0x7dd73b...715250November 28, 2016test34
Same eratest34 (test34), a token deployed at block 2,795,007 from the ethereum.org token tutorial.
0xfecde2...94a819December 12, 2016VegasCoin
Same eraA 2017 ConsenSys MyAdvancedToken — 777,777,777 VEGAS sold via buy() at 1 wei/token, standard "VegasCoin 2.1".
0x616f02...7050b3January 26, 2017EtherDelta
Same eraThe first major decentralized exchange on Ethereum, deployed February 9, 2017. Used off-chain signed orders with on-chain settlement to enable trustless ERC-20
0x8d12a1...cc6819February 10, 2017Constantine Nicholas: Block Difficulty Index
Same eraA 2017 conceptual token by Constantine Nicholas using block.difficulty as the price variable; bricked post-merge by prevrandao.
0xf22414...91c274February 20, 2017