Overview
ETH Balance
0.5 ETH
Eth Value
$1,575.23 (@ $3,150.45/ETH)More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 10271111 | 1609 days ago | IN | 0 ETH | 0.020026 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
10271674 | 1609 days ago | 0.025 ETH | ||||
10271674 | 1609 days ago | 0.025 ETH | ||||
10271669 | 1609 days ago | 0.025 ETH | ||||
10271640 | 1609 days ago | 0.025 ETH | ||||
10271627 | 1609 days ago | 0.025 ETH | ||||
10271627 | 1609 days ago | 0.025 ETH | ||||
10271623 | 1609 days ago | 0.025 ETH | ||||
10271623 | 1609 days ago | 0.025 ETH | ||||
10271622 | 1609 days ago | 0.05 ETH | ||||
10271613 | 1609 days ago | 0.1 ETH | ||||
10271613 | 1609 days ago | 0.025 ETH | ||||
10271613 | 1609 days ago | 0.025 ETH | ||||
10271600 | 1609 days ago | 0.025 ETH | ||||
10271600 | 1609 days ago | 0.025 ETH | ||||
10271591 | 1609 days ago | 0.025 ETH | ||||
10271591 | 1609 days ago | 0.025 ETH | ||||
10271590 | 1609 days ago | 0.5 ETH | ||||
10271590 | 1609 days ago | 0.5 ETH | ||||
10271590 | 1609 days ago | 0.025 ETH | ||||
10271570 | 1609 days ago | 0.05 ETH | ||||
10271564 | 1609 days ago | 0.025 ETH | ||||
10271563 | 1609 days ago | 0.025 ETH | ||||
10271563 | 1609 days ago | 0.025 ETH | ||||
10271534 | 1609 days ago | 0.05 ETH | ||||
10271534 | 1609 days ago | 0.025 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x3EbfEE81...EcF0F6C26 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Owner
Compiler Version
v0.5.11+commit.c082d0b4
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-06-15 */ pragma solidity ^0.5.0; interface IVoomo { function checkState() external; } contract Owner { IVoomo public voomo; address payable public owner1; address payable public owner2; uint256 public constant limit = 1 ether; event Withdraw(uint256 value); event FundsReceived(uint256 value); modifier onlyOwners { require(msg.sender == owner1 || msg.sender == owner2, "onlyOwners: access denied"); _; } constructor (address payable o1, address payable o2) public { require(o1 != address(0) && o2 != address(0), 'Owner: invalid addresses'); owner1 = o1; owner2 = o2; } function () external payable { _deposited(msg.value); } function deposit() external payable { _deposited(msg.value); } function setContractAddress(IVoomo _voomo) external { require(address(voomo) == address(0), "setContractAddress: invalid adderss"); voomo = _voomo; } function checkState() external onlyOwners { voomo.checkState(); } function withdraw() external onlyOwners { uint256 balance = address(this).balance; owner1.transfer(balance/2); owner2.transfer(balance/2); } function _deposited(uint256 value) private { require(msg.value > 0, "_deposited: empty value"); uint256 balance = address(this).balance; if (balance >= limit) { owner1.transfer(balance/2); owner2.transfer(balance/2); emit Withdraw(balance); } emit FundsReceived(value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IVoomo","name":"_voomo","type":"address"}],"name":"setContractAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner2","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner1","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"checkState","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"deposit","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"voomo","outputs":[{"internalType":"contract IVoomo","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"o1","type":"address"},{"internalType":"address payable","name":"o2","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"FundsReceived","type":"event"}]
Deployed Bytecode
0x60806040526004361061007b5760003560e01c806396dfcbea1161004e57806396dfcbea14610114578063a4d66daf14610129578063d0e30db014610150578063ecf37905146101585761007b565b80633ccfd60b14610086578063477bddaa1461009b57806352709725146100ce57806373688914146100ff575b6100843461016d565b005b34801561009257600080fd5b506100846102b7565b3480156100a757600080fd5b50610084600480360360208110156100be57600080fd5b50356001600160a01b03166103a4565b3480156100da57600080fd5b506100e361040e565b604080516001600160a01b039092168252519081900360200190f35b34801561010b57600080fd5b506100e361041d565b34801561012057600080fd5b5061008461042c565b34801561013557600080fd5b5061013e6104f7565b60408051918252519081900360200190f35b610084610503565b34801561016457600080fd5b506100e361050e565b600034116101c2576040805162461bcd60e51b815260206004820152601760248201527f5f6465706f73697465643a20656d7074792076616c7565000000000000000000604482015290519081900360640190fd5b3031670de0b6b3a76400008110610280576001546040516001600160a01b03909116906002830480156108fc02916000818181858888f1935050505015801561020f573d6000803e3d6000fd5b50600280546040516001600160a01b0390911691830480156108fc02916000818181858888f1935050505015801561024b573d6000803e3d6000fd5b506040805182815290517f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d9181900360200190a15b6040805183815290517fbcdc7071c1beb6dcf2744621e0b29a2f2432ee20812d9ca5e3d5e8f9308d93a39181900360200190a15050565b6001546001600160a01b03163314806102da57506002546001600160a01b031633145b610327576040805162461bcd60e51b81526020600482015260196024820152781bdb9b1e53dddb995c9cce881858d8d95cdcc819195b9a5959603a1b604482015290519081900360640190fd5b6001546040513031916001600160a01b0316906002830480156108fc02916000818181858888f19350505050158015610364573d6000803e3d6000fd5b50600280546040516001600160a01b0390911691830480156108fc02916000818181858888f193505050501580156103a0573d6000803e3d6000fd5b5050565b6000546001600160a01b0316156103ec5760405162461bcd60e51b815260040180806020018281038252602381526020018061051e6023913960400191505060405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031681565b6001546001600160a01b031681565b6001546001600160a01b031633148061044f57506002546001600160a01b031633145b61049c576040805162461bcd60e51b81526020600482015260196024820152781bdb9b1e53dddb995c9cce881858d8d95cdcc819195b9a5959603a1b604482015290519081900360640190fd5b6000805460408051634b6fe5f560e11b815290516001600160a01b03909216926396dfcbea9260048084019382900301818387803b1580156104dd57600080fd5b505af11580156104f1573d6000803e3d6000fd5b50505050565b670de0b6b3a764000081565b61050c3461016d565b565b6000546001600160a01b03168156fe736574436f6e7472616374416464726573733a20696e76616c69642061646465727373a265627a7a72315820a0ef34ed288fa9ffee8b5e5d080454ae1f9437f1368aed58f878fdcfb30b3ba364736f6c634300050b0032
Deployed Bytecode Sourcemap
89:1569:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;721:21;732:9;721:10;:21::i;:::-;89:1569;1109:172;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1109:172:0;;;:::i;842:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;842:172:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;842:172:0;-1:-1:-1;;;;;842:172:0;;:::i;173:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;173:29:0;;;:::i;:::-;;;;-1:-1:-1;;;;;173:29:0;;;;;;;;;;;;;;137;;8:9:-1;5:2;;;30:1;27;20:12;5:2;137:29:0;;;:::i;1022:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1022:79:0;;;:::i;209:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;209:39:0;;;:::i;:::-;;;;;;;;;;;;;;;;758:76;;;:::i;111:19::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;111:19:0;;;:::i;1289:366::-;1363:1;1351:9;:13;1343:49;;;;;-1:-1:-1;;;1343:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1431:4;1423:21;241:7;1459:16;;1455:155;;1492:6;;:26;;-1:-1:-1;;;;;1492:6:0;;;;1516:1;1508:9;;1492:26;;;;;;;;;1508:9;1492:6;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;1533:6:0;;;:26;;-1:-1:-1;;;;;1533:6:0;;;;1549:9;;1533:26;;;;;;;;;1549:9;1533:6;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;1581:17:0;;;;;;;;;;;;;;;;;1455:155;1627:20;;;;;;;;;;;;;;;;;1289:366;;:::o;1109:172::-;389:6;;-1:-1:-1;;;;;389:6:0;375:10;:20;;:44;;-1:-1:-1;413:6:0;;-1:-1:-1;;;;;413:6:0;399:10;:20;375:44;367:82;;;;;-1:-1:-1;;;367:82:0;;;;;;;;;;;;-1:-1:-1;;;367:82:0;;;;;;;;;;;;;;;1210:6;;:26;;1186:4;1178:21;;-1:-1:-1;;;;;1210:6:0;;1234:1;1226:9;;1210:26;;;;;;;;;1226:9;1210:6;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;1247:6:0;;;:26;;-1:-1:-1;;;;;1247:6:0;;;;1263:9;;1247:26;;;;;;;;;1263:9;1247:6;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1247:26:0;460:1;1109:172::o;842:::-;939:1;921:5;-1:-1:-1;;;;;921:5:0;913:28;905:76;;;;-1:-1:-1;;;905:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;992:5;:14;;-1:-1:-1;;;;;;992:14:0;-1:-1:-1;;;;;992:14:0;;;;;;;;;;842:172::o;173:29::-;;;-1:-1:-1;;;;;173:29:0;;:::o;137:::-;;;-1:-1:-1;;;;;137:29:0;;:::o;1022:79::-;389:6;;-1:-1:-1;;;;;389:6:0;375:10;:20;;:44;;-1:-1:-1;413:6:0;;-1:-1:-1;;;;;413:6:0;399:10;:20;375:44;367:82;;;;;-1:-1:-1;;;367:82:0;;;;;;;;;;;;-1:-1:-1;;;367:82:0;;;;;;;;;;;;;;;1075:5;;;:18;;;-1:-1:-1;;;1075:18:0;;;;-1:-1:-1;;;;;1075:5:0;;;;:16;;:18;;;;;;;;;;:5;;:18;;;5:2:-1;;;;30:1;27;20:12;5:2;1075:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1075:18:0;;;;1022:79::o;209:39::-;241:7;209:39;:::o;758:76::-;805:21;816:9;805:10;:21::i;:::-;758:76::o;111:19::-;;;-1:-1:-1;;;;;111:19:0;;:::o
Swarm Source
bzzr://a0ef34ed288fa9ffee8b5e5d080454ae1f9437f1368aed58f878fdcfb30b3ba3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,150.45 | 0.5 | $1,575.23 |
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.