More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 6,861 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 5696676 | 2519 days ago | IN | 0 ETH | 0.00032422 | ||||
Transfer From | 5691891 | 2520 days ago | IN | 0 ETH | 0.00071843 | ||||
Transfer | 5469287 | 2559 days ago | IN | 1 ETH | 0.00088621 | ||||
Transfer | 5390753 | 2572 days ago | IN | 1 ETH | 0.00042 | ||||
Transfer | 5386180 | 2573 days ago | IN | 1 ETH | 0.0021615 | ||||
Transfer | 5386180 | 2573 days ago | IN | 1 ETH | 0.00002161 | ||||
Transfer | 5385836 | 2573 days ago | IN | 1.999 ETH | 0.00008916 | ||||
Transfer | 5385512 | 2573 days ago | IN | 1 ETH | 0.00213988 | ||||
Transfer | 5385507 | 2573 days ago | IN | 4 ETH | 0.002079 | ||||
Transfer | 5385456 | 2573 days ago | IN | 0.91290682 ETH | 0.002079 | ||||
Transfer | 5385454 | 2573 days ago | IN | 0.4 ETH | 0.0021615 | ||||
Transfer | 5385449 | 2573 days ago | IN | 1 ETH | 0.0021615 | ||||
Transfer | 5385446 | 2573 days ago | IN | 1 ETH | 0.00213988 | ||||
Transfer | 5385444 | 2573 days ago | IN | 1 ETH | 0.001092 | ||||
Transfer | 5385443 | 2573 days ago | IN | 1 ETH | 0.00213988 | ||||
Transfer | 5385443 | 2573 days ago | IN | 1 ETH | 0.00213988 | ||||
Transfer | 5385442 | 2573 days ago | IN | 0.8973257 ETH | 0.00213988 | ||||
Transfer | 5385441 | 2573 days ago | IN | 1 ETH | 0.00213988 | ||||
Transfer | 5385439 | 2573 days ago | IN | 1 ETH | 0.0021615 | ||||
Transfer | 5385437 | 2573 days ago | IN | 1 ETH | 0.0021615 | ||||
Transfer | 5385434 | 2573 days ago | IN | 0.95 ETH | 0.0021615 | ||||
Transfer | 5385258 | 2573 days ago | IN | 1 ETH | 0.0021615 | ||||
Transfer | 5382507 | 2574 days ago | IN | 0.1 ETH | 0.0012969 | ||||
Transfer | 5381928 | 2574 days ago | IN | 1 ETH | 0.00021615 | ||||
Transfer | 5376580 | 2575 days ago | IN | 2 ETH | 0.00151305 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 5373650 | 2575 days ago | 1.14388225 ETH | ||||
Transfer | 5373650 | 2575 days ago | 0.85611774 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 1.8 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 1.45 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 1.95 ETH | ||||
Transfer | 5373650 | 2575 days ago | 0.9 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 1 ETH | ||||
Transfer | 5373650 | 2575 days ago | 1.75 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH | ||||
Transfer | 5373650 | 2575 days ago | 2 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x3d6580DB...6c22bA9d2 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
SeeleCrowdSale
Compiler Version
v0.4.19+commit.c4cbbb05
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-03-28 */ pragma solidity ^0.4.18; // File: zeppelin-solidity/contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } // File: zeppelin-solidity/contracts/lifecycle/Pausable.sol /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } // File: zeppelin-solidity/contracts/math/SafeMath.sol /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } // File: zeppelin-solidity/contracts/token/ERC20Basic.sol /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } // File: zeppelin-solidity/contracts/token/BasicToken.sol /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } // File: zeppelin-solidity/contracts/token/ERC20.sol /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: zeppelin-solidity/contracts/token/StandardToken.sol /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } // File: zeppelin-solidity/contracts/token/PausableToken.sol /** * @title Pausable token * * @dev StandardToken modified with pausable transfers. **/ contract PausableToken is StandardToken, Pausable { function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } } // File: contracts/SeeleToken.sol /// @title SeeleToken Contract /// For more information about this token sale, please visit https://seele.pro /// @author reedhong contract SeeleToken is PausableToken { using SafeMath for uint; /// Constant token specific fields string public constant name = "SeeleToken"; string public constant symbol = "Seele"; uint public constant decimals = 18; /// seele total tokens supply uint public currentSupply; /// Fields that are only changed in constructor /// seele sale contract address public minter; /// Fields that can be changed by functions mapping (address => uint) public lockedBalances; /// claim flag bool public claimedFlag; /* * MODIFIERS */ modifier onlyMinter { require(msg.sender == minter); _; } modifier canClaimed { require(claimedFlag == true); _; } modifier maxTokenAmountNotReached (uint amount){ require(currentSupply.add(amount) <= totalSupply); _; } modifier validAddress( address addr ) { require(addr != address(0x0)); require(addr != address(this)); _; } /** * CONSTRUCTOR * * @dev Initialize the Seele Token * @param _minter The SeeleCrowdSale Contract * @param _maxTotalSupply total supply token */ function SeeleToken(address _minter, address _admin, uint _maxTotalSupply) public validAddress(_admin) validAddress(_minter) { minter = _minter; totalSupply = _maxTotalSupply; claimedFlag = false; transferOwnership(_admin); } /** * EXTERNAL FUNCTION * * @dev SeeleCrowdSale contract instance mint token * @param receipent The destination account owned mint tokens * @param amount The amount of mint token * @param isLock Lock token flag * be sent to this address. */ function mint(address receipent, uint amount, bool isLock) external onlyMinter maxTokenAmountNotReached(amount) returns (bool) { if (isLock ) { lockedBalances[receipent] = lockedBalances[receipent].add(amount); } else { balances[receipent] = balances[receipent].add(amount); } currentSupply = currentSupply.add(amount); return true; } function setClaimedFlag(bool flag) public onlyOwner { claimedFlag = flag; } /* * PUBLIC FUNCTIONS */ /// @dev Locking period has passed - Locked tokens have turned into tradeable function claimTokens(address[] receipents) public canClaimed { for (uint i = 0; i < receipents.length; i++) { address receipent = receipents[i]; balances[receipent] = balances[receipent].add(lockedBalances[receipent]); lockedBalances[receipent] = 0; } } } // File: contracts/SeeleCrowdSale.sol /// @title SeeleCrowdSale Contract /// For more information about this token sale, please visit https://seele.pro /// @author reedhong contract SeeleCrowdSale is Pausable { using SafeMath for uint; /// Constant fields /// seele total tokens supply uint public constant SEELE_TOTAL_SUPPLY = 1000000000 ether; uint public constant MAX_SALE_DURATION = 4 days; uint public constant STAGE_1_TIME = 6 hours; uint public constant STAGE_2_TIME = 12 hours; uint public constant MIN_LIMIT = 0.1 ether; uint public constant MAX_STAGE_1_LIMIT = 1 ether; uint public constant MAX_STAGE_2_LIMIT = 2 ether; uint public constant STAGE_1 = 1; uint public constant STAGE_2 = 2; uint public constant STAGE_3 = 3; /// Exchange rates uint public exchangeRate = 12500; uint public constant MINER_STAKE = 3000; // for minter uint public constant OPEN_SALE_STAKE = 625; // for public uint public constant OTHER_STAKE = 6375; // for others uint public constant DIVISOR_STAKE = 10000; // max open sale tokens uint public constant MAX_OPEN_SOLD = SEELE_TOTAL_SUPPLY * OPEN_SALE_STAKE / DIVISOR_STAKE; uint public constant STAKE_MULTIPLIER = SEELE_TOTAL_SUPPLY / DIVISOR_STAKE; /// All deposited ETH will be instantly forwarded to this address. address public wallet; address public minerAddress; address public otherAddress; /// Contribution start time uint public startTime; /// Contribution end time uint public endTime; /// Fields that can be changed by functions /// Accumulator for open sold tokens uint public openSoldTokens; /// ERC20 compilant seele token contact instance SeeleToken public seeleToken; /// tags show address can join in open sale mapping (address => bool) public fullWhiteList; mapping (address => uint) public firstStageFund; mapping (address => uint) public secondStageFund; /* * EVENTS */ event NewSale(address indexed destAddress, uint ethCost, uint gotTokens); event NewWallet(address onwer, address oldWallet, address newWallet); modifier notEarlierThan(uint x) { require(now >= x); _; } modifier earlierThan(uint x) { require(now < x); _; } modifier ceilingNotReached() { require(openSoldTokens < MAX_OPEN_SOLD); _; } modifier isSaleEnded() { require(now > endTime || openSoldTokens >= MAX_OPEN_SOLD); _; } modifier validAddress( address addr ) { require(addr != address(0x0)); require(addr != address(this)); _; } function SeeleCrowdSale ( address _wallet, address _minerAddress, address _otherAddress ) public validAddress(_wallet) validAddress(_minerAddress) validAddress(_otherAddress) { paused = true; wallet = _wallet; minerAddress = _minerAddress; otherAddress = _otherAddress; openSoldTokens = 0; /// Create seele token contract instance seeleToken = new SeeleToken(this, msg.sender, SEELE_TOTAL_SUPPLY); seeleToken.mint(minerAddress, MINER_STAKE * STAKE_MULTIPLIER, false); seeleToken.mint(otherAddress, OTHER_STAKE * STAKE_MULTIPLIER, false); } function setExchangeRate(uint256 rate) public onlyOwner earlierThan(endTime) { exchangeRate = rate; } function setStartTime(uint _startTime ) public onlyOwner { startTime = _startTime; endTime = startTime + MAX_SALE_DURATION; } /// @dev batch set quota for user admin /// if openTag <=0, removed function setWhiteList(address[] users, bool openTag) external onlyOwner earlierThan(endTime) { require(saleNotEnd()); for (uint i = 0; i < users.length; i++) { fullWhiteList[users[i]] = openTag; } } /// @dev batch set quota for early user quota /// if openTag <=0, removed function addWhiteList(address user, bool openTag) external onlyOwner earlierThan(endTime) { require(saleNotEnd()); fullWhiteList[user] = openTag; } /// @dev Emergency situation function setWallet(address newAddress) external onlyOwner { NewWallet(owner, wallet, newAddress); wallet = newAddress; } /// @return true if sale not ended, false otherwise. function saleNotEnd() constant internal returns (bool) { return now < endTime && openSoldTokens < MAX_OPEN_SOLD; } /** * Fallback function * * @dev If anybody sends Ether directly to this contract, consider he is getting seele token */ function () public payable { buySeele(msg.sender); } /* * PUBLIC FUNCTIONS */ /// @dev Exchange msg.value ether to Seele for account recepient /// @param receipient Seele tokens receiver function buySeele(address receipient) internal whenNotPaused ceilingNotReached notEarlierThan(startTime) earlierThan(endTime) validAddress(receipient) returns (bool) { // Do not allow contracts to game the system require(!isContract(msg.sender)); require(tx.gasprice <= 100000000000 wei); require(msg.value >= MIN_LIMIT); bool inWhiteListTag = fullWhiteList[receipient]; require(inWhiteListTag == true); uint stage = STAGE_3; if ( startTime <= now && now < startTime + STAGE_1_TIME ) { stage = STAGE_1; require(msg.value <= MAX_STAGE_1_LIMIT); uint fund1 = firstStageFund[receipient]; require (fund1 < MAX_STAGE_1_LIMIT ); }else if ( startTime + STAGE_1_TIME <= now && now < startTime + STAGE_2_TIME ) { stage = STAGE_2; require(msg.value <= MAX_STAGE_2_LIMIT); uint fund2 = secondStageFund[receipient]; require (fund2 < MAX_STAGE_2_LIMIT ); } doBuy(receipient, stage); return true; } /// @dev Buy seele token normally function doBuy(address receipient, uint stage) internal { // protect partner quota in stage one uint value = msg.value; if ( stage == STAGE_1 ) { uint fund1 = firstStageFund[receipient]; fund1 = fund1.add(value); if (fund1 > MAX_STAGE_1_LIMIT ) { uint refund1 = fund1.sub(MAX_STAGE_1_LIMIT); value = value.sub(refund1); msg.sender.transfer(refund1); } }else if ( stage == STAGE_2 ) { uint fund2 = secondStageFund[receipient]; fund2 = fund2.add(value); if (fund2 > MAX_STAGE_2_LIMIT) { uint refund2 = fund2.sub(MAX_STAGE_2_LIMIT); value = value.sub(refund2); msg.sender.transfer(refund2); } } uint tokenAvailable = MAX_OPEN_SOLD.sub(openSoldTokens); require(tokenAvailable > 0); uint toFund; uint toCollect; (toFund, toCollect) = costAndBuyTokens(tokenAvailable, value); if (toFund > 0) { require(seeleToken.mint(receipient, toCollect,true)); wallet.transfer(toFund); openSoldTokens = openSoldTokens.add(toCollect); NewSale(receipient, toFund, toCollect); } // not enough token sale, just return eth uint toReturn = value.sub(toFund); if (toReturn > 0) { msg.sender.transfer(toReturn); } if ( stage == STAGE_1 ) { firstStageFund[receipient] = firstStageFund[receipient].add(toFund); }else if ( stage == STAGE_2 ) { secondStageFund[receipient] = secondStageFund[receipient].add(toFund); } } /// @dev Utility function for calculate available tokens and cost ethers function costAndBuyTokens(uint availableToken, uint value) constant internal returns (uint costValue, uint getTokens) { // all conditions has checked in the caller functions getTokens = exchangeRate * value; if (availableToken >= getTokens) { costValue = value; } else { costValue = availableToken / exchangeRate; getTokens = availableToken; } } /// @dev Internal function to determine if an address is a contract /// @param _addr The address being queried /// @return True if `_addr` is a contract function isContract(address _addr) constant internal returns(bool) { uint size; if (_addr == 0) { return false; } assembly { size := extcodesize(_addr) } return size > 0; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"SEELE_TOTAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_OPEN_SOLD","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"OTHER_STAKE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"exchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DIVISOR_STAKE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"STAGE_1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MIN_LIMIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"seeleToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MINER_STAKE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"STAGE_1_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"STAGE_2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_STAGE_1_LIMIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_STAGE_2_LIMIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"OPEN_SALE_STAKE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"user","type":"address"},{"name":"openTag","type":"bool"}],"name":"addWhiteList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"STAGE_3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"STAGE_2_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"openSoldTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"otherAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"secondStageFund","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"rate","type":"uint256"}],"name":"setExchangeRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"users","type":"address[]"},{"name":"openTag","type":"bool"}],"name":"setWhiteList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"firstStageFund","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_SALE_DURATION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"fullWhiteList","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"STAKE_MULTIPLIER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_wallet","type":"address"},{"name":"_minerAddress","type":"address"},{"name":"_otherAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"destAddress","type":"address"},{"indexed":false,"name":"ethCost","type":"uint256"},{"indexed":false,"name":"gotTokens","type":"uint256"}],"name":"NewSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"onwer","type":"address"},{"indexed":false,"name":"oldWallet","type":"address"},{"indexed":false,"name":"newWallet","type":"address"}],"name":"NewWallet","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Deployed Bytecode
0x6060604052600436106101cc5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416631cfef64c81146101d85780632f86f2ee146101fd5780633197cbb61461021057806337828c52146102235780633ba0b9a9146102365780633e0a322d146102495780633f423afe146102615780633f4ba83a146102745780634730bf06146102875780634d1a08cd1461029a578063521eb273146102ad57806355212c89146102dc57806359275c84146102ef5780635c314df0146103025780635c975abb146103155780635d6470a41461033c578063668013841461034f57806378e97925146103625780637a0b0a3f146103755780638206ba89146103885780638456cb591461039b5780638da5cb5b146103ae57806391aadff6146103c1578063a718d11b146103d4578063aec72d8d146103f8578063af57d2361461040b578063b2450b151461041e578063c4e6c60414610431578063d361cc3c14610444578063db068e0e14610463578063deaa59df14610479578063e43f696e14610498578063f2fde38b146104bc578063f906cc7b146104db578063fc6e33ee146104fa578063fcdbe6df1461050d578063ff70e8d91461052c575b6101d53361053f565b50005b34156101e357600080fd5b6101eb610726565b60405190815260200160405180910390f35b341561020857600080fd5b6101eb610736565b341561021b57600080fd5b6101eb61074c565b341561022e57600080fd5b6101eb610752565b341561024157600080fd5b6101eb610758565b341561025457600080fd5b61025f60043561075e565b005b341561026c57600080fd5b6101eb610788565b341561027f57600080fd5b61025f61078e565b341561029257600080fd5b6101eb61080d565b34156102a557600080fd5b6101eb610812565b34156102b857600080fd5b6102c061081e565b604051600160a060020a03909116815260200160405180910390f35b34156102e757600080fd5b6102c061082d565b34156102fa57600080fd5b6102c061083c565b341561030d57600080fd5b6101eb61084b565b341561032057600080fd5b610328610851565b604051901515815260200160405180910390f35b341561034757600080fd5b6101eb610861565b341561035a57600080fd5b6101eb610867565b341561036d57600080fd5b6101eb61086c565b341561038057600080fd5b6101eb610872565b341561039357600080fd5b6101eb61087e565b34156103a657600080fd5b61025f61088a565b34156103b957600080fd5b6102c061090e565b34156103cc57600080fd5b6101eb61091d565b34156103df57600080fd5b61025f600160a060020a03600435166024351515610923565b341561040357600080fd5b6101eb61098d565b341561041657600080fd5b6101eb610992565b341561042957600080fd5b6101eb610998565b341561043c57600080fd5b6102c061099e565b341561044f57600080fd5b6101eb600160a060020a03600435166109ad565b341561046e57600080fd5b61025f6004356109bf565b341561048457600080fd5b61025f600160a060020a03600435166109f0565b34156104a357600080fd5b61025f6024600480358281019291013590351515610aa0565b34156104c757600080fd5b61025f600160a060020a0360043516610b41565b34156104e657600080fd5b6101eb600160a060020a0360043516610bdc565b341561050557600080fd5b6101eb610bee565b341561051857600080fd5b610328600160a060020a0360043516610bf5565b341561053757600080fd5b6101eb610c0a565b60008054819081908190819060a060020a900460ff161561055f57600080fd5b6007546a33b2e3c9fd0803ce800000901061057957600080fd5b600554428190101561058a57600080fd5b6006544281901061059a57600080fd5b87600160a060020a03811615156105b057600080fd5b30600160a060020a031681600160a060020a0316141515156105d157600080fd5b6105da33610c1f565b156105e457600080fd5b64174876e8003a11156105f657600080fd5b67016345785d8a000034101561060b57600080fd5b600160a060020a03891660009081526009602052604090205460ff16965086151560011461063857600080fd5b60039550426005541115801561065357506154606005540142105b156106a55760019550670de0b6b3a764000034111561067157600080fd5b600160a060020a0389166000908152600a60205260409020549450670de0b6b3a764000085106106a057600080fd5b61070d565b4261546060055401111580156106c0575061a8c06005540142105b1561070d5760029550671bc16d674ec800003411156106de57600080fd5b600160a060020a0389166000908152600b60205260409020549350671bc16d674ec80000841061070d57600080fd5b6107178987610c4c565b50600198975050505050505050565b6b033b2e3c9fd0803ce800000081565b6127106c07e37be2022c0914b2680000005b0481565b60065481565b6118e781565b60015481565b60005433600160a060020a0390811691161461077957600080fd5b60058190556205460001600655565b61271081565b60005433600160a060020a039081169116146107a957600080fd5b60005460a060020a900460ff1615156107c157600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600181565b67016345785d8a000081565b600254600160a060020a031681565b600854600160a060020a031681565b600354600160a060020a031681565b610bb881565b60005460a060020a900460ff1681565b61546081565b600281565b60055481565b670de0b6b3a764000081565b671bc16d674ec8000081565b60005433600160a060020a039081169116146108a557600080fd5b60005460a060020a900460ff16156108bc57600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600054600160a060020a031681565b61027181565b60005433600160a060020a0390811691161461093e57600080fd5b6006544281901061094e57600080fd5b61095661100e565b151561096157600080fd5b50600160a060020a03919091166000908152600960205260409020805460ff1916911515919091179055565b600381565b61a8c081565b60075481565b600454600160a060020a031681565b600b6020526000908152604090205481565b60005433600160a060020a039081169116146109da57600080fd5b600654428190106109ea57600080fd5b50600155565b60005433600160a060020a03908116911614610a0b57600080fd5b6000546002547fd710eaacc9582acea58adbbda80c3bcef84d92e024865f9cb17a9d686cbccead91600160a060020a03908116911683604051600160a060020a03938416815291831660208301529091166040808301919091526060909101905180910390a16002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000805433600160a060020a03908116911614610abc57600080fd5b60065442819010610acc57600080fd5b610ad461100e565b1515610adf57600080fd5b600091505b83821015610b3a578260096000878786818110610afd57fe5b60209081029290920135600160a060020a0316835250810191909152604001600020805460ff191691151591909117905560019190910190610ae4565b5050505050565b60005433600160a060020a03908116911614610b5c57600080fd5b600160a060020a0381161515610b7157600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600a6020526000908152604090205481565b6205460081565b60096020526000908152604090205460ff1681565b6127106b033b2e3c9fd0803ce8000000610748565b600080600160a060020a0383161515610c3b5760009150610c46565b823b90506000811191505b50919050565b3460008080808080808060018a1415610cfe57600160a060020a038b166000908152600a60205260409020549750610c8a888a63ffffffff61103316565b9750670de0b6b3a7640000881115610cf957610cb488670de0b6b3a764000063ffffffff61104916565b9650610cc6898863ffffffff61104916565b9850600160a060020a03331687156108fc0288604051600060405180830381858888f193505050501515610cf957600080fd5b610da1565b60028a1415610da157600160a060020a038b166000908152600b60205260409020549550610d32868a63ffffffff61103316565b9550671bc16d674ec80000861115610da157610d5c86671bc16d674ec8000063ffffffff61104916565b9450610d6e898663ffffffff61104916565b9850600160a060020a03331685156108fc0286604051600060405180830381858888f193505050501515610da157600080fd5b600754610dba906a33b2e3c9fd0803ce80000090611049565b935060008411610dc957600080fd5b610dd3848a61105b565b90935091506000831115610f1957600854600160a060020a031663d1a1beb48c8460016000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a039093166004840152602483019190915215156044820152606401602060405180830381600087803b1515610e6557600080fd5b6102c65a03f11515610e7657600080fd5b505050604051805190501515610e8b57600080fd5b600254600160a060020a031683156108fc0284604051600060405180830381858888f193505050501515610ebe57600080fd5b600754610ed1908363ffffffff61103316565b600755600160a060020a038b167fa3ed4207b1480804a4590a74f4b9cc310dc0fc839af8d10e2141ca3b72fd9348848460405191825260208201526040908101905180910390a25b610f29898463ffffffff61104916565b90506000811115610f6557600160a060020a03331681156108fc0282604051600060405180830381858888f193505050501515610f6557600080fd5b60018a1415610fb557600160a060020a038b166000908152600a6020526040902054610f97908463ffffffff61103316565b600160a060020a038c166000908152600a6020526040902055611001565b60028a141561100157600160a060020a038b166000908152600b6020526040902054610fe7908463ffffffff61103316565b600160a060020a038c166000908152600b60205260409020555b5050505050505050505050565b60006006544210801561102e57506007546a33b2e3c9fd0803ce80000090105b905090565b60008282018381101561104257fe5b9392505050565b60008282111561105557fe5b50900390565b600154600090820280841061107257829150611086565b6001548481151561107f57fe5b0491508390505b92509290505600a165627a7a723058202204ed18786c173fdc37cb7f3b620e766dfb125f500fc29f262cca26d75c7fe30029
Swarm Source
bzzr://0b88ee84b71fa4c87643ea8cb3b0331eecf48995d5a38524f2a63cb560c1164d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.