Overview
ETH Balance
0.00100000000000001 ETH
Eth Value
$1.85 (@ $1,852.50/ETH)More Info
Private Name Tags
ContractCreator
Multi Chain
Multichain Addresses
0 address found via
Latest 6 from a total of 6 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 6265506 | 1739 days 5 hrs ago | IN | 0 ETH | 0.00005317 | ||||
Transfer | 6167965 | 1755 days 16 hrs ago | IN | 0.009 ETH | 0.00006485 | ||||
Transfer | 6149070 | 1758 days 21 hrs ago | IN | 0.009 ETH | 0.00016213 | ||||
Transfer | 6139209 | 1760 days 13 hrs ago | IN | 0.009 ETH | 0.00009728 | ||||
Transfer | 6121024 | 1763 days 15 hrs ago | IN | 0.009 ETH | 0.00293406 | ||||
0x60806040 | 6120877 | 1763 days 15 hrs ago | IN | Create: lucky9io | 0 ETH | 0.01177833 |
Latest 13 internal transactions
Parent Txn Hash | Block | From | To | Value | ||
---|---|---|---|---|---|---|
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 0.01 ETH | ||||
6264615 | 1739 days 8 hrs ago | 0.03 ETH | ||||
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 1 wei | ||||
6264615 | 1739 days 8 hrs ago | 0.005 ETH |
Loading...
Loading
Contract Name:
lucky9io
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-08-14 */ pragma solidity ^0.4.24; contract lucky9io { bool private gameOn = true; address private owner = 0x5Bf066c70C2B5e02F1C6723E72e82478Fec41201; uint private entry_number = 0; uint private value = 0; modifier onlyOwner() { require(msg.sender == owner, "Sender not authorized."); _; } function stopGame() public onlyOwner { gameOn = false; owner.transfer(address(this).balance); } function () public payable{ if(gameOn == false) { msg.sender.transfer(msg.value); return; } if(msg.value * 1000 < 9) { msg.sender.transfer(msg.value); return; } entry_number = entry_number + 1; value = address(this).balance; if(entry_number % 999 == 0) { msg.sender.transfer(value * 8 / 10); owner.transfer(value * 11 / 100); return; } if(entry_number % 99 == 0) { msg.sender.transfer(0.09 ether); owner.transfer(0.03 ether); return; } if(entry_number % 9 == 0) { msg.sender.transfer(0.03 ether); owner.transfer(0.01 ether); return; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[],"name":"stopGame","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"}]
Contract Creation Code
608060405260008054600160ff19909116811761010060a860020a031916745bf066c70c2b5e02f1c6723e72e82478fec412010017825581905560025534801561004857600080fd5b50610396806100586000396000f3006080604052600436106100405763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166383bd72ba8114610276575b60005460ff16151561007e5760405133903480156108fc02916000818181858888f19350505050158015610078573d6000803e3d6000fd5b50610274565b6009346103e80210156100b75760405133903480156108fc02916000818181858888f19350505050158015610078573d6000803e3d6000fd5b6001805481019081905530316002556103e790061515610161576002546040513391600a60089091020480156108fc02916000818181858888f19350505050158015610107573d6000803e3d6000fd5b5060005460025461010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc90606490600b02049081150290604051600060405180830381858888f19350505050158015610078573d6000803e3d6000fd5b6001546063900615156101eb57604051339060009067013fbe85edc900009082818181858883f1935050505015801561019e573d6000803e3d6000fd5b506000805460405161010090910473ffffffffffffffffffffffffffffffffffffffff169190666a94d74f4300009082818181858883f19350505050158015610078573d6000803e3d6000fd5b600154600990061515610274576040513390600090666a94d74f4300009082818181858883f19350505050158015610227573d6000803e3d6000fd5b506000805460405161010090910473ffffffffffffffffffffffffffffffffffffffff169190662386f26fc100009082818181858883f19350505050158015610078573d6000803e3d6000fd5b005b34801561028257600080fd5b50610274600054610100900473ffffffffffffffffffffffffffffffffffffffff16331461031157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f53656e646572206e6f7420617574686f72697a65642e00000000000000000000604482015290519081900360640190fd5b6000805460ff191680825560405173ffffffffffffffffffffffffffffffffffffffff6101009092049190911691303180156108fc02929091818181858888f19350505050158015610367573d6000803e3d6000fd5b505600a165627a7a72305820826db5a99f02a487634cf2e71a9d796c5d321bca43fe714f704603481997ca010029
Swarm Source
bzzr://826db5a99f02a487634cf2e71a9d796c5d321bca43fe714f704603481997ca01
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ 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.