Timestamp-parity coinflip; payout is `2 * msg.value` via `send`.
Key Facts
Description
Timestamp-parity coinflip; payout is 2 * msg.value via send. Functions include fallback only. Verified with soljson-v0.1.1+commit.6ff4cd6 (also matches native solc-0.1.0-056180fb2) and optimizer ON.
Source Verified
Backfilled from awesome-ethereum-proofs PR #33.
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 CoinFlip {
function () {
var v = msg.value;
var t = block.timestamp;
if (t % 2 == 0) {
} else {
msg.sender.send(2 * v);
}
}
}External Links
Related contracts
Greeter
Same deployerA Frontier-era Greeter contract with the message: 'Hello World!'
0x113158...72fa8aAugust 8, 2015CoinFlipper
Same deployerTimestamp-parity coinflip with balance guard and donate().
0xb87824...8642adAugust 8, 2015Multiply7
Same deployerThe Multiply7 tutorial contract — one of the first Solidity examples ever deployed to mainnet.
0xfcb20a...b96d3fAugust 10, 2015Pyramid
Same deployerMember-added pyramid/chain list with equal-share claim distribution.
0xdf4b51...dc9b87August 10, 2015