Overview
ETH Balance
0.01 ETH
Eth Value
$34.60 (@ $3,460.08/ETH)More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 48 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 2483566 | 2986 days ago | IN | 0.01 ETH | 0.00249422 | ||||
Transfer | 2374164 | 3005 days ago | IN | 0.01 ETH | 0.00375475 | ||||
Transfer | 2280152 | 3020 days ago | IN | 0.01 ETH | 0.0018 | ||||
Transfer | 1841308 | 3093 days ago | IN | 0.01 ETH | 0.00242242 | ||||
Transfer | 1748118 | 3108 days ago | IN | 0.00072411 ETH | 0.000423 | ||||
Transfer | 1653727 | 3124 days ago | IN | 0.01 ETH | 0.000441 | ||||
Transfer | 1632037 | 3128 days ago | IN | 0.01 ETH | 0.005 | ||||
Transfer | 1629248 | 3128 days ago | IN | 0.01 ETH | 0.000441 | ||||
Transfer | 1571257 | 3138 days ago | IN | 0.01 ETH | 0.00245088 | ||||
Transfer | 1560778 | 3139 days ago | IN | 0.02 ETH | 0.00256028 | ||||
Transfer | 1553606 | 3141 days ago | IN | 0.01 ETH | 0.00312791 | ||||
Transfer | 1537220 | 3143 days ago | IN | 0.00080064 ETH | 0.000423 | ||||
Transfer | 1528745 | 3145 days ago | IN | 0.01 ETH | 0.00363363 | ||||
Transfer | 1528718 | 3145 days ago | IN | 0.01 ETH | 0.000441 | ||||
Transfer | 1527798 | 3145 days ago | IN | 0.01 ETH | 0.00242242 | ||||
Transfer | 1527713 | 3145 days ago | IN | 0.01 ETH | 0.00242242 | ||||
Transfer | 1509120 | 3148 days ago | IN | 0.01 ETH | 0.00242242 | ||||
Transfer | 1474014 | 3154 days ago | IN | 0.00121654 ETH | 0.000423 | ||||
Transfer | 1470275 | 3154 days ago | IN | 0.01 ETH | 0.00220222 | ||||
Transfer | 1462018 | 3156 days ago | IN | 0.01 ETH | 0.00242242 | ||||
Transfer | 1457193 | 3157 days ago | IN | 0.01 ETH | 0.00242242 | ||||
Transfer | 1454458 | 3157 days ago | IN | 0.01 ETH | 0.00242242 | ||||
Transfer | 1451455 | 3158 days ago | IN | 0.01 ETH | 0.00233883 | ||||
Transfer | 1379523 | 3169 days ago | IN | 0.01 ETH | 0.00242242 | ||||
Transfer | 1379506 | 3170 days ago | IN | 0.01 ETH | 0.00242242 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
2483566 | 2986 days ago | 0.01 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH | ||||
2435637 | 2994 days ago | 0 ETH |
Loading...
Loading
Contract Name:
LastIsMe
Compiler Version
v0.3.1-2016-04-12-3ad5e82
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2016-04-14 */ // Last is me! Lottery paying the last player // // git: https://github.com/lastisme/lastisme.github.io/ // url: http://lastis.me contract owned { address public owner; function owned() { owner = msg.sender; } modifier onlyOwner() { if (msg.sender != owner) throw; _ } function transferOwnership(address newOwner) onlyOwner { owner = newOwner; } } contract LastIsMe is owned { event TicketBought(address _from); event WinnerPayedTicketBought(address _winner, address _from); //constant once constructed uint public blocks; uint public price; /////////////////////////// //semi-constant, tweakable with limits after creation uint public houseFee; // THOUSANDTHS uint public houseFeeVal; // houseFee/1000 * price uint public refFeeVal; // half of the house fee val uint public lotteryFee; // THOUSANDTHS uint public lotteryFeeVal; // lotteryFee/1000 * price address public leftLottery; address public rightLottery; ////////////////////////////////////////////////// uint constant MAX_HOUSE_FEE_THOUSANDTHS = 20; uint constant MAX_LOTTERY_FEE_THOUSANDTHS = 40; address public lastPlayer; uint public lastBlock; uint public totalWinnings; uint public jackpot; uint public startedAt; struct Winners { address winner; uint jackpot; uint timestamp; } Winners[] public winners; function LastIsMe(uint _priceParam, uint _blocksParam) { if(_priceParam==0 || _blocksParam==0) throw; price = _priceParam; blocks = _blocksParam; setHouseFee(10); setLotteryFee(40); totalWinnings = 0; jackpot = 0; } function buyTicket(address _ref) { if( msg.value >= price ) { //ticket bought if( msg.value > price ) { msg.sender.send(msg.value-price); //payed more than required => refund } if( remaining() == 0 && lastPlayer != 0x0 ) { //last player was the winner! WinnerPayedTicketBought(lastPlayer,msg.sender); winners[winners.length++] = Winners(lastPlayer, jackpot, block.timestamp); lastPlayer.send(jackpot); totalWinnings=totalWinnings+jackpot; startedAt = block.timestamp; lastPlayer = msg.sender; lastBlock = block.number; jackpot = this.balance; //I am not paying fee and other lotteries fee if I am the lottery re-starter } else { TicketBought(msg.sender); if(lastPlayer==0x0) //very first ticket startedAt = block.timestamp; lastPlayer = msg.sender; lastBlock = block.number; if(houseFeeVal>0) { //house fee could be zero if(_ref==0x0) { owner.send(houseFeeVal); } else { owner.send(refFeeVal); _ref.send(refFeeVal); } } if(leftLottery!=0x0 && lotteryFeeVal>0) leftLottery.send(lotteryFeeVal); if(rightLottery!=0x0 && lotteryFeeVal>0) rightLottery.send(lotteryFeeVal); jackpot = this.balance; } } } function () { buyTicket(0x0); } function finance() { } function allData() constant returns (uint _balance, address _lastPlayer, uint _lastBlock, uint _blockNumber, uint _totalWinners, uint _jackpot, uint _price, uint _blocks, uint _houseFee, uint _lotteryFee, address _leftLottery, address _rightLottery, uint _totalWinnings, uint _startedAt) { return (this.balance, lastPlayer, lastBlock, block.number, winners.length, jackpot, price, blocks, houseFee, lotteryFee, leftLottery, rightLottery, totalWinnings, startedAt); } function baseData() constant returns (uint _balance, address _lastPlayer, uint _lastBlock, uint _blockNumber, uint _totalWinners, uint _jackpot, uint _price, uint _blocks, uint _totalWinnings, uint _startedAt) { return (this.balance, lastPlayer, lastBlock, block.number, winners.length, jackpot, price, blocks, totalWinnings, startedAt); } function elapsed() constant returns (uint) { return block.number - lastBlock; //>=0 } function remaining() constant returns (uint) { var e=elapsed(); if(blocks>e) return blocks - elapsed() ; else return 0; } function totalWinners() constant returns (uint) { return winners.length; } function updateLeftLottery( address _newValue) onlyOwner { leftLottery=_newValue; } function updateRightLottery( address _newValue) onlyOwner { rightLottery=_newValue; } function setLotteryFee(uint _newValue) onlyOwner { if( _newValue > MAX_LOTTERY_FEE_THOUSANDTHS ) throw; lotteryFee = _newValue; var aThousand = price/1000; lotteryFeeVal = aThousand*lotteryFee; } function setHouseFee(uint _newValue) onlyOwner { if( _newValue > MAX_HOUSE_FEE_THOUSANDTHS ) throw; houseFee = _newValue; var aThousand = price/1000; houseFeeVal = aThousand*houseFee; refFeeVal = houseFeeVal / 2; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"houseFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newValue","type":"address"}],"name":"updateLeftLottery","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"houseFeeVal","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"elapsed","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"finance","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"baseData","outputs":[{"name":"_balance","type":"uint256"},{"name":"_lastPlayer","type":"address"},{"name":"_lastBlock","type":"uint256"},{"name":"_blockNumber","type":"uint256"},{"name":"_totalWinners","type":"uint256"},{"name":"_jackpot","type":"uint256"},{"name":"_price","type":"uint256"},{"name":"_blocks","type":"uint256"},{"name":"_totalWinnings","type":"uint256"},{"name":"_startedAt","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newValue","type":"uint256"}],"name":"setLotteryFee","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"remaining","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newValue","type":"uint256"}],"name":"setHouseFee","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"jackpot","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"lotteryFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"lastBlock","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"blocks","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"winners","outputs":[{"name":"winner","type":"address"},{"name":"jackpot","type":"uint256"},{"name":"timestamp","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_ref","type":"address"}],"name":"buyTicket","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"leftLottery","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"lotteryFeeVal","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newValue","type":"address"}],"name":"updateRightLottery","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"totalWinnings","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"allData","outputs":[{"name":"_balance","type":"uint256"},{"name":"_lastPlayer","type":"address"},{"name":"_lastBlock","type":"uint256"},{"name":"_blockNumber","type":"uint256"},{"name":"_totalWinners","type":"uint256"},{"name":"_jackpot","type":"uint256"},{"name":"_price","type":"uint256"},{"name":"_blocks","type":"uint256"},{"name":"_houseFee","type":"uint256"},{"name":"_lotteryFee","type":"uint256"},{"name":"_leftLottery","type":"address"},{"name":"_rightLottery","type":"address"},{"name":"_totalWinnings","type":"uint256"},{"name":"_startedAt","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalWinners","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"rightLottery","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"refFeeVal","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"lastPlayer","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"startedAt","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"type":"function"},{"inputs":[{"name":"_priceParam","type":"uint256"},{"name":"_blocksParam","type":"uint256"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_from","type":"address"}],"name":"TicketBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_winner","type":"address"},{"indexed":false,"name":"_from","type":"address"}],"name":"WinnerPayedTicketBought","type":"event"}]
Contract Creation Code
6060604081815280610a8d833960a090525160805160008054600160a060020a0319163317905581600014806100355750806000145b1561003f57610002565b816002600050819055508060016000508190555061008f600a6000600060009054906101000a9004600160a060020a0316600160a060020a031633600160a060020a031614151561011057610002565b6100cb60286000600060009054906101000a9004600160a060020a0316600160a060020a031633600160a060020a03161415156100e557610002565b6000600c819055600d5550506109408061014d6000396000f35b816006600050819055506103e860026000505404905060066000505481026007600050819055505050565b816003600050819055506103e86002600050540490506003600050548102600460005081905550600260046000505404600560005081905550505056606060405236156101485760e060020a60003504630ed469b881146101555780631e2ca0f31461015e5780632a2998a0146101815780632f29d8c51461018a578063313b7b19146101975780633b355af61461019d5780634a67fa7d1461021457806355234ec0146102385780635a09f2f4146102485780636b31ee011461026c57806378aa08ed14610275578063806b984f1461027e5780638da5cb5b14610287578063967ff23e14610299578063a035b1fe146102a2578063a2fb1175146102ab578063a5f8cdbb14610344578063a8b1895d1461038e578063aba7ad0d146103a0578063b2353d69146103a9578063b72481f8146103cc578063b974b0a3146103d5578063bcc941b61461047d578063cac6edd814610488578063df5dd98f1461049a578063e3450e13146104a3578063f21f537d146104b5578063f2fde38b146104be575b6104e161019b600061034b565b6104e360035481565b6104e1600435600054600160a060020a039081163391909116146108c957610002565b6104e360045481565b6104e35b600b5443035b90565b6104e15b565b60408051600a54600e54600f54600b54600d54600254600154600c5430600160a060020a03908116318a5297909716602089015287890193909352436060880152608087019390935260a086015260c085019190915260e08401526101008301919091526101208201529051908190036101400190f35b6104e160043560008054600160a060020a039081163391909116146108f357610002565b6104e35b600060006108a761018e565b6104e160043560008054600160a060020a0390811633919091161461091557610002565b6104e3600d5481565b6104e360065481565b6104e3600b5481565b6104f5600054600160a060020a031681565b6104e360015481565b6104e360025481565b610512600435600f8054829081101561000257506000526003027f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8028101547f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8038201547f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8049290920154600160a060020a0391909116919083565b6104e16004355b600254341061054e5760025434111561038657600254604051600160a060020a0333169160009134919091039082818181858883f150505050505b61055161023c565b6104f5600854600160a060020a031681565b6104e360075481565b6104e1600435600054600160a060020a039081163391909116146108de57610002565b6104e3600c5481565b60095460085460408051600a54600e54600f54600b54600d54600254600154600354600654600c5430600160a060020a03908116318c52998a1660208c01528a8c01969096524360608b015260808a019690965260a089019390935260c088019190915260e087015261010086015261012085019190915294821661014084015294166101608201526101808101929092526101a08201929092529051908190036101c00190f35b6104e3600f54610194565b6104f5600954600160a060020a031681565b6104e360055481565b6104f5600a54600160a060020a031681565b6104e3600e5481565b6104e1600435600054600160a060020a0390811633919091161461053b57610002565b005b60408051918252519081900360200190f35b60408051600160a060020a03929092168252519081900360200190f35b60408051600160a060020a03949094168452602084019290925282820152519081900360600190f35b60008054600160a060020a031916821790555b50565b600014801561056c5750600a54600160a060020a0316600014155b1561065a57600a5460408051600160a060020a03928316815233909216602083015280517f63b3f4e6ab70e5678c6d9bdac4f2e43032c87a96c11eeebe97d589fe7fee05029281900390910190a1606060405190810160405280600a60009054906101000a9004600160a060020a03168152602001600d60005054815260200142815260200150600f600050600f6000508054809190600101909081548183558181151161070d5760030281600302836000526020600020918201910161070d91905b808211156107b6578054600160a060020a03191681556000600182018181556002929092015561062f565b60408051600160a060020a033316815290517f22949fb111628ecd7b4062e944109804b256656bc00fc690af62b9a6105154d39181900360200190a1600a54600160a060020a0316600014156106af5742600e555b600a8054600160a060020a0319163317905543600b5560045460009011156107fe5780600160a060020a0316600014156107ba5760405160045460008054600160a060020a03169290919082818181858883f19350505050506107fe565b505050815481101561000257906000526020600020906003020160005081518154600160a060020a0319161781556020820151600182015560409182015160029190910155600a54600d549151600160a060020a03919091169160009182818181858883f15050600d8054600c8054909101905542600e55600a8054600160a060020a0319163317905543600b5530600160a060020a03163190555061054e915050565b600091505b5090565b60405160008054600554600160a060020a03919091169282818181858883f15050600554604051600160a060020a038616945090915082818181858883f150505050505b600854600160a060020a031660001480159061081d5750600754600090115b1561084a57600854600754604051600160a060020a0392909216916000919082818181858883f150505050505b600954600160a060020a03166000148015906108695750600754600090115b1561089657600954600754604051600160a060020a0392909216916000919082818181858883f150505050505b30600160a060020a031631600d5550565b90508060016000505411156107b1576108be61018e565b6001540391506107b6565b60088054600160a060020a0319168217905550565b60098054600160a060020a0319168217905550565b602882111561090157610002565b5060068190556002546103e8900402600755565b601482111561092357610002565b506003819055600280546103e8900490910260048190550460055556
Deployed Bytecode
0x606060405236156101485760e060020a60003504630ed469b881146101555780631e2ca0f31461015e5780632a2998a0146101815780632f29d8c51461018a578063313b7b19146101975780633b355af61461019d5780634a67fa7d1461021457806355234ec0146102385780635a09f2f4146102485780636b31ee011461026c57806378aa08ed14610275578063806b984f1461027e5780638da5cb5b14610287578063967ff23e14610299578063a035b1fe146102a2578063a2fb1175146102ab578063a5f8cdbb14610344578063a8b1895d1461038e578063aba7ad0d146103a0578063b2353d69146103a9578063b72481f8146103cc578063b974b0a3146103d5578063bcc941b61461047d578063cac6edd814610488578063df5dd98f1461049a578063e3450e13146104a3578063f21f537d146104b5578063f2fde38b146104be575b6104e161019b600061034b565b6104e360035481565b6104e1600435600054600160a060020a039081163391909116146108c957610002565b6104e360045481565b6104e35b600b5443035b90565b6104e15b565b60408051600a54600e54600f54600b54600d54600254600154600c5430600160a060020a03908116318a5297909716602089015287890193909352436060880152608087019390935260a086015260c085019190915260e08401526101008301919091526101208201529051908190036101400190f35b6104e160043560008054600160a060020a039081163391909116146108f357610002565b6104e35b600060006108a761018e565b6104e160043560008054600160a060020a0390811633919091161461091557610002565b6104e3600d5481565b6104e360065481565b6104e3600b5481565b6104f5600054600160a060020a031681565b6104e360015481565b6104e360025481565b610512600435600f8054829081101561000257506000526003027f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8028101547f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8038201547f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8049290920154600160a060020a0391909116919083565b6104e16004355b600254341061054e5760025434111561038657600254604051600160a060020a0333169160009134919091039082818181858883f150505050505b61055161023c565b6104f5600854600160a060020a031681565b6104e360075481565b6104e1600435600054600160a060020a039081163391909116146108de57610002565b6104e3600c5481565b60095460085460408051600a54600e54600f54600b54600d54600254600154600354600654600c5430600160a060020a03908116318c52998a1660208c01528a8c01969096524360608b015260808a019690965260a089019390935260c088019190915260e087015261010086015261012085019190915294821661014084015294166101608201526101808101929092526101a08201929092529051908190036101c00190f35b6104e3600f54610194565b6104f5600954600160a060020a031681565b6104e360055481565b6104f5600a54600160a060020a031681565b6104e3600e5481565b6104e1600435600054600160a060020a0390811633919091161461053b57610002565b005b60408051918252519081900360200190f35b60408051600160a060020a03929092168252519081900360200190f35b60408051600160a060020a03949094168452602084019290925282820152519081900360600190f35b60008054600160a060020a031916821790555b50565b600014801561056c5750600a54600160a060020a0316600014155b1561065a57600a5460408051600160a060020a03928316815233909216602083015280517f63b3f4e6ab70e5678c6d9bdac4f2e43032c87a96c11eeebe97d589fe7fee05029281900390910190a1606060405190810160405280600a60009054906101000a9004600160a060020a03168152602001600d60005054815260200142815260200150600f600050600f6000508054809190600101909081548183558181151161070d5760030281600302836000526020600020918201910161070d91905b808211156107b6578054600160a060020a03191681556000600182018181556002929092015561062f565b60408051600160a060020a033316815290517f22949fb111628ecd7b4062e944109804b256656bc00fc690af62b9a6105154d39181900360200190a1600a54600160a060020a0316600014156106af5742600e555b600a8054600160a060020a0319163317905543600b5560045460009011156107fe5780600160a060020a0316600014156107ba5760405160045460008054600160a060020a03169290919082818181858883f19350505050506107fe565b505050815481101561000257906000526020600020906003020160005081518154600160a060020a0319161781556020820151600182015560409182015160029190910155600a54600d549151600160a060020a03919091169160009182818181858883f15050600d8054600c8054909101905542600e55600a8054600160a060020a0319163317905543600b5530600160a060020a03163190555061054e915050565b600091505b5090565b60405160008054600554600160a060020a03919091169282818181858883f15050600554604051600160a060020a038616945090915082818181858883f150505050505b600854600160a060020a031660001480159061081d5750600754600090115b1561084a57600854600754604051600160a060020a0392909216916000919082818181858883f150505050505b600954600160a060020a03166000148015906108695750600754600090115b1561089657600954600754604051600160a060020a0392909216916000919082818181858883f150505050505b30600160a060020a031631600d5550565b90508060016000505411156107b1576108be61018e565b6001540391506107b6565b60088054600160a060020a0319168217905550565b60098054600160a060020a0319168217905550565b602882111561090157610002565b5060068190556002546103e8900402600755565b601482111561092357610002565b506003819055600280546103e8900490910260048190550460055556
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000a
-----Decoded View---------------
Arg [0] : _priceParam (uint256): 10000000000000000
Arg [1] : _blocksParam (uint256): 10
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,459.39 | 0.01 | $34.59 |
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.