Variant of the ethereum.org 'Dapps for Beginners' subcurrency (Frontier 2015): sendCoin transfer, public coinBalanceOf mapping, CoinTransfer event, token() mint
Historical Significance
An early Frontier-era teaching subcurrency from the original ethereum.org contract tutorial; this variant mints via a token() function rather than a constructor.
Context
Compiled with soljson-v0.1.3 (optimizer ON); exact match of both runtime and creation bytecode. One of 54 byte-identical deployments of this contract.
Key Facts
Source Verified
Exact bytecode match. Runtime: 278 bytes (byte-for-byte). Creation: 296 bytes (byte-for-byte). Compiled with soljson-v0.1.3+commit.028f561d, optimizer ON. token()-mint variant of the ethereum.org 'Dapps for Beginners' subcurrency.
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Frontier Era
The initial release of Ethereum. A bare-bones implementation for technical users.
Bytecode Overview
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
contract Coin {
mapping (address => uint) public coinBalanceOf;
event CoinTransfer(address sender, address receiver, uint amount);
function token(uint _index) {
if (_index == 0)
_index = 70000000;
coinBalanceOf[msg.sender] = _index;
}
function sendCoin(address receiver, uint amount) returns(bool sufficient) {
if (coinBalanceOf[msg.sender] < amount) return false;
coinBalanceOf[msg.sender] -= amount;
coinBalanceOf[receiver] += amount;
CoinTransfer(msg.sender, receiver, amount);
return true;
}
}External Links
Related contracts
Multiply7
Same deployerThe hello-world of Solidity: multiply(x) returns x*7. The ethereum.org tutorial contract. 120 copies deployed Sep 2015 through Feb 2016.
0xfc3c99...90d3d6October 24, 2015token
Same eraAn early ERC-20-like token deployed in Ethereum's first week, built directly from the example in the official Ethereum Frontier Guide documentation.
0x8374f5...46609aAugust 7, 2015token
Same eraA second deployment of the FirstCoin tutorial token by the same creator, 11 blocks after the original — both derived from the official Ethereum Frontier Guide e
0x3b4446...295f52August 7, 2015Contract 0xd958b5...ec4c9f
Same eraEthereum.org tutorial Coin contract deployed on Frontier day 1. Contains a bug: balance(address) ignores its argument and returns msg.sender balance.
0xd958b5...ec4c9fAugust 7, 2015NameRegistry
Same eraFixed-fee name registry from Day 9 of Ethereum (Aug 8, 2015). Reserve names for 69 ETH, resolve addresses. A precursor to ENS.
0xa1a111...b8af00August 8, 2015token
Same eraEarly tutorial-derived coin contract compiled with Solidity v0.1.1, deployed 9 days after Ethereum Frontier launch.
0x3c401b...da1634August 8, 2015