Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.009658908493911231 ETH
Eth Value
$33.64 (@ $3,482.70/ETH)More Info
Private Name Tags
Latest 25 from a total of 88 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Sac Upto | 20269820 | 168 days ago | IN | 0 ETH | 0.00181906 | ||||
Sac Upto | 20269798 | 168 days ago | IN | 0 ETH | 0.00177324 | ||||
Sac Upto | 20269493 | 168 days ago | IN | 0 ETH | 0.00113578 | ||||
Sac Upto | 20267354 | 169 days ago | IN | 0 ETH | 0.00031523 | ||||
Sac Upto | 20266269 | 169 days ago | IN | 0 ETH | 0.00031917 | ||||
Sac Upto | 20265964 | 169 days ago | IN | 0 ETH | 0.00024461 | ||||
Sac Upto | 20265656 | 169 days ago | IN | 0 ETH | 0.00031516 | ||||
Sac Upto | 20265329 | 169 days ago | IN | 0 ETH | 0.00028103 | ||||
Sac Upto | 14428692 | 1010 days ago | IN | 0 ETH | 0.00251797 | ||||
Sac Up | 14428680 | 1010 days ago | IN | 0 ETH | 0.0004301 | ||||
Validate | 14428676 | 1010 days ago | IN | 0 ETH | 0.00051071 | ||||
Fetchvault | 7258727 | 2131 days ago | IN | 0 ETH | 0.00009703 | ||||
Sac Upto | 7243777 | 2135 days ago | IN | 0 ETH | 0.00183948 | ||||
Sac Upto | 7243690 | 2135 days ago | IN | 0 ETH | 0.00078338 | ||||
Sac Upto | 7145470 | 2156 days ago | IN | 0 ETH | 0.00125858 | ||||
Sac Upto | 7145454 | 2156 days ago | IN | 0 ETH | 0.00043521 | ||||
Sac Upto | 7117877 | 2162 days ago | IN | 0 ETH | 0.00183948 | ||||
Sac Upto | 7117863 | 2162 days ago | IN | 0 ETH | 0.00191448 | ||||
Fetchvault | 7117453 | 2162 days ago | IN | 0 ETH | 0.00012504 | ||||
Sac Upto | 7116967 | 2162 days ago | IN | 0 ETH | 0.00110369 | ||||
Sac Upto | 7116944 | 2162 days ago | IN | 0 ETH | 0.00110369 | ||||
Sac Upto | 7116927 | 2162 days ago | IN | 0 ETH | 0.00110369 | ||||
Sac Upto | 7116910 | 2162 days ago | IN | 0 ETH | 0.00110369 | ||||
Sac Upto | 7116892 | 2162 days ago | IN | 0 ETH | 0.00065463 | ||||
Sac Upto | 7116876 | 2162 days ago | IN | 0 ETH | 0.00110369 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20269820 | 168 days ago | 0.1 ETH | ||||
20269798 | 168 days ago | 0.1 ETH | ||||
20269493 | 168 days ago | 0.1 ETH | ||||
20269486 | 168 days ago | 0.3089769 ETH | ||||
20267354 | 169 days ago | 0.1 ETH | ||||
20266269 | 169 days ago | 0.1 ETH | ||||
20265964 | 169 days ago | 0.1 ETH | ||||
20265656 | 169 days ago | 0.1 ETH | ||||
20265329 | 169 days ago | 0.1 ETH | ||||
14428692 | 1010 days ago | 0.1 ETH | ||||
14428660 | 1010 days ago | 0.51909615 ETH | ||||
7258733 | 2131 days ago | 0.90710755 ETH | ||||
7258729 | 2131 days ago | 0.90710755 ETH | ||||
7258727 | 2131 days ago | 0.90710755 ETH | ||||
7243777 | 2135 days ago | 0.1 ETH | ||||
7243690 | 2135 days ago | 0.1 ETH | ||||
7243532 | 2135 days ago | 0.22695453 ETH | ||||
7145470 | 2156 days ago | 0.1 ETH | ||||
7145454 | 2156 days ago | 0.1 ETH | ||||
7145387 | 2156 days ago | 0.24836219 ETH | ||||
7117877 | 2162 days ago | 0.1 ETH | ||||
7117863 | 2162 days ago | 0.1 ETH | ||||
7117578 | 2162 days ago | 0.16439582 ETH | ||||
7117529 | 2162 days ago | 3.76199504 ETH | ||||
7117453 | 2162 days ago | 3.76199504 ETH |
Loading...
Loading
Contract Name:
Slaughter3D
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-01-19 */ pragma solidity ^0.4.25; interface Snip3DInterface { function() payable external; function offerAsSacrifice(address MN) external payable ; function withdraw() external ; function myEarnings() external view returns(uint256); function tryFinalizeStage() external; function sendInSoldier(address masternode) external payable; function fetchdivs(address toupdate) external; function shootSemiRandom() external; } // ---------------------------------------------------------------------------- // Owned contract // ---------------------------------------------------------------------------- contract Owned { address public owner; address public newOwner; event OwnershipTransferred(address indexed _from, address indexed _to); constructor() public { owner = 0x0B0eFad4aE088a88fFDC50BCe5Fb63c6936b9220; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address _newOwner) public onlyOwner { owner = _newOwner; } } // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(c >= a); } function sub(uint a, uint b) internal pure returns (uint c) { require(b <= a); c = a - b; } function mul(uint a, uint b) internal pure returns (uint c) { c = a * b; require(a == 0 || c / a == b); } function div(uint a, uint b) internal pure returns (uint c) { require(b > 0); c = a / b; } } // Snip3dbridge contract contract Slaughter3D is Owned { using SafeMath for uint; Snip3DInterface constant Snip3Dcontract_ = Snip3DInterface(0xb172BB8BAae74F27Ade3211E0c145388d3b4f8d8);// change to real address uint256 public toSlaughter; function harvestableBalance() view public returns(uint256) { uint256 toReturn = address(this).balance.sub(toSlaughter); return ( toReturn) ; } function unfetchedVault() view public returns(uint256) { return ( Snip3Dcontract_.myEarnings()) ; } function sacUp () public payable { toSlaughter = toSlaughter.add(msg.value); } function sacUpto (address masternode) public { require(toSlaughter> 0.1 ether); toSlaughter = toSlaughter.sub(0.1 ether); Snip3Dcontract_.offerAsSacrifice.value(0.1 ether)(masternode); } function validate () public { Snip3Dcontract_.tryFinalizeStage(); } function fetchvault () public { Snip3Dcontract_.withdraw(); } function fetchBalance () onlyOwner public { uint256 tosend = address(this).balance.sub(toSlaughter); msg.sender.transfer(tosend); } function () external payable{} // needs for divs }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[],"name":"fetchBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"harvestableBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"toSlaughter","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"sacUp","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"validate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"fetchvault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"masternode","type":"address"}],"name":"sacUpto","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"unfetchedVault","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
608060405260008054600160a060020a031916730b0efad4ae088a88ffdc50bce5fb63c6936b922017905561051d806100396000396000f3006080604052600436106100955763ffffffff60e060020a6000350416632157c46a8114610097578063373420d9146100ac578063489d874a146100d35780635ce093de146100e85780636901f668146100f05780638da5cb5b14610105578063984a2df11461013657806399d28efc1461014b578063d4ee1d901461016c578063d69ff35214610181578063f2fde38b14610196575b005b3480156100a357600080fd5b506100956101b7565b3480156100b857600080fd5b506100c1610218565b60408051918252519081900360200190f35b3480156100df57600080fd5b506100c1610238565b61009561023e565b3480156100fc57600080fd5b50610095610256565b34801561011157600080fd5b5061011a6102c2565b60408051600160a060020a039092168252519081900360200190f35b34801561014257600080fd5b506100956102d1565b34801561015757600080fd5b50610095600160a060020a0360043516610323565b34801561017857600080fd5b5061011a6103f2565b34801561018d57600080fd5b506100c1610401565b3480156101a257600080fd5b50610095600160a060020a0360043516610486565b60008054600160a060020a031633146101cf57600080fd5b6002546101e49030319063ffffffff6104cc16565b604051909150339082156108fc029083906000818181858888f19350505050158015610214573d6000803e3d6000fd5b5050565b60025460009081906102329030319063ffffffff6104cc16565b92915050565b60025481565b600254610251903463ffffffff6104e116565b600255565b73b172bb8baae74f27ade3211e0c145388d3b4f8d8600160a060020a031663a73598fd6040518163ffffffff1660e060020a028152600401600060405180830381600087803b1580156102a857600080fd5b505af11580156102bc573d6000803e3d6000fd5b50505050565b600054600160a060020a031681565b73b172bb8baae74f27ade3211e0c145388d3b4f8d8600160a060020a0316633ccfd60b6040518163ffffffff1660e060020a028152600401600060405180830381600087803b1580156102a857600080fd5b60025467016345785d8a00001061033957600080fd5b6002546103549067016345785d8a000063ffffffff6104cc16565b600255604080517f680478b1000000000000000000000000000000000000000000000000000000008152600160a060020a0383166004820152905173b172bb8baae74f27ade3211e0c145388d3b4f8d89163680478b19167016345785d8a00009160248082019260009290919082900301818588803b1580156103d657600080fd5b505af11580156103ea573d6000803e3d6000fd5b505050505050565b600154600160a060020a031681565b600073b172bb8baae74f27ade3211e0c145388d3b4f8d8600160a060020a031663ffe6bbd86040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561045557600080fd5b505af1158015610469573d6000803e3d6000fd5b505050506040513d602081101561047f57600080fd5b5051905090565b600054600160a060020a0316331461049d57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828211156104db57600080fd5b50900390565b8181018281101561023257600080fd00a165627a7a72305820849491e0f39b9e476cd85fd3f7e0586825ffaf8111a1a0e5672e92bc96e52a950029
Deployed Bytecode
0x6080604052600436106100955763ffffffff60e060020a6000350416632157c46a8114610097578063373420d9146100ac578063489d874a146100d35780635ce093de146100e85780636901f668146100f05780638da5cb5b14610105578063984a2df11461013657806399d28efc1461014b578063d4ee1d901461016c578063d69ff35214610181578063f2fde38b14610196575b005b3480156100a357600080fd5b506100956101b7565b3480156100b857600080fd5b506100c1610218565b60408051918252519081900360200190f35b3480156100df57600080fd5b506100c1610238565b61009561023e565b3480156100fc57600080fd5b50610095610256565b34801561011157600080fd5b5061011a6102c2565b60408051600160a060020a039092168252519081900360200190f35b34801561014257600080fd5b506100956102d1565b34801561015757600080fd5b50610095600160a060020a0360043516610323565b34801561017857600080fd5b5061011a6103f2565b34801561018d57600080fd5b506100c1610401565b3480156101a257600080fd5b50610095600160a060020a0360043516610486565b60008054600160a060020a031633146101cf57600080fd5b6002546101e49030319063ffffffff6104cc16565b604051909150339082156108fc029083906000818181858888f19350505050158015610214573d6000803e3d6000fd5b5050565b60025460009081906102329030319063ffffffff6104cc16565b92915050565b60025481565b600254610251903463ffffffff6104e116565b600255565b73b172bb8baae74f27ade3211e0c145388d3b4f8d8600160a060020a031663a73598fd6040518163ffffffff1660e060020a028152600401600060405180830381600087803b1580156102a857600080fd5b505af11580156102bc573d6000803e3d6000fd5b50505050565b600054600160a060020a031681565b73b172bb8baae74f27ade3211e0c145388d3b4f8d8600160a060020a0316633ccfd60b6040518163ffffffff1660e060020a028152600401600060405180830381600087803b1580156102a857600080fd5b60025467016345785d8a00001061033957600080fd5b6002546103549067016345785d8a000063ffffffff6104cc16565b600255604080517f680478b1000000000000000000000000000000000000000000000000000000008152600160a060020a0383166004820152905173b172bb8baae74f27ade3211e0c145388d3b4f8d89163680478b19167016345785d8a00009160248082019260009290919082900301818588803b1580156103d657600080fd5b505af11580156103ea573d6000803e3d6000fd5b505050505050565b600154600160a060020a031681565b600073b172bb8baae74f27ade3211e0c145388d3b4f8d8600160a060020a031663ffe6bbd86040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561045557600080fd5b505af1158015610469573d6000803e3d6000fd5b505050506040513d602081101561047f57600080fd5b5051905090565b600054600160a060020a0316331461049d57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828211156104db57600080fd5b50900390565b8181018281101561023257600080fd00a165627a7a72305820849491e0f39b9e476cd85fd3f7e0586825ffaf8111a1a0e5672e92bc96e52a950029
Swarm Source
bzzr://849491e0f39b9e476cd85fd3f7e0586825ffaf8111a1a0e5672e92bc96e52a95
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,482.7 | 0.00965891 | $33.64 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.