This contract is not yet documented
Know something about this contract? Switch to the History tab and suggest an edit to help preserve Ethereum history.
Key Facts
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Byzantium Era
First Metropolis hard fork. Added zk-SNARK precompiles, REVERT opcode, and staticcall.
Bytecode Overview
Verified Source Available
This contract has verified source code on Etherscan.
Show source code (Solidity)
{{
"language": "Solidity",
"sources": {
"Sender.sol": {
"content": "// Submitted by EthereumHistory (ethereumhistory.com)\npragma solidity ^0.4.21;\n\ncontract ERC20 {\n function transfer(address _to, uint256 _value) public returns (bool);\n function balanceOf(address _owner) public returns (uint256);\n}\n\ncontract Sender {\n ERC20 token;\n ERC20 preset;\n address public owner;\n\n function sendTokens() public returns (uint256) {\n require(owner == msg.sender);\n token = preset;\n require(token.transfer(msg.sender, token.balanceOf(this)));\n return token.balanceOf(msg.sender);\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}
}}External Links
Related contracts
Sender
Same deployerSingle-use token drainer that copies a preset token address into its working slot, sends the full balance to its owner, and reports the owner's new balance.
0x00078c...a317d1June 21, 2018Sender
Same deployerThe same single-use token drainer as its sibling, compiled by an earlier solc release.
0x009660...87e100June 22, 2018Msg
Same eraMinimal contract that stores a single public string in state, exposed via the auto-generated m() getter. First of 281 identical siblings. Source verified by EthereumHistory.
0x2c8f58...37b173January 13, 2018Wallet
Same eraToken collection wallet that moves an entire token balance to a chosen address, without the ERC223 callback handler.
0x002204...531195January 19, 2018Wallet
Same eraOwner wallet that forwards ether to its owner, logs any call from a stranger with the full calldata, and lets the owner execute arbitrary calls.
0x001feb...9e7a4fJanuary 20, 2018Sweeper
Same eraMinimal ETH sweeper, first of 1,900 identical deployments in a 2-day burst in January 2018. All sweep to a single hardcoded destination. Source verified by EthereumHistory.
0xeb15f6...6cb3e1January 23, 2018