Bytecode verified via sibling
This contract shares identical runtime bytecode with a verified contract (0x14c3dedc...) which has been verified through compiler archaeology.
One of 2397 identical Destructible sibling clusters. Owner-only self-destruct with payable fallback emitting receipt event.
Key Facts
Description
One of 2397 identical Destructible sibling clusters. Owner-only self-destruct with payable fallback emitting receipt event. Compiled with solc 0.4.24. Exact code match; only trailing 34-byte Swarm metadata differs.
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)
contract Destructible {
/**
* @dev mapping of security => (investorEthAddress, investerInfo)
*/
address _owner; //owner of this contract
/*
* event emitted when ethers received in this contract
*/
event receipt(address indexed investor, uint value);
/**
* @dev Modifier to make a function callable only by the owner of the contract
*/
modifier onlyOwner() {
require(msg.sender == _owner);
_;
}
/**
* @dev Constructor of the Destructible
*/
constructor() public {
_owner = msg.sender;
}
/**
* @dev
* Payable fallback function.
* Function just emits event to be inline with 2300 gas limitation for fallback functions
*/
function() payable public {
emit receipt(msg.sender, msg.value);
}
/**
* @dev
* destroyAndSend
* @param _recipient is the recipient address to which fund held by this contract are to be remitted on selfdestruction
*/
function destroyAndSend(address _recipient) onlyOwner() public {
selfdestruct(_recipient);
}
}External Links
Related contracts
Destructible
Same deployerDestructible sibling — cluster of 2395 identical deployments.
0x009d15...56973cJune 7, 2018Destructible
Same deployerDestructible sibling cluster of 2396 identical deployments.
0x00965f...7cde24June 8, 2018Destructible
Same deployerDestructible sibling — cluster of 2393 identical deployments.
0x00d11b...da7baeJune 9, 2018Destructible
Same deployerOwner-only self-destruct contract with a payable fallback that emits a `receipt` event on every incoming transfer. Cluster of 2399 identical deployments.
0x003487...423f3bJune 9, 2018Destructible
Same deployerOwner-only self-destruct contract with a payable fallback that emits a `receipt` event on every incoming transfer. Cluster of 2398 identical deployments (sibling of 0x003487bd cluster).
0x008737...f44102June 9, 2018Destructible
Same deployerDestructible sibling cluster of 2394 identical deployments.
0x009e9e...51824cJune 10, 2018