More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,552 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deliver Tokens I... | 8347300 | 2016 days ago | IN | 0 ETH | 0.0030957 | ||||
Deliver Tokens I... | 8347297 | 2016 days ago | IN | 0 ETH | 0.02897375 | ||||
Deliver Tokens I... | 8347294 | 2016 days ago | IN | 0 ETH | 0.03327875 | ||||
Deliver Tokens I... | 8347291 | 2016 days ago | IN | 0 ETH | 0.02740189 | ||||
Deliver Tokens I... | 8347287 | 2016 days ago | IN | 0 ETH | 0.02740189 | ||||
Deliver Tokens I... | 8347285 | 2016 days ago | IN | 0 ETH | 0.03020375 | ||||
Deliver Tokens I... | 8347283 | 2016 days ago | IN | 0 ETH | 0.03266375 | ||||
Deliver Tokens I... | 8347281 | 2016 days ago | IN | 0 ETH | 0.03512113 | ||||
Deliver Tokens I... | 8347278 | 2016 days ago | IN | 0 ETH | 0.0314285 | ||||
Deliver Tokens I... | 8347272 | 2016 days ago | IN | 0 ETH | 0.0301985 | ||||
Deliver Tokens I... | 8347269 | 2016 days ago | IN | 0 ETH | 0.0363485 | ||||
Deliver Tokens I... | 8347267 | 2016 days ago | IN | 0 ETH | 0.0338885 | ||||
Deliver Tokens I... | 8347264 | 2016 days ago | IN | 0 ETH | 0.02958088 | ||||
Deliver Tokens I... | 8153758 | 2046 days ago | IN | 0 ETH | 0.0061707 | ||||
Deliver Tokens I... | 8153753 | 2046 days ago | IN | 0 ETH | 0.05787875 | ||||
Deliver Tokens I... | 8153751 | 2046 days ago | IN | 0 ETH | 0.06341375 | ||||
Deliver Tokens I... | 8153746 | 2046 days ago | IN | 0 ETH | 0.05480375 | ||||
Deliver Tokens I... | 8153742 | 2046 days ago | IN | 0 ETH | 0.05726375 | ||||
Deliver Tokens I... | 8153738 | 2046 days ago | IN | 0 ETH | 0.05910875 | ||||
Deliver Tokens I... | 8153734 | 2046 days ago | IN | 0 ETH | 0.05910875 | ||||
Deliver Tokens I... | 8153730 | 2046 days ago | IN | 0 ETH | 0.05972113 | ||||
Deliver Tokens I... | 8153729 | 2046 days ago | IN | 0 ETH | 0.0603335 | ||||
Deliver Tokens I... | 8153726 | 2046 days ago | IN | 0 ETH | 0.0584885 | ||||
Deliver Tokens I... | 8153722 | 2046 days ago | IN | 0 ETH | 0.0640235 | ||||
Deliver Tokens I... | 8153718 | 2046 days ago | IN | 0 ETH | 0.0621785 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
7943675 | 2079 days ago | 0.05617849 ETH | ||||
5845662 | 2432 days ago | 9.26196801 ETH | ||||
5845652 | 2432 days ago | 9.26196801 ETH | ||||
5845648 | 2432 days ago | 0.17 ETH | ||||
5845648 | 2432 days ago | 0.2 ETH | ||||
5845648 | 2432 days ago | 2 ETH | ||||
5845648 | 2432 days ago | 0.14 ETH | ||||
5845648 | 2432 days ago | 1.5 ETH | ||||
5845648 | 2432 days ago | 0.12 ETH | ||||
5845648 | 2432 days ago | 1.5 ETH | ||||
5845648 | 2432 days ago | 0.5 ETH | ||||
5845648 | 2432 days ago | 3 ETH | ||||
5845648 | 2432 days ago | 20 ETH | ||||
5845648 | 2432 days ago | 0.89 ETH | ||||
5845648 | 2432 days ago | 1 ETH | ||||
5845648 | 2432 days ago | 1 ETH | ||||
5845648 | 2432 days ago | 30 ETH | ||||
5845648 | 2432 days ago | 0.5 ETH | ||||
5845648 | 2432 days ago | 1 ETH | ||||
5845648 | 2432 days ago | 26.5 ETH | ||||
5845648 | 2432 days ago | 50 ETH | ||||
5845648 | 2432 days ago | 10 ETH | ||||
5845648 | 2432 days ago | 50 ETH | ||||
5845648 | 2432 days ago | 2.5 ETH | ||||
5845648 | 2432 days ago | 1 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CarryTokenPresale
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-09-01 */ pragma solidity ^0.4.21; // File: openzeppelin-solidity/contracts/math/SafeMath.sol /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ 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 a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); 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: openzeppelin-solidity/contracts/token/ERC20/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: openzeppelin-solidity/contracts/crowdsale/Crowdsale.sol /** * @title Crowdsale * @dev Crowdsale is a base contract for managing a token crowdsale, * allowing investors to purchase tokens with ether. This contract implements * such functionality in its most fundamental form and can be extended to provide additional * functionality and/or custom behavior. * The external interface represents the basic interface for purchasing tokens, and conform * the base architecture for crowdsales. They are *not* intended to be modified / overriden. * The internal interface conforms the extensible and modifiable surface of crowdsales. Override * the methods to add functionality. Consider using 'super' where appropiate to concatenate * behavior. */ contract Crowdsale { using SafeMath for uint256; // The token being sold ERC20 public token; // Address where funds are collected address public wallet; // How many token units a buyer gets per wei uint256 public rate; // Amount of wei raised uint256 public weiRaised; /** * Event for token purchase logging * @param purchaser who paid for the tokens * @param beneficiary who got the tokens * @param value weis paid for purchase * @param amount amount of tokens purchased */ event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount); /** * @param _rate Number of token units a buyer gets per wei * @param _wallet Address where collected funds will be forwarded to * @param _token Address of the token being sold */ function Crowdsale(uint256 _rate, address _wallet, ERC20 _token) public { require(_rate > 0); require(_wallet != address(0)); require(_token != address(0)); rate = _rate; wallet = _wallet; token = _token; } // ----------------------------------------- // Crowdsale external interface // ----------------------------------------- /** * @dev fallback function ***DO NOT OVERRIDE*** */ function () external payable { buyTokens(msg.sender); } /** * @dev low level token purchase ***DO NOT OVERRIDE*** * @param _beneficiary Address performing the token purchase */ function buyTokens(address _beneficiary) public payable { uint256 weiAmount = msg.value; _preValidatePurchase(_beneficiary, weiAmount); // calculate token amount to be created uint256 tokens = _getTokenAmount(weiAmount); // update state weiRaised = weiRaised.add(weiAmount); _processPurchase(_beneficiary, tokens); emit TokenPurchase( msg.sender, _beneficiary, weiAmount, tokens ); _updatePurchasingState(_beneficiary, weiAmount); _forwardFunds(); _postValidatePurchase(_beneficiary, weiAmount); } // ----------------------------------------- // Internal interface (extensible) // ----------------------------------------- /** * @dev Validation of an incoming purchase. Use require statements to revert state when conditions are not met. Use super to concatenate validations. * @param _beneficiary Address performing the token purchase * @param _weiAmount Value in wei involved in the purchase */ function _preValidatePurchase(address _beneficiary, uint256 _weiAmount) internal { require(_beneficiary != address(0)); require(_weiAmount != 0); } /** * @dev Validation of an executed purchase. Observe state and use revert statements to undo rollback when valid conditions are not met. * @param _beneficiary Address performing the token purchase * @param _weiAmount Value in wei involved in the purchase */ function _postValidatePurchase(address _beneficiary, uint256 _weiAmount) internal { // optional override } /** * @dev Source of tokens. Override this method to modify the way in which the crowdsale ultimately gets and sends its tokens. * @param _beneficiary Address performing the token purchase * @param _tokenAmount Number of tokens to be emitted */ function _deliverTokens(address _beneficiary, uint256 _tokenAmount) internal { token.transfer(_beneficiary, _tokenAmount); } /** * @dev Executed when a purchase has been validated and is ready to be executed. Not necessarily emits/sends tokens. * @param _beneficiary Address receiving the tokens * @param _tokenAmount Number of tokens to be purchased */ function _processPurchase(address _beneficiary, uint256 _tokenAmount) internal { _deliverTokens(_beneficiary, _tokenAmount); } /** * @dev Override for extensions that require an internal state to check for validity (current user contributions, etc.) * @param _beneficiary Address receiving the tokens * @param _weiAmount Value in wei involved in the purchase */ function _updatePurchasingState(address _beneficiary, uint256 _weiAmount) internal { // optional override } /** * @dev Override to extend the way in which ether is converted to tokens. * @param _weiAmount Value in wei to be converted into tokens * @return Number of tokens that can be purchased with the specified _weiAmount */ function _getTokenAmount(uint256 _weiAmount) internal view returns (uint256) { return _weiAmount.mul(rate); } /** * @dev Determines how ETH is stored/forwarded on purchases. */ function _forwardFunds() internal { wallet.transfer(msg.value); } } // File: openzeppelin-solidity/contracts/crowdsale/validation/CappedCrowdsale.sol /** * @title CappedCrowdsale * @dev Crowdsale with a limit for total contributions. */ contract CappedCrowdsale is Crowdsale { using SafeMath for uint256; uint256 public cap; /** * @dev Constructor, takes maximum amount of wei accepted in the crowdsale. * @param _cap Max amount of wei to be contributed */ function CappedCrowdsale(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @dev Checks whether the cap has been reached. * @return Whether the cap was reached */ function capReached() public view returns (bool) { return weiRaised >= cap; } /** * @dev Extend parent behavior requiring purchase to respect the funding cap. * @param _beneficiary Token purchaser * @param _weiAmount Amount of wei contributed */ function _preValidatePurchase(address _beneficiary, uint256 _weiAmount) internal { super._preValidatePurchase(_beneficiary, _weiAmount); require(weiRaised.add(_weiAmount) <= cap); } } // File: openzeppelin-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)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } // File: openzeppelin-solidity/contracts/crowdsale/validation/WhitelistedCrowdsale.sol /** * @title WhitelistedCrowdsale * @dev Crowdsale in which only whitelisted users can contribute. */ contract WhitelistedCrowdsale is Crowdsale, Ownable { mapping(address => bool) public whitelist; /** * @dev Reverts if beneficiary is not whitelisted. Can be used when extending this contract. */ modifier isWhitelisted(address _beneficiary) { require(whitelist[_beneficiary]); _; } /** * @dev Adds single address to whitelist. * @param _beneficiary Address to be added to the whitelist */ function addToWhitelist(address _beneficiary) external onlyOwner { whitelist[_beneficiary] = true; } /** * @dev Adds list of addresses to whitelist. Not overloaded due to limitations with truffle testing. * @param _beneficiaries Addresses to be added to the whitelist */ function addManyToWhitelist(address[] _beneficiaries) external onlyOwner { for (uint256 i = 0; i < _beneficiaries.length; i++) { whitelist[_beneficiaries[i]] = true; } } /** * @dev Removes single address from whitelist. * @param _beneficiary Address to be removed to the whitelist */ function removeFromWhitelist(address _beneficiary) external onlyOwner { whitelist[_beneficiary] = false; } /** * @dev Extend parent behavior requiring beneficiary to be in whitelist. * @param _beneficiary Token beneficiary * @param _weiAmount Amount of wei contributed */ function _preValidatePurchase(address _beneficiary, uint256 _weiAmount) internal isWhitelisted(_beneficiary) { super._preValidatePurchase(_beneficiary, _weiAmount); } } // File: openzeppelin-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; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } // File: openzeppelin-solidity/contracts/token/ERC20/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; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @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]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit 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) { return balances[_owner]; } } // File: openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { _burn(msg.sender, _value); } function _burn(address _who, uint256 _value) internal { require(_value <= balances[_who]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(_who, _value); emit Transfer(_who, address(0), _value); } } // File: openzeppelin-solidity/contracts/token/ERC20/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); emit 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; emit 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); emit 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); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } // File: openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; emit MintFinished(); return true; } } // File: openzeppelin-solidity/contracts/token/ERC20/CappedToken.sol /** * @title Capped token * @dev Mintable token with a token cap. */ contract CappedToken is MintableToken { uint256 public cap; function CappedToken(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { require(totalSupply_.add(_amount) <= cap); return super.mint(_to, _amount); } } // File: openzeppelin-solidity/contracts/token/ERC20/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/CarryToken.sol // The Carry token and the tokensale contracts // Copyright (C) 2018 Carry Protocol // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. pragma solidity ^0.4.23; contract CarryToken is PausableToken, CappedToken, BurnableToken { string public name = "CarryToken"; string public symbol = "CRE"; uint8 public decimals = 18; // See also <https://carryprotocol.io/#section-token-distribution>. // 10 billion <---------| |-----------------> 10^18 uint256 constant TOTAL_CAP = 10000000000 * 1000000000000000000; // FIXME: Here we've wanted to use constructor() keyword instead, // but solium/solhint lint softwares don't parse it properly as of // April 2018. function CarryToken() public CappedToken(TOTAL_CAP) { } } // File: contracts/CarryTokenCrowdsale.sol // The Carry token and the tokensale contracts // Copyright (C) 2018 Carry Protocol // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. pragma solidity ^0.4.23; /** * @title CarryTokenCrowdsale * @dev The common base contract for both sales: the Carry token presale, * and the Carry token public crowdsale. */ contract CarryTokenCrowdsale is WhitelistedCrowdsale, CappedCrowdsale, Pausable { using SafeMath for uint256; uint256 constant maxGasPrice = 40000000000; // 40 gwei // Individual min and max purchases. uint256 public individualMinPurchaseWei; uint256 public individualMaxCapWei; mapping(address => uint256) public contributions; // FIXME: Here we've wanted to use constructor() keyword instead, // but solium/solhint lint softwares don't parse it properly as of // April 2018. function CarryTokenCrowdsale( address _wallet, CarryToken _token, uint256 _rate, uint256 _cap, uint256 _individualMinPurchaseWei, uint256 _individualMaxCapWei ) public CappedCrowdsale(_cap) Crowdsale(_rate, _wallet, _token) { individualMinPurchaseWei = _individualMinPurchaseWei; individualMaxCapWei = _individualMaxCapWei; } function _preValidatePurchase( address _beneficiary, uint256 _weiAmount ) internal whenNotPaused { // Prevent gas war among purchasers. require(tx.gasprice <= maxGasPrice); super._preValidatePurchase(_beneficiary, _weiAmount); uint256 contribution = contributions[_beneficiary]; uint256 contributionAfterPurchase = contribution.add(_weiAmount); // If a contributor already has purchased a minimum amount, say 0.1 ETH, // then they can purchase once again with less than a minimum amount, // say 0.01 ETH, because they have already satisfied the minimum // purchase. require(contributionAfterPurchase >= individualMinPurchaseWei); require(contributionAfterPurchase <= individualMaxCapWei); } function _updatePurchasingState( address _beneficiary, uint256 _weiAmount ) internal { super._updatePurchasingState(_beneficiary, _weiAmount); contributions[_beneficiary] = contributions[_beneficiary].add( _weiAmount ); } } // File: contracts/GradualDeliveryCrowdsale.sol // The Carry token and the tokensale contracts // Copyright (C) 2018 Carry Protocol // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. pragma solidity ^0.4.23; /** * @title GradualDeliveryCrowdsale * @dev Crowdsale that does not deliver tokens to a beneficiary immediately * after they have just purchased, but instead partially delivers tokens through * several times when the contract owner calls deliverTokensInRatio() method. * Note that it also provides methods to selectively refund some purchases. */ contract GradualDeliveryCrowdsale is Crowdsale, Ownable { using SafeMath for uint; using SafeMath for uint256; mapping(address => uint256) public balances; address[] beneficiaries; mapping(address => uint256) public refundedDeposits; event TokenDelivered(address indexed beneficiary, uint256 tokenAmount); event RefundDeposited( address indexed beneficiary, uint256 tokenAmount, uint256 weiAmount ); event Refunded( address indexed beneficiary, address indexed receiver, uint256 weiAmount ); /** * @dev Deliver only the given ratio of tokens to the beneficiaries. * For example, where there are two beneficiaries of each balance 90 CRE and * 60 CRE, deliverTokensInRatio(1, 3) delivers each 30 CRE and 20 CRE to * them. In the similar way, deliverTokensInRatio(1, 1) delivers * their entire tokens. */ function deliverTokensInRatio( uint256 _numerator, uint256 _denominator ) external onlyOwner { _deliverTokensInRatio( _numerator, _denominator, 0, beneficiaries.length ); } /** * @dev It's mostly same to deliverTokensInRatio(), except it processes * only a particular range of the list of beneficiaries. */ function deliverTokensInRatioOfRange( uint256 _numerator, uint256 _denominator, uint _startIndex, uint _endIndex ) external onlyOwner { require(_startIndex < _endIndex); _deliverTokensInRatio(_numerator, _denominator, _startIndex, _endIndex); } function _deliverTokensInRatio( uint256 _numerator, uint256 _denominator, uint _startIndex, uint _endIndex ) internal { require(_denominator > 0); require(_numerator <= _denominator); uint endIndex = _endIndex; if (endIndex > beneficiaries.length) { endIndex = beneficiaries.length; } for (uint i = _startIndex; i < endIndex; i = i.add(1)) { address beneficiary = beneficiaries[i]; uint256 balance = balances[beneficiary]; if (balance > 0) { uint256 amount = balance.mul(_numerator).div(_denominator); balances[beneficiary] = balance.sub(amount); _deliverTokens(beneficiary, amount); emit TokenDelivered(beneficiary, amount); } } } function _processPurchase( address _beneficiary, uint256 _tokenAmount ) internal { if (_tokenAmount > 0) { if (balances[_beneficiary] <= 0) { beneficiaries.push(_beneficiary); } balances[_beneficiary] = balances[_beneficiary].add(_tokenAmount); } } /** * @dev Refund the given ether to a beneficiary. It only can be called by * either the contract owner or the wallet (i.e., Crowdsale.wallet) address. * The only amount of the ether sent together in a transaction is refunded. */ function depositRefund(address _beneficiary) public payable { require(msg.sender == owner || msg.sender == wallet); uint256 weiToRefund = msg.value; require(weiToRefund <= weiRaised); uint256 tokensToRefund = _getTokenAmount(weiToRefund); uint256 tokenBalance = balances[_beneficiary]; require(tokenBalance >= tokensToRefund); weiRaised = weiRaised.sub(weiToRefund); balances[_beneficiary] = tokenBalance.sub(tokensToRefund); refundedDeposits[_beneficiary] = refundedDeposits[_beneficiary].add( weiToRefund ); emit RefundDeposited(_beneficiary, tokensToRefund, weiToRefund); } /** * @dev Receive one's refunded ethers in the deposit. It can be called by * either the contract owner or the beneficiary of the refund. * The deposited ether is sent to only the beneficiary regardless it is * called by which address, either the contract owner or the beneficary. * It usually can be systemically called together right after * depositRefund() is called. */ function receiveRefund(address _beneficiary) public { require(msg.sender == owner || msg.sender == _beneficiary); _transferRefund(_beneficiary, _beneficiary); } /** * @dev Similar to receiveRefund() except that it cannot be called by * even the contract owner, but only the beneficiary of the refund. * It also takes an additional parameter, a wallet address to receiver * the deposited (refunded) ethers. * The main purpose of this method is to receive the refunded ethers * to the other address than the beneficiary address. Usually after * depositRefund() is called, receiveRefund() is immediately executed * together by the automated system, but there could be cases that * the the beneficiary address is a smart contract and it causes * the transaction to transfer ethers in any reason. In such cases, * the deposit beneficiary need to "pull" his ethers to his another * wallet address by calling this method. */ function receiveRefundTo(address _beneficiary, address _wallet) public { require(msg.sender == _beneficiary); _transferRefund(_beneficiary, _wallet); } function _transferRefund(address _beneficiary, address _wallet) internal { uint256 depositedWeiAmount = refundedDeposits[_beneficiary]; require(depositedWeiAmount > 0); refundedDeposits[_beneficiary] = 0; _wallet.transfer(depositedWeiAmount); emit Refunded(_beneficiary, _wallet, depositedWeiAmount); } } // File: contracts/CarryTokenPresale.sol // The Carry token and the tokensale contracts // Copyright (C) 2018 Carry Protocol // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. pragma solidity ^0.4.23; /** * @title CarryTokenPresale * @dev The Carry token presale contract. */ contract CarryTokenPresale is CarryTokenCrowdsale, GradualDeliveryCrowdsale { using SafeMath for uint256; // FIXME: Here we've wanted to use constructor() keyword instead, // but solium/solhint lint softwares don't parse it properly as of // April 2018. function CarryTokenPresale( address _wallet, CarryToken _token, uint256 _rate, uint256 _cap, uint256 _individualMinPurchaseWei, uint256 _individualMaxCapWei ) public CarryTokenCrowdsale( _wallet, _token, _rate, _cap, _individualMinPurchaseWei, _individualMaxCapWei ) { } function _transferRefund(address _beneficiary, address _wallet) internal { uint256 depositedWeiAmount = refundedDeposits[_beneficiary]; super._transferRefund(_beneficiary, _wallet); contributions[_beneficiary] = contributions[_beneficiary].sub( depositedWeiAmount ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"depositRefund","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"individualMaxCapWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","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":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contributions","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"capReached","outputs":[{"name":"","type":"bool"}],"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":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"refundedDeposits","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_wallet","type":"address"}],"name":"receiveRefundTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"receiveRefund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_numerator","type":"uint256"},{"name":"_denominator","type":"uint256"}],"name":"deliverTokensInRatio","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"removeFromWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiaries","type":"address[]"}],"name":"addManyToWhitelist","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":"","type":"address"}],"name":"whitelist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"individualMinPurchaseWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"addToWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_numerator","type":"uint256"},{"name":"_denominator","type":"uint256"},{"name":"_startIndex","type":"uint256"},{"name":"_endIndex","type":"uint256"}],"name":"deliverTokensInRatioOfRange","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_wallet","type":"address"},{"name":"_token","type":"address"},{"name":"_rate","type":"uint256"},{"name":"_cap","type":"uint256"},{"name":"_individualMinPurchaseWei","type":"uint256"},{"name":"_individualMaxCapWei","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"tokenAmount","type":"uint256"}],"name":"TokenDelivered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"tokenAmount","type":"uint256"},{"indexed":false,"name":"weiAmount","type":"uint256"}],"name":"RefundDeposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":true,"name":"receiver","type":"address"},{"indexed":false,"name":"weiAmount","type":"uint256"}],"name":"Refunded","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"}]
Contract Creation Code
60806040526007805460ff1916905534801561001a57600080fd5b5060405160c0806110ad83398101604090815281516020830151918301516060840151608085015160a09095015192949192909190858585858585828487876000831161006657600080fd5b600160a060020a038216151561007b57600080fd5b600160a060020a038116151561009057600080fd5b60029290925560018054600160a060020a03928316600160a060020a031991821617909155600080549390921692811692909217815560048054909216331790915581116100dd57600080fd5b60065560089190915560095550505050505050505050610fab806101026000396000f3006080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166327e235e3811461015e5780632c4e722e146101915780632fdbdd2c146101a65780633282aa8a146101ba578063355274ea146101cf5780633f4ba83a146101e45780634042b66f146101f957806342e94c901461020e5780634f9359451461022f578063521eb273146102585780635c975abb1461028957806360b4d34d1461029e5780636f3b4a55146102bf57806372a00f85146102e65780638456cb5914610307578063894504f61461031c5780638ab1d681146103375780638c10671c146103585780638da5cb5b146103785780639b19251a1461038d578063a213051c146103ae578063e43252d7146103c3578063ec8ac4d8146103e4578063f2fde38b146103f8578063f7ecbbe314610419578063fc0c546a1461043a575b61015c3361044f565b005b34801561016a57600080fd5b5061017f600160a060020a03600435166104f1565b60408051918252519081900360200190f35b34801561019d57600080fd5b5061017f610503565b61015c600160a060020a0360043516610509565b3480156101c657600080fd5b5061017f61063f565b3480156101db57600080fd5b5061017f610645565b3480156101f057600080fd5b5061015c61064b565b34801561020557600080fd5b5061017f6106a8565b34801561021a57600080fd5b5061017f600160a060020a03600435166106ae565b34801561023b57600080fd5b506102446106c0565b604080519115158252519081900360200190f35b34801561026457600080fd5b5061026d6106cb565b60408051600160a060020a039092168252519081900360200190f35b34801561029557600080fd5b506102446106da565b3480156102aa57600080fd5b5061017f600160a060020a03600435166106e3565b3480156102cb57600080fd5b5061015c600160a060020a03600435811690602435166106f5565b3480156102f257600080fd5b5061015c600160a060020a0360043516610718565b34801561031357600080fd5b5061015c610751565b34801561032857600080fd5b5061015c6004356024356107b0565b34801561034357600080fd5b5061015c600160a060020a03600435166107d9565b34801561036457600080fd5b5061015c6004803560248101910135610811565b34801561038457600080fd5b5061026d610882565b34801561039957600080fd5b50610244600160a060020a0360043516610891565b3480156103ba57600080fd5b5061017f6108a6565b3480156103cf57600080fd5b5061015c600160a060020a03600435166108ac565b61015c600160a060020a036004351661044f565b34801561040457600080fd5b5061015c600160a060020a03600435166108e7565b34801561042557600080fd5b5061015c60043560243560443560643561097c565b34801561044657600080fd5b5061026d6109b1565b34600061045c83836109c0565b61046582610a3d565b60035490915061047b908363ffffffff610a5a16565b6003556104888382610a67565b60408051838152602081018390528151600160a060020a0386169233927f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad18929081900390910190a36104da8383610b2d565b6104e2610b80565b6104ec8383610714565b505050565b600b6020526000908152604090205481565b60025481565b60045460009081908190600160a060020a03163314806105335750600154600160a060020a031633145b151561053e57600080fd5b60035434935083111561055057600080fd5b61055983610a3d565b600160a060020a0385166000908152600b602052604090205490925090508181101561058457600080fd5b600354610597908463ffffffff610bb916565b6003556105aa818363ffffffff610bb916565b600160a060020a0385166000908152600b6020908152604080832093909355600d905220546105df908463ffffffff610a5a16565b600160a060020a0385166000818152600d6020908152604091829020939093558051858152928301869052805191927fbec6a55421a6635b42a70b92f3fcd333a5bd0142ece4f56d6ff6801ef914121b929081900390910190a250505050565b60095481565b60065481565b600454600160a060020a0316331461066257600080fd5b60075460ff16151561067357600080fd5b6007805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035481565b600a6020526000908152604090205481565b600654600354101590565b600154600160a060020a031681565b60075460ff1681565b600d6020526000908152604090205481565b33600160a060020a0383161461070a57600080fd5b6107148282610bcb565b5050565b600454600160a060020a0316331480610739575033600160a060020a038216145b151561074457600080fd5b61074e8182610bcb565b50565b600454600160a060020a0316331461076857600080fd5b60075460ff161561077857600080fd5b6007805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600454600160a060020a031633146107c757600080fd5b61071482826000600c80549050610c38565b600454600160a060020a031633146107f057600080fd5b600160a060020a03166000908152600560205260409020805460ff19169055565b600454600090600160a060020a0316331461082b57600080fd5b5060005b818110156104ec5760016005600085858581811061084957fe5b60209081029290920135600160a060020a0316835250810191909152604001600020805460ff191691151591909117905560010161082f565b600454600160a060020a031681565b60056020526000908152604090205460ff1681565b60085481565b600454600160a060020a031633146108c357600080fd5b600160a060020a03166000908152600560205260409020805460ff19166001179055565b600454600160a060020a031633146108fe57600080fd5b600160a060020a038116151561091357600080fd5b600454604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600454600160a060020a0316331461099357600080fd5b80821061099f57600080fd5b6109ab84848484610c38565b50505050565b600054600160a060020a031681565b600754600090819060ff16156109d557600080fd5b6409502f90003a11156109e757600080fd5b6109f18484610d6c565b600160a060020a0384166000908152600a60205260409020549150610a1c828463ffffffff610a5a16565b600854909150811015610a2e57600080fd5b6009548111156109ab57600080fd5b6000610a5460025483610d9790919063ffffffff16565b92915050565b81810182811015610a5457fe5b600081111561071457600160a060020a0382166000908152600b602052604081205411610ae757600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c701805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790555b600160a060020a0382166000908152600b6020526040902054610b10908263ffffffff610a5a16565b600160a060020a0383166000908152600b60205260409020555050565b610b378282610714565b600160a060020a0382166000908152600a6020526040902054610b60908263ffffffff610a5a16565b600160a060020a039092166000908152600a602052604090209190915550565b600154604051600160a060020a03909116903480156108fc02916000818181858888f1935050505015801561074e573d6000803e3d6000fd5b600082821115610bc557fe5b50900390565b600160a060020a0382166000908152600d6020526040902054610bee8383610dc0565b600160a060020a0383166000908152600a6020526040902054610c17908263ffffffff610bb916565b600160a060020a039093166000908152600a60205260409020929092555050565b600080808080808811610c4a57600080fd5b87891115610c5757600080fd5b600c54869550851115610c6a57600c5494505b8693505b84841015610d6157600c805485908110610c8457fe5b6000918252602080832090910154600160a060020a0316808352600b90915260408220549094509250821115610d4957610cd488610cc8848c63ffffffff610d9716565b9063ffffffff610e7f16565b9050610ce6828263ffffffff610bb916565b600160a060020a0384166000908152600b6020526040902055610d098382610e94565b604080518281529051600160a060020a038516917f06fd92518610d6cbeff50af5cfc376de1de0809bc0d255140eb20715f25af951919081900360200190a25b610d5a84600163ffffffff610a5a16565b9350610c6e565b505050505050505050565b610d768282610f30565b600654600354610d8c908363ffffffff610a5a16565b111561071457600080fd5b6000821515610da857506000610a54565b50818102818382811515610db857fe5b0414610a5457fe5b600160a060020a0382166000908152600d6020526040812054908111610de557600080fd5b600160a060020a038084166000908152600d6020526040808220829055519184169183156108fc0291849190818181858888f19350505050158015610e2e573d6000803e3d6000fd5b5081600160a060020a031683600160a060020a03167fec1e5ed733e00f1a00915d56caef57b4f52312dde4f9b3165f213319a0da156b836040518082815260200191505060405180910390a3505050565b60008183811515610e8c57fe5b049392505050565b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152602482018690529151919092169263a9059cbb92604480820193602093909283900390910190829087803b158015610f0657600080fd5b505af1158015610f1a573d6000803e3d6000fd5b505050506040513d60208110156109ab57600080fd5b600160a060020a038216600090815260056020526040902054829060ff161515610f5957600080fd5b6104ec8383600160a060020a0382161515610f7357600080fd5b80151561071457600080fd00a165627a7a7230582072f5c79746be9575698a75962b780ceccb8f3935701209106fb44f7d6bba707500290000000000000000000000008d5f5f9a2621be9d32896cf0172515fb211e26be000000000000000000000000115ec79f1de567ec68b7ae7eda501b406626478e00000000000000000000000000000000000000000000000000000000000123fe00000000000000000000000000000000000000000000010f12a101b13f090000000000000000000000000000000000000000000000000000015fb7f9b8c38000000000000000000000000000000000000000000000000002b5e3af16b1880000
Deployed Bytecode
0x6080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166327e235e3811461015e5780632c4e722e146101915780632fdbdd2c146101a65780633282aa8a146101ba578063355274ea146101cf5780633f4ba83a146101e45780634042b66f146101f957806342e94c901461020e5780634f9359451461022f578063521eb273146102585780635c975abb1461028957806360b4d34d1461029e5780636f3b4a55146102bf57806372a00f85146102e65780638456cb5914610307578063894504f61461031c5780638ab1d681146103375780638c10671c146103585780638da5cb5b146103785780639b19251a1461038d578063a213051c146103ae578063e43252d7146103c3578063ec8ac4d8146103e4578063f2fde38b146103f8578063f7ecbbe314610419578063fc0c546a1461043a575b61015c3361044f565b005b34801561016a57600080fd5b5061017f600160a060020a03600435166104f1565b60408051918252519081900360200190f35b34801561019d57600080fd5b5061017f610503565b61015c600160a060020a0360043516610509565b3480156101c657600080fd5b5061017f61063f565b3480156101db57600080fd5b5061017f610645565b3480156101f057600080fd5b5061015c61064b565b34801561020557600080fd5b5061017f6106a8565b34801561021a57600080fd5b5061017f600160a060020a03600435166106ae565b34801561023b57600080fd5b506102446106c0565b604080519115158252519081900360200190f35b34801561026457600080fd5b5061026d6106cb565b60408051600160a060020a039092168252519081900360200190f35b34801561029557600080fd5b506102446106da565b3480156102aa57600080fd5b5061017f600160a060020a03600435166106e3565b3480156102cb57600080fd5b5061015c600160a060020a03600435811690602435166106f5565b3480156102f257600080fd5b5061015c600160a060020a0360043516610718565b34801561031357600080fd5b5061015c610751565b34801561032857600080fd5b5061015c6004356024356107b0565b34801561034357600080fd5b5061015c600160a060020a03600435166107d9565b34801561036457600080fd5b5061015c6004803560248101910135610811565b34801561038457600080fd5b5061026d610882565b34801561039957600080fd5b50610244600160a060020a0360043516610891565b3480156103ba57600080fd5b5061017f6108a6565b3480156103cf57600080fd5b5061015c600160a060020a03600435166108ac565b61015c600160a060020a036004351661044f565b34801561040457600080fd5b5061015c600160a060020a03600435166108e7565b34801561042557600080fd5b5061015c60043560243560443560643561097c565b34801561044657600080fd5b5061026d6109b1565b34600061045c83836109c0565b61046582610a3d565b60035490915061047b908363ffffffff610a5a16565b6003556104888382610a67565b60408051838152602081018390528151600160a060020a0386169233927f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad18929081900390910190a36104da8383610b2d565b6104e2610b80565b6104ec8383610714565b505050565b600b6020526000908152604090205481565b60025481565b60045460009081908190600160a060020a03163314806105335750600154600160a060020a031633145b151561053e57600080fd5b60035434935083111561055057600080fd5b61055983610a3d565b600160a060020a0385166000908152600b602052604090205490925090508181101561058457600080fd5b600354610597908463ffffffff610bb916565b6003556105aa818363ffffffff610bb916565b600160a060020a0385166000908152600b6020908152604080832093909355600d905220546105df908463ffffffff610a5a16565b600160a060020a0385166000818152600d6020908152604091829020939093558051858152928301869052805191927fbec6a55421a6635b42a70b92f3fcd333a5bd0142ece4f56d6ff6801ef914121b929081900390910190a250505050565b60095481565b60065481565b600454600160a060020a0316331461066257600080fd5b60075460ff16151561067357600080fd5b6007805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035481565b600a6020526000908152604090205481565b600654600354101590565b600154600160a060020a031681565b60075460ff1681565b600d6020526000908152604090205481565b33600160a060020a0383161461070a57600080fd5b6107148282610bcb565b5050565b600454600160a060020a0316331480610739575033600160a060020a038216145b151561074457600080fd5b61074e8182610bcb565b50565b600454600160a060020a0316331461076857600080fd5b60075460ff161561077857600080fd5b6007805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600454600160a060020a031633146107c757600080fd5b61071482826000600c80549050610c38565b600454600160a060020a031633146107f057600080fd5b600160a060020a03166000908152600560205260409020805460ff19169055565b600454600090600160a060020a0316331461082b57600080fd5b5060005b818110156104ec5760016005600085858581811061084957fe5b60209081029290920135600160a060020a0316835250810191909152604001600020805460ff191691151591909117905560010161082f565b600454600160a060020a031681565b60056020526000908152604090205460ff1681565b60085481565b600454600160a060020a031633146108c357600080fd5b600160a060020a03166000908152600560205260409020805460ff19166001179055565b600454600160a060020a031633146108fe57600080fd5b600160a060020a038116151561091357600080fd5b600454604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600454600160a060020a0316331461099357600080fd5b80821061099f57600080fd5b6109ab84848484610c38565b50505050565b600054600160a060020a031681565b600754600090819060ff16156109d557600080fd5b6409502f90003a11156109e757600080fd5b6109f18484610d6c565b600160a060020a0384166000908152600a60205260409020549150610a1c828463ffffffff610a5a16565b600854909150811015610a2e57600080fd5b6009548111156109ab57600080fd5b6000610a5460025483610d9790919063ffffffff16565b92915050565b81810182811015610a5457fe5b600081111561071457600160a060020a0382166000908152600b602052604081205411610ae757600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c701805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790555b600160a060020a0382166000908152600b6020526040902054610b10908263ffffffff610a5a16565b600160a060020a0383166000908152600b60205260409020555050565b610b378282610714565b600160a060020a0382166000908152600a6020526040902054610b60908263ffffffff610a5a16565b600160a060020a039092166000908152600a602052604090209190915550565b600154604051600160a060020a03909116903480156108fc02916000818181858888f1935050505015801561074e573d6000803e3d6000fd5b600082821115610bc557fe5b50900390565b600160a060020a0382166000908152600d6020526040902054610bee8383610dc0565b600160a060020a0383166000908152600a6020526040902054610c17908263ffffffff610bb916565b600160a060020a039093166000908152600a60205260409020929092555050565b600080808080808811610c4a57600080fd5b87891115610c5757600080fd5b600c54869550851115610c6a57600c5494505b8693505b84841015610d6157600c805485908110610c8457fe5b6000918252602080832090910154600160a060020a0316808352600b90915260408220549094509250821115610d4957610cd488610cc8848c63ffffffff610d9716565b9063ffffffff610e7f16565b9050610ce6828263ffffffff610bb916565b600160a060020a0384166000908152600b6020526040902055610d098382610e94565b604080518281529051600160a060020a038516917f06fd92518610d6cbeff50af5cfc376de1de0809bc0d255140eb20715f25af951919081900360200190a25b610d5a84600163ffffffff610a5a16565b9350610c6e565b505050505050505050565b610d768282610f30565b600654600354610d8c908363ffffffff610a5a16565b111561071457600080fd5b6000821515610da857506000610a54565b50818102818382811515610db857fe5b0414610a5457fe5b600160a060020a0382166000908152600d6020526040812054908111610de557600080fd5b600160a060020a038084166000908152600d6020526040808220829055519184169183156108fc0291849190818181858888f19350505050158015610e2e573d6000803e3d6000fd5b5081600160a060020a031683600160a060020a03167fec1e5ed733e00f1a00915d56caef57b4f52312dde4f9b3165f213319a0da156b836040518082815260200191505060405180910390a3505050565b60008183811515610e8c57fe5b049392505050565b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152602482018690529151919092169263a9059cbb92604480820193602093909283900390910190829087803b158015610f0657600080fd5b505af1158015610f1a573d6000803e3d6000fd5b505050506040513d60208110156109ab57600080fd5b600160a060020a038216600090815260056020526040902054829060ff161515610f5957600080fd5b6104ec8383600160a060020a0382161515610f7357600080fd5b80151561071457600080fd00a165627a7a7230582072f5c79746be9575698a75962b780ceccb8f3935701209106fb44f7d6bba70750029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008d5f5f9a2621be9d32896cf0172515fb211e26be000000000000000000000000115ec79f1de567ec68b7ae7eda501b406626478e00000000000000000000000000000000000000000000000000000000000123fe00000000000000000000000000000000000000000000010f12a101b13f090000000000000000000000000000000000000000000000000000015fb7f9b8c38000000000000000000000000000000000000000000000000002b5e3af16b1880000
-----Decoded View---------------
Arg [0] : _wallet (address): 0x8D5F5f9a2621bE9d32896CF0172515Fb211E26bE
Arg [1] : _token (address): 0x115eC79F1de567eC68B7AE7eDA501b406626478e
Arg [2] : _rate (uint256): 74750
Arg [3] : _cap (uint256): 5000410000000000000000
Arg [4] : _individualMinPurchaseWei (uint256): 99000000000000000
Arg [5] : _individualMaxCapWei (uint256): 50000000000000000000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000008d5f5f9a2621be9d32896cf0172515fb211e26be
Arg [1] : 000000000000000000000000115ec79f1de567ec68b7ae7eda501b406626478e
Arg [2] : 00000000000000000000000000000000000000000000000000000000000123fe
Arg [3] : 00000000000000000000000000000000000000000000010f12a101b13f090000
Arg [4] : 000000000000000000000000000000000000000000000000015fb7f9b8c38000
Arg [5] : 000000000000000000000000000000000000000000000002b5e3af16b1880000
Swarm Source
bzzr://72f5c79746be9575698a75962b780ceccb8f3935701209106fb44f7d6bba7075
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.004476 | 1,073.6106 | $4.81 |
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.