A minimal Ether receiver that emits a Received event on every payment, deployed from Vitalik Buterin's testing address using Solidity 0.4.4.
Historical Significance
Deployed from Vitalik Buterin's personal deployer address (0x1db3439a) on October 30, 2016. Compiled with Solidity 0.4.4, adding the non-payable function guard pattern introduced in 0.4.x. The sibling contract at 0x117a8de2 uses identical source but the older 0.3.6 compiler, making these two contracts a unique pair showing compiler evolution.
Key Facts
Description
Deployed by Vitalik Buterin. A minimal Ether receiver that emits a Received event on every incoming payment, deployed from one of Vitalik's factory/example contracts.
Source Verified
Compiled with solc 0.4.4, no optimizer. Same source as 0x117a8de2 but 0.4.x adds non-payable guard bytes.
Tangerine Whistle Era
Emergency fork to address DoS attacks. Repriced IO-heavy opcodes.
Bytecode Overview
Verified Source Available
This contract has verified source code.
View Verification ProofShow source code (Solidity)
{
"language": "Solidity",
"sources": {
"Receiver.sol": {
"content": "// Submitted by EthereumHistory (ethereumhistory.com)\ncontract Receiver {\n event Received(uint256 value);\n function() {\n Received(msg.value);\n }\n}\n"
}
},
"settings": {
"libraries": {},
"optimizer": {
"runs": 200,
"enabled": false
},
"compilationTarget": {
"Receiver.sol": "Receiver"
}
}
}External Links
Related contracts
SerpentGamble
Same deployerProvably-fair betting game where players choose their own odds. The owner settles bets with a commit-reveal random seed. Includes a 2-day emergency refund.
0x034df8...200e2fSeptember 20, 2015SerpentGamble
Same deployerSibling of 0x034dF870 (SerpentGamble). Provably-fair Serpent betting game; players choose their own odds, owner settles via commit-reveal seed, 2-day refund.
0x9ca7e9...fa8bb4September 21, 2015SerpentGamble
Same deployerSibling of 0x034dF870 (SerpentGamble). Provably-fair Serpent betting game; players choose their own odds, owner settles via commit-reveal seed, 2-day refund.
0x75649a...176028September 21, 2015SerpentGamble
Same deployerIntermediate build of serpent_gamble, a provably-fair betting dapp (Bet/Win/Loss/NewSeed), related to verified sibling 0x59375871. Source not yet reconstructed.
0xe1a99f...0d2457September 21, 2015SerpentGamble
Same deployerIntermediate build of serpent_gamble, a provably-fair betting dapp (Bet/Win/Loss/NewSeed), related to verified sibling 0x59375871. Source not yet reconstructed.
0xdc00a9...15861fSeptember 21, 2015SerpentGamble
Same deployerIntermediate build of serpent_gamble, a provably-fair betting dapp (Bet/Win/Loss/NewSeed), related to verified sibling 0x59375871. Source not yet reconstructed.
0xd0ed09...300b48September 21, 2015