Coin tutorial stub — mapping getter + empty function returning default bool.
Historical Significance
One of the earliest deployments of the ethereum.org Coin tutorial on mainnet. The empty sendCoin body reveals a developer exploring the Solidity contract model before implementing transfer logic - a snapshot of the learning process on Frontier Ethereum.
Context
The ethereum.org Coin tutorial was one of the first Solidity examples published by the Ethereum Foundation. This deployment shows a developer working through the tutorial in August 2015, deploying the contract structure before filling in the implementation.
Key Facts
Description
Coin tutorial stub — mapping getter + empty function returning default bool. Functions include coinBalanceOf(address) (auto-getter), sendCoin(address,uint256). Verified with soljson-v0.1.1+commit.6ff4cd6 and optimizer OFF.
Source Verified
Backfilled from awesome-ethereum-proofs PR #30.
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 C {
mapping(address => uint256) public coinBalanceOf;
function C() {
}
function sendCoin(address to, uint256 amount) returns (bool r) {
}
}External Links
Related contracts
Greeter
Same deployerA Frontier Greeter compiled with an intermediate soljson build - same source as the standard tutorial, slightly different string return codegen.
0x7717ef...25a1e1August 8, 2015token
Same deployerEarly tutorial-derived coin contract compiled with Solidity v0.1.1, deployed 9 days after Ethereum Frontier launch.
0x3c401b...da1634August 8, 2015token
Same deployerTutorial-derived coin contract (Solidity v0.1.1), one of multiple token instances deployed by the same address on Aug 8, 2015.
0x33e986...395d13August 8, 2015token
Same deployerTutorial-derived coin contract (Solidity v0.1.1), one of multiple FirstCoin instances deployed by the same address on Aug 8, 2015.
0xe9712e...968a4cAugust 8, 2015token
Same deployerTutorial-derived coin contract (Solidity v0.1.1), one of multiple FirstCoin instances deployed by the same address on Aug 8, 2015.
0xdff42a...a4ec5eAugust 8, 2015token
Same deployerTutorial-derived coin contract (Solidity v0.1.1), one of multiple token instances deployed by the same address on Aug 8, 2015.
0x98f478...d7e0baAugust 8, 2015