Overview
ETH Balance
0.152879378976600337 ETH
Eth Value
$561.62 (@ $3,673.63/ETH)More Info
Private Name Tags
Latest 25 from a total of 99 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Sac Upto | 20370631 | 129 days ago | IN | 0 ETH | 0.00295579 | ||||
Sac Up | 20370405 | 129 days ago | IN | 0.0294199 ETH | 0.00013233 | ||||
Sac Upto | 8512463 | 1909 days ago | IN | 0 ETH | 0.0011546 | ||||
Sac Upto | 8512407 | 1909 days ago | IN | 0 ETH | 0.0011546 | ||||
Sac Upto | 8491800 | 1912 days ago | IN | 0 ETH | 0.00071052 | ||||
Fetchvault | 8318216 | 1939 days ago | IN | 0 ETH | 0.00002265 | ||||
Sac Upto | 8318210 | 1939 days ago | IN | 0 ETH | 0.00018305 | ||||
Sac Upto | 8318196 | 1939 days ago | IN | 0 ETH | 0.00018305 | ||||
Sac Upto | 8135420 | 1968 days ago | IN | 0 ETH | 0.00085161 | ||||
Sac Upto | 8086853 | 1975 days ago | IN | 0 ETH | 0.00018305 | ||||
Sac Upto | 8084066 | 1976 days ago | IN | 0 ETH | 0.0003661 | ||||
Sac Upto | 8079959 | 1976 days ago | IN | 0 ETH | 0.0003661 | ||||
Sac Upto | 8079944 | 1976 days ago | IN | 0 ETH | 0.0003661 | ||||
Sac Upto | 8031783 | 1984 days ago | IN | 0 ETH | 0.0007322 | ||||
Sac Upto | 8031715 | 1984 days ago | IN | 0 ETH | 0.00088779 | ||||
Sac Upto | 8030634 | 1984 days ago | IN | 0 ETH | 0.0003661 | ||||
Sac Upto | 8028868 | 1984 days ago | IN | 0 ETH | 0.0003661 | ||||
Sac Upto | 8017020 | 1986 days ago | IN | 0 ETH | 0.0003661 | ||||
Sac Upto | 8017001 | 1986 days ago | IN | 0 ETH | 0.00021248 | ||||
Sac Upto | 8009056 | 1987 days ago | IN | 0 ETH | 0.00035414 | ||||
Sac Upto | 8001174 | 1989 days ago | IN | 0 ETH | 0.00004724 | ||||
Fetchvault | 8001158 | 1989 days ago | IN | 0 ETH | 0.0000453 | ||||
Sac Upto | 8001119 | 1989 days ago | IN | 0 ETH | 0.00061463 | ||||
Sac Upto | 7991314 | 1990 days ago | IN | 0 ETH | 0.00054915 | ||||
Sac Upto | 7972213 | 1993 days ago | IN | 0 ETH | 0.0003661 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20370631 | 129 days ago | 0.1 ETH | ||||
8512463 | 1909 days ago | 0.1 ETH | ||||
8512407 | 1909 days ago | 0.1 ETH | ||||
8512349 | 1909 days ago | 0.19828489 ETH | ||||
8491800 | 1912 days ago | 0.1 ETH | ||||
8491792 | 1912 days ago | 0.11892788 ETH | ||||
8318216 | 1939 days ago | 0.00335784 ETH | ||||
8318210 | 1939 days ago | 0.1 ETH | ||||
8318196 | 1939 days ago | 0.1 ETH | ||||
8318184 | 1939 days ago | 0.15802458 ETH | ||||
8135420 | 1968 days ago | 0.1 ETH | ||||
8135391 | 1968 days ago | 0.10957318 ETH | ||||
8086853 | 1975 days ago | 0.1 ETH | ||||
8086839 | 1975 days ago | 0.11283414 ETH | ||||
8084066 | 1976 days ago | 0.1 ETH | ||||
8084057 | 1976 days ago | 0.11547274 ETH | ||||
8079959 | 1976 days ago | 0.1 ETH | ||||
8079944 | 1976 days ago | 0.1 ETH | ||||
8079885 | 1976 days ago | 0.22809904 ETH | ||||
8031783 | 1984 days ago | 0.1 ETH | ||||
8031715 | 1984 days ago | 0.1 ETH | ||||
8031672 | 1984 days ago | 0.13538181 ETH | ||||
8030634 | 1984 days ago | 0.1 ETH | ||||
8030614 | 1984 days ago | 0.10944 ETH | ||||
8028868 | 1984 days ago | 0.1 ETH |
Loading...
Loading
Contract Name:
Snip3dbridgecontract
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-02-24 */ 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, uint256 amount) external payable; function fetchdivs(address toupdate) external; function shootSemiRandom() external; function vaultToWallet(address toPay) 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 Snip3dbridgecontract is Owned { using SafeMath for uint; Snip3DInterface constant Snip3Dcontract_ = Snip3DInterface(0x31cF8B6E8bB6cB16F23889F902be86775bB1d0B3);//0x31cF8B6E8bB6cB16F23889F902be86775bB1d0B3); uint256 public toSnipe; function harvestableBalance() view public returns(uint256) { uint256 tosend = address(this).balance.sub(toSnipe); return ( tosend) ; } function unfetchedVault() view public returns(uint256) { return ( Snip3Dcontract_.myEarnings()) ; } function sacUp () public payable { toSnipe = toSnipe.add(msg.value); } function sacUpto (address masternode, uint256 amount) public { require(toSnipe>amount.mul(0.1 ether)); toSnipe = toSnipe.sub(amount.mul(0.1 ether)); Snip3Dcontract_.sendInSoldier.value(amount.mul(0.1 ether))(masternode , amount); } function fetchvault () public { Snip3Dcontract_.vaultToWallet(address(this)); } function shoot () public { Snip3Dcontract_.shootSemiRandom(); } function fetchBalance () onlyOwner public { uint256 tosend = address(this).balance.sub(toSnipe); 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":false,"inputs":[],"name":"sacUp","outputs":[],"payable":true,"stateMutability":"payable","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":"amount","type":"uint256"}],"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":"shoot","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"toSnipe","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
608060405260008054600160a060020a031916730b0efad4ae088a88ffdc50bce5fb63c6936b9220179055610583806100396000396000f3006080604052600436106100955763ffffffff60e060020a6000350416632157c46a8114610097578063373420d9146100ac5780635ce093de146100d35780638da5cb5b146100db578063984a2df11461010c578063b578418e14610121578063d4ee1d9014610145578063d69ff3521461015a578063d95f98ce1461016f578063f139c8e814610184578063f2fde38b14610199575b005b3480156100a357600080fd5b506100956101ba565b3480156100b857600080fd5b506100c161021b565b60408051918252519081900360200190f35b61009561023b565b3480156100e757600080fd5b506100f0610253565b60408051600160a060020a039092168252519081900360200190f35b34801561011857600080fd5b50610095610262565b34801561012d57600080fd5b50610095600160a060020a03600435166024356102e7565b34801561015157600080fd5b506100f06103db565b34801561016657600080fd5b506100c16103ea565b34801561017b57600080fd5b5061009561046f565b34801561019057600080fd5b506100c16104c1565b3480156101a557600080fd5b50610095600160a060020a03600435166104c7565b60008054600160a060020a031633146101d257600080fd5b6002546101e79030319063ffffffff61050d16565b604051909150339082156108fc029083906000818181858888f19350505050158015610217573d6000803e3d6000fd5b5050565b60025460009081906102359030319063ffffffff61050d16565b92915050565b60025461024e903463ffffffff61052216565b600255565b600054600160a060020a031681565b604080517fdc82a98f00000000000000000000000000000000000000000000000000000000815230600482015290517331cf8b6e8bb6cb16f23889f902be86775bb1d0b39163dc82a98f91602480830192600092919082900301818387803b1580156102cd57600080fd5b505af11580156102e1573d6000803e3d6000fd5b50505050565b6102ff8167016345785d8a000063ffffffff61053216565b6002541161030c57600080fd5b6103366103278267016345785d8a000063ffffffff61053216565b6002549063ffffffff61050d16565b6002557331cf8b6e8bb6cb16f23889f902be86775bb1d0b363be7f3a4c61036b8367016345785d8a000063ffffffff61053216565b84846040518463ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a03168152602001828152602001925050506000604051808303818588803b1580156103be57600080fd5b505af11580156103d2573d6000803e3d6000fd5b50505050505050565b600154600160a060020a031681565b60007331cf8b6e8bb6cb16f23889f902be86775bb1d0b3600160a060020a031663ffe6bbd86040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561043e57600080fd5b505af1158015610452573d6000803e3d6000fd5b505050506040513d602081101561046857600080fd5b5051905090565b7331cf8b6e8bb6cb16f23889f902be86775bb1d0b3600160a060020a031663b0f482be6040518163ffffffff1660e060020a028152600401600060405180830381600087803b1580156102cd57600080fd5b60025481565b600054600160a060020a031633146104de57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111561051c57600080fd5b50900390565b8181018281101561023557600080fd5b81810282158061054c575081838281151561054957fe5b04145b151561023557600080fd00a165627a7a7230582054202b3c5a3970069b1726ee8cc5072089ae68db74c79050b8ca2203c6656ac30029
Deployed Bytecode
0x6080604052600436106100955763ffffffff60e060020a6000350416632157c46a8114610097578063373420d9146100ac5780635ce093de146100d35780638da5cb5b146100db578063984a2df11461010c578063b578418e14610121578063d4ee1d9014610145578063d69ff3521461015a578063d95f98ce1461016f578063f139c8e814610184578063f2fde38b14610199575b005b3480156100a357600080fd5b506100956101ba565b3480156100b857600080fd5b506100c161021b565b60408051918252519081900360200190f35b61009561023b565b3480156100e757600080fd5b506100f0610253565b60408051600160a060020a039092168252519081900360200190f35b34801561011857600080fd5b50610095610262565b34801561012d57600080fd5b50610095600160a060020a03600435166024356102e7565b34801561015157600080fd5b506100f06103db565b34801561016657600080fd5b506100c16103ea565b34801561017b57600080fd5b5061009561046f565b34801561019057600080fd5b506100c16104c1565b3480156101a557600080fd5b50610095600160a060020a03600435166104c7565b60008054600160a060020a031633146101d257600080fd5b6002546101e79030319063ffffffff61050d16565b604051909150339082156108fc029083906000818181858888f19350505050158015610217573d6000803e3d6000fd5b5050565b60025460009081906102359030319063ffffffff61050d16565b92915050565b60025461024e903463ffffffff61052216565b600255565b600054600160a060020a031681565b604080517fdc82a98f00000000000000000000000000000000000000000000000000000000815230600482015290517331cf8b6e8bb6cb16f23889f902be86775bb1d0b39163dc82a98f91602480830192600092919082900301818387803b1580156102cd57600080fd5b505af11580156102e1573d6000803e3d6000fd5b50505050565b6102ff8167016345785d8a000063ffffffff61053216565b6002541161030c57600080fd5b6103366103278267016345785d8a000063ffffffff61053216565b6002549063ffffffff61050d16565b6002557331cf8b6e8bb6cb16f23889f902be86775bb1d0b363be7f3a4c61036b8367016345785d8a000063ffffffff61053216565b84846040518463ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a03168152602001828152602001925050506000604051808303818588803b1580156103be57600080fd5b505af11580156103d2573d6000803e3d6000fd5b50505050505050565b600154600160a060020a031681565b60007331cf8b6e8bb6cb16f23889f902be86775bb1d0b3600160a060020a031663ffe6bbd86040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561043e57600080fd5b505af1158015610452573d6000803e3d6000fd5b505050506040513d602081101561046857600080fd5b5051905090565b7331cf8b6e8bb6cb16f23889f902be86775bb1d0b3600160a060020a031663b0f482be6040518163ffffffff1660e060020a028152600401600060405180830381600087803b1580156102cd57600080fd5b60025481565b600054600160a060020a031633146104de57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111561051c57600080fd5b50900390565b8181018281101561023557600080fd5b81810282158061054c575081838281151561054957fe5b04145b151561023557600080fd00a165627a7a7230582054202b3c5a3970069b1726ee8cc5072089ae68db74c79050b8ca2203c6656ac30029
Swarm Source
bzzr://54202b3c5a3970069b1726ee8cc5072089ae68db74c79050b8ca2203c6656ac3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,671.66 | 0.1529 | $561.32 |
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.