More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 15,535 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 9177988 | 1907 days ago | IN | 0 ETH | 0.00075 | ||||
Transfer | 9177973 | 1907 days ago | IN | 0 ETH | 0.00042 | ||||
Transfer | 9177951 | 1907 days ago | IN | 0 ETH | 0.000105 | ||||
Transfer | 6827553 | 2296 days ago | IN | 0.1 ETH | 0.00598882 | ||||
Transfer | 5002772 | 2604 days ago | IN | 0.00004 ETH | 0.000105 | ||||
Transfer | 4632409 | 2669 days ago | IN | 1 ETH | 0.00525 | ||||
Withdraw Tokens | 4481773 | 2693 days ago | IN | 0 ETH | 0.00112108 | ||||
Transfer | 4467038 | 2695 days ago | IN | 0.15 ETH | 0.012 | ||||
Transfer | 4467027 | 2695 days ago | IN | 0.185 ETH | 0.0042 | ||||
Transfer | 4467016 | 2695 days ago | IN | 0.08 ETH | 0.003 | ||||
Transfer | 4466996 | 2695 days ago | IN | 0.35 ETH | 0.00151416 | ||||
Transfer | 4466989 | 2695 days ago | IN | 0.48955 ETH | 0.00151416 | ||||
Transfer | 4466989 | 2695 days ago | IN | 1 ETH | 0.00177019 | ||||
Transfer | 4466987 | 2695 days ago | IN | 8.99 ETH | 0.00432618 | ||||
Transfer | 4466985 | 2695 days ago | IN | 0.01632126 ETH | 0.0006 | ||||
Transfer | 4466960 | 2695 days ago | IN | 1 ETH | 0.00119916 | ||||
Transfer | 4466952 | 2695 days ago | IN | 0.3258 ETH | 0.00151416 | ||||
Transfer | 4466952 | 2695 days ago | IN | 0.033 ETH | 0.00342618 | ||||
Transfer | 4466931 | 2695 days ago | IN | 0.0331 ETH | 0.00057682 | ||||
Transfer | 4466922 | 2695 days ago | IN | 0.1 ETH | 0.00028841 | ||||
Transfer | 4466861 | 2695 days ago | IN | 0.1 ETH | 0.00151416 | ||||
Transfer | 4466840 | 2695 days ago | IN | 1 ETH | 0.00151416 | ||||
Transfer | 4466837 | 2695 days ago | IN | 0.035 ETH | 0.00432618 | ||||
Transfer | 4466831 | 2695 days ago | IN | 0.6 ETH | 0.00057682 | ||||
Transfer | 4466829 | 2695 days ago | IN | 0.06789067 ETH | 0.00151416 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 4466996 | 2695 days ago | 0.35 ETH | ||||
Transfer | 4466989 | 2695 days ago | 0.48955 ETH | ||||
Transfer | 4466989 | 2695 days ago | 1 ETH | ||||
Transfer | 4466987 | 2695 days ago | 8.99 ETH | ||||
Transfer | 4466960 | 2695 days ago | 1 ETH | ||||
Transfer | 4466952 | 2695 days ago | 0.3258 ETH | ||||
Transfer | 4466952 | 2695 days ago | 0.033 ETH | ||||
Transfer | 4466931 | 2695 days ago | 0.0331 ETH | ||||
Transfer | 4466922 | 2695 days ago | 0.1 ETH | ||||
Transfer | 4466861 | 2695 days ago | 0.1 ETH | ||||
Transfer | 4466840 | 2695 days ago | 1 ETH | ||||
Transfer | 4466837 | 2695 days ago | 0.035 ETH | ||||
Transfer | 4466831 | 2695 days ago | 0.6 ETH | ||||
Transfer | 4466829 | 2695 days ago | 0.06789067 ETH | ||||
Transfer | 4466817 | 2695 days ago | 0.1593725 ETH | ||||
Transfer | 4466815 | 2695 days ago | 0.05 ETH | ||||
Transfer | 4466808 | 2695 days ago | 0.04331224 ETH | ||||
Transfer | 4466801 | 2695 days ago | 0.2 ETH | ||||
Transfer | 4466790 | 2695 days ago | 0.130648 ETH | ||||
Transfer | 4466779 | 2695 days ago | 1 ETH | ||||
Transfer | 4466766 | 2695 days ago | 0.49 ETH | ||||
Transfer | 4466757 | 2695 days ago | 1 ETH | ||||
Transfer | 4466742 | 2695 days ago | 0.672 ETH | ||||
Transfer | 4466733 | 2695 days ago | 7 ETH | ||||
Transfer | 4466714 | 2695 days ago | 0.29241841 ETH |
Loading...
Loading
Contract Name:
ENJCrowdfund
Compiler Version
v0.4.15+commit.bbb8e64f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-10-03 */ pragma solidity ^0.4.15; /* Owned contract interface */ contract IOwned { // this function isn't abstract since the compiler emits automatically generated getter functions as external function owner() public constant returns (address) { owner; } function transferOwnership(address _newOwner) public; function acceptOwnership() public; } /* Provides support and utilities for contract ownership */ contract Owned is IOwned { address public owner; address public newOwner; event OwnerUpdate(address _prevOwner, address _newOwner); /** @dev constructor */ function Owned() { owner = msg.sender; } // allows execution by the owner only modifier ownerOnly { assert(msg.sender == owner); _; } /** @dev allows transferring the contract ownership the new owner still needs to accept the transfer can only be called by the contract owner @param _newOwner new contract owner */ function transferOwnership(address _newOwner) public ownerOnly { require(_newOwner != owner); newOwner = _newOwner; } /** @dev used by a new owner to accept an ownership transfer */ function acceptOwnership() public { require(msg.sender == newOwner); OwnerUpdate(owner, newOwner); owner = newOwner; newOwner = 0x0; } } /* Utilities & Common Modifiers */ contract Utils { /** constructor */ function Utils() { } // validates an address - currently only checks that it isn't null modifier validAddress(address _address) { require(_address != 0x0); _; } // verifies that the address is different than this contract address modifier notThis(address _address) { require(_address != address(this)); _; } // Overflow protected math functions /** @dev returns the sum of _x and _y, asserts if the calculation overflows @param _x value 1 @param _y value 2 @return sum */ function safeAdd(uint256 _x, uint256 _y) internal returns (uint256) { uint256 z = _x + _y; assert(z >= _x); return z; } /** @dev returns the difference of _x minus _y, asserts if the subtraction results in a negative number @param _x minuend @param _y subtrahend @return difference */ function safeSub(uint256 _x, uint256 _y) internal returns (uint256) { assert(_x >= _y); return _x - _y; } /** @dev returns the product of multiplying _x by _y, asserts if the calculation overflows @param _x factor 1 @param _y factor 2 @return product */ function safeMul(uint256 _x, uint256 _y) internal returns (uint256) { uint256 z = _x * _y; assert(_x == 0 || z / _x == _y); return z; } } /* ERC20 Standard Token interface */ contract IERC20Token { // these functions aren't abstract since the compiler emits automatically generated getter functions as external function name() public constant returns (string) { name; } function symbol() public constant returns (string) { symbol; } function decimals() public constant returns (uint8) { decimals; } function totalSupply() public constant returns (uint256) { totalSupply; } function balanceOf(address _owner) public constant returns (uint256 balance) { _owner; balance; } function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { _owner; _spender; remaining; } function transfer(address _to, uint256 _value) public returns (bool success); function transferFrom(address _from, address _to, uint256 _value) public returns (bool success); function approve(address _spender, uint256 _value) public returns (bool success); } /* Token Holder interface */ contract ITokenHolder is IOwned { function withdrawTokens(IERC20Token _token, address _to, uint256 _amount) public; } /* We consider every contract to be a 'token holder' since it's currently not possible for a contract to deny receiving tokens. The TokenHolder's contract sole purpose is to provide a safety mechanism that allows the owner to send tokens that were sent to the contract by mistake back to their sender. */ contract TokenHolder is ITokenHolder, Owned, Utils { /** @dev constructor */ function TokenHolder() { } /** @dev withdraws tokens held by the contract and sends them to an account can only be called by the owner @param _token ERC20 token contract address @param _to account to receive the new amount @param _amount amount to withdraw */ function withdrawTokens(IERC20Token _token, address _to, uint256 _amount) public ownerOnly validAddress(_token) validAddress(_to) notThis(_to) { assert(_token.transfer(_to, _amount)); } } /** ERC20 Standard Token implementation */ contract ERC20Token is IERC20Token, Utils { string public standard = "Token 0.1"; string public name = ""; string public symbol = ""; uint8 public decimals = 0; uint256 public totalSupply = 0; mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); /** @dev constructor @param _name token name @param _symbol token symbol @param _decimals decimal points, for display purposes */ function ERC20Token(string _name, string _symbol, uint8 _decimals) { require(bytes(_name).length > 0 && bytes(_symbol).length > 0); // validate input name = _name; symbol = _symbol; decimals = _decimals; } /** @dev send coins throws on any error rather then return a false flag to minimize user errors @param _to target address @param _value transfer amount @return true if the transfer was successful, false if it wasn't */ function transfer(address _to, uint256 _value) public validAddress(_to) returns (bool success) { balanceOf[msg.sender] = safeSub(balanceOf[msg.sender], _value); balanceOf[_to] = safeAdd(balanceOf[_to], _value); Transfer(msg.sender, _to, _value); return true; } /** @dev an account/contract attempts to get the coins throws on any error rather then return a false flag to minimize user errors @param _from source address @param _to target address @param _value transfer amount @return true if the transfer was successful, false if it wasn't */ function transferFrom(address _from, address _to, uint256 _value) public validAddress(_from) validAddress(_to) returns (bool success) { allowance[_from][msg.sender] = safeSub(allowance[_from][msg.sender], _value); balanceOf[_from] = safeSub(balanceOf[_from], _value); balanceOf[_to] = safeAdd(balanceOf[_to], _value); Transfer(_from, _to, _value); return true; } /** @dev allow another account/contract to spend some tokens on your behalf throws on any error rather then return a false flag to minimize user errors also, to minimize the risk of the approve/transferFrom attack vector (see https://docs.google.com/document/d/1YLPtQxZu1UAvO9cZ1O2RPXBbT0mooh4DYKjA_jp-RLM/), approve has to be called twice in 2 separate transactions - once to change the allowance to 0 and secondly to change it to the new allowance value @param _spender approved address @param _value allowance amount @return true if the approval was successful, false if it wasn't */ function approve(address _spender, uint256 _value) public validAddress(_spender) returns (bool success) { // if the allowance isn't 0, it can only be updated to 0 to prevent an allowance change immediately after withdrawal require(_value == 0 || allowance[msg.sender][_spender] == 0); allowance[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } } contract ENJToken is ERC20Token, TokenHolder { ///////////////////////////////////////// VARIABLE INITIALIZATION ///////////////////////////////////////// uint256 constant public ENJ_UNIT = 10 ** 18; uint256 public totalSupply = 1 * (10**9) * ENJ_UNIT; // Constants uint256 constant public maxPresaleSupply = 600 * 10**6 * ENJ_UNIT; // Total presale supply at max bonus uint256 constant public minCrowdsaleAllocation = 200 * 10**6 * ENJ_UNIT; // Min amount for crowdsale uint256 constant public incentivisationAllocation = 100 * 10**6 * ENJ_UNIT; // Incentivisation Allocation uint256 constant public advisorsAllocation = 26 * 10**6 * ENJ_UNIT; // Advisors Allocation uint256 constant public enjinTeamAllocation = 74 * 10**6 * ENJ_UNIT; // Enjin Team allocation address public crowdFundAddress; // Address of the crowdfund address public advisorAddress; // Enjin advisor's address address public incentivisationFundAddress; // Address that holds the incentivization funds address public enjinTeamAddress; // Enjin Team address // Variables uint256 public totalAllocatedToAdvisors = 0; // Counter to keep track of advisor token allocation uint256 public totalAllocatedToTeam = 0; // Counter to keep track of team token allocation uint256 public totalAllocated = 0; // Counter to keep track of overall token allocation uint256 constant public endTime = 1509494340; // 10/31/2017 @ 11:59pm (UTC) crowdsale end time (in seconds) bool internal isReleasedToPublic = false; // Flag to allow transfer/transferFrom before the end of the crowdfund uint256 internal teamTranchesReleased = 0; // Track how many tranches (allocations of 12.5% team tokens) have been released uint256 internal maxTeamTranches = 8; // The number of tranches allowed to the team until depleted ///////////////////////////////////////// MODIFIERS ///////////////////////////////////////// // Enjin Team timelock modifier safeTimelock() { require(now >= endTime + 6 * 4 weeks); _; } // Advisor Team timelock modifier advisorTimelock() { require(now >= endTime + 2 * 4 weeks); _; } // Function only accessible by the Crowdfund contract modifier crowdfundOnly() { require(msg.sender == crowdFundAddress); _; } ///////////////////////////////////////// CONSTRUCTOR ///////////////////////////////////////// /** @dev constructor @param _crowdFundAddress Crowdfund address @param _advisorAddress Advisor address */ function ENJToken(address _crowdFundAddress, address _advisorAddress, address _incentivisationFundAddress, address _enjinTeamAddress) ERC20Token("Enjin Coin", "ENJ", 18) { crowdFundAddress = _crowdFundAddress; advisorAddress = _advisorAddress; enjinTeamAddress = _enjinTeamAddress; incentivisationFundAddress = _incentivisationFundAddress; balanceOf[_crowdFundAddress] = minCrowdsaleAllocation + maxPresaleSupply; // Total presale + crowdfund tokens balanceOf[_incentivisationFundAddress] = incentivisationAllocation; // 10% Allocated for Marketing and Incentivisation totalAllocated += incentivisationAllocation; // Add to total Allocated funds } ///////////////////////////////////////// ERC20 OVERRIDE ///////////////////////////////////////// /** @dev send coins throws on any error rather then return a false flag to minimize user errors in addition to the standard checks, the function throws if transfers are disabled @param _to target address @param _value transfer amount @return true if the transfer was successful, throws if it wasn't */ function transfer(address _to, uint256 _value) public returns (bool success) { if (isTransferAllowed() == true || msg.sender == crowdFundAddress || msg.sender == incentivisationFundAddress) { assert(super.transfer(_to, _value)); return true; } revert(); } /** @dev an account/contract attempts to get the coins throws on any error rather then return a false flag to minimize user errors in addition to the standard checks, the function throws if transfers are disabled @param _from source address @param _to target address @param _value transfer amount @return true if the transfer was successful, throws if it wasn't */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { if (isTransferAllowed() == true || msg.sender == crowdFundAddress || msg.sender == incentivisationFundAddress) { assert(super.transferFrom(_from, _to, _value)); return true; } revert(); } ///////////////////////////////////////// ALLOCATION FUNCTIONS ///////////////////////////////////////// /** @dev Release one single tranche of the Enjin Team Token allocation throws if before timelock (6 months) ends and if not initiated by the owner of the contract returns true if valid Schedule goes as follows: 3 months: 12.5% (this tranche can only be released after the initial 6 months has passed) 6 months: 12.5% 9 months: 12.5% 12 months: 12.5% 15 months: 12.5% 18 months: 12.5% 21 months: 12.5% 24 months: 12.5% @return true if successful, throws if not */ function releaseEnjinTeamTokens() safeTimelock ownerOnly returns(bool success) { require(totalAllocatedToTeam < enjinTeamAllocation); uint256 enjinTeamAlloc = enjinTeamAllocation / 1000; uint256 currentTranche = uint256(now - endTime) / 12 weeks; // "months" after crowdsale end time (division floored) if(teamTranchesReleased < maxTeamTranches && currentTranche > teamTranchesReleased) { teamTranchesReleased++; uint256 amount = safeMul(enjinTeamAlloc, 125); balanceOf[enjinTeamAddress] = safeAdd(balanceOf[enjinTeamAddress], amount); Transfer(0x0, enjinTeamAddress, amount); totalAllocated = safeAdd(totalAllocated, amount); totalAllocatedToTeam = safeAdd(totalAllocatedToTeam, amount); return true; } revert(); } /** @dev release Advisors Token allocation throws if before timelock (2 months) ends or if no initiated by the advisors address or if there is no more allocation to give out returns true if valid @return true if successful, throws if not */ function releaseAdvisorTokens() advisorTimelock ownerOnly returns(bool success) { require(totalAllocatedToAdvisors == 0); balanceOf[advisorAddress] = safeAdd(balanceOf[advisorAddress], advisorsAllocation); totalAllocated = safeAdd(totalAllocated, advisorsAllocation); totalAllocatedToAdvisors = advisorsAllocation; Transfer(0x0, advisorAddress, advisorsAllocation); return true; } /** @dev Retrieve unsold tokens from the crowdfund throws if before timelock (6 months from end of Crowdfund) ends and if no initiated by the owner of the contract returns true if valid @return true if successful, throws if not */ function retrieveUnsoldTokens() safeTimelock ownerOnly returns(bool success) { uint256 amountOfTokens = balanceOf[crowdFundAddress]; balanceOf[crowdFundAddress] = 0; balanceOf[incentivisationFundAddress] = safeAdd(balanceOf[incentivisationFundAddress], amountOfTokens); totalAllocated = safeAdd(totalAllocated, amountOfTokens); Transfer(crowdFundAddress, incentivisationFundAddress, amountOfTokens); return true; } /** @dev Keep track of token allocations can only be called by the crowdfund contract */ function addToAllocation(uint256 _amount) crowdfundOnly { totalAllocated = safeAdd(totalAllocated, _amount); } /** @dev Function to allow transfers can only be called by the owner of the contract Transfers will be allowed regardless after the crowdfund end time. */ function allowTransfers() ownerOnly { isReleasedToPublic = true; } /** @dev User transfers are allowed/rejected Transfers are forbidden before the end of the crowdfund */ function isTransferAllowed() internal constant returns(bool) { if (now > endTime || isReleasedToPublic == true) { return true; } return false; } } contract ENJCrowdfund is TokenHolder { ///////////////////////////////////////// VARIABLE INITIALIZATION ///////////////////////////////////////// uint256 constant public startTime = 1507032000; // 10/03/2017 @ 12:00pm (UTC) crowdsale start time (in seconds) uint256 constant public endTime = 1509494340; // 10/31/2017 @ 11:59pm (UTC) crowdsale end time (in seconds) uint256 constant internal week2Start = startTime + (7 days); // 10/10/2017 @ 12:00pm (UTC) week 2 price begins uint256 constant internal week3Start = week2Start + (7 days); // 10/17/2017 @ 12:00pm (UTC) week 3 price begins uint256 constant internal week4Start = week3Start + (7 days); // 10/25/2017 @ 12:00pm (UTC) week 4 price begins uint256 public totalPresaleTokensYetToAllocate; // Counter that keeps track of presale tokens yet to allocate address public beneficiary = 0x0; // address to receive all ether contributions address public tokenAddress = 0x0; // address of the token itself ENJToken token; // ENJ Token interface ///////////////////////////////////////// EVENTS ///////////////////////////////////////// event CrowdsaleContribution(address indexed _contributor, uint256 _amount, uint256 _return); event PresaleContribution(address indexed _contributor, uint256 _amountOfTokens); ///////////////////////////////////////// CONSTRUCTOR ///////////////////////////////////////// /** @dev constructor @param _totalPresaleTokensYetToAllocate Total amount of presale tokens sold @param _beneficiary Address that will be receiving the ETH contributed */ function ENJCrowdfund(uint256 _totalPresaleTokensYetToAllocate, address _beneficiary) validAddress(_beneficiary) { totalPresaleTokensYetToAllocate = _totalPresaleTokensYetToAllocate; beneficiary = _beneficiary; } ///////////////////////////////////////// MODIFIERS ///////////////////////////////////////// // Ensures that the current time is between startTime (inclusive) and endTime (exclusive) modifier between() { assert(now >= startTime && now < endTime); _; } // Ensures the Token address is set modifier tokenIsSet() { require(tokenAddress != 0x0); _; } ///////////////////////////////////////// OWNER FUNCTIONS ///////////////////////////////////////// /** @dev Sets the ENJ Token address Can only be called once by the owner @param _tokenAddress ENJ Token Address */ function setToken(address _tokenAddress) validAddress(_tokenAddress) ownerOnly { require(tokenAddress == 0x0); tokenAddress = _tokenAddress; token = ENJToken(_tokenAddress); } /** @dev Sets a new Beneficiary address Can only be called by the owner @param _newBeneficiary Beneficiary Address */ function changeBeneficiary(address _newBeneficiary) validAddress(_newBeneficiary) ownerOnly { beneficiary = _newBeneficiary; } /** @dev Function to send ENJ to presale investors Can only be called while the presale is not over. @param _batchOfAddresses list of addresses @param _amountofENJ matching list of address balances */ function deliverPresaleTokens(address[] _batchOfAddresses, uint256[] _amountofENJ) external tokenIsSet ownerOnly returns (bool success) { require(now < startTime); for (uint256 i = 0; i < _batchOfAddresses.length; i++) { deliverPresaleTokenToClient(_batchOfAddresses[i], _amountofENJ[i]); } return true; } /** @dev Logic to transfer presale tokens Can only be called while the there are leftover presale tokens to allocate. Any multiple contribution from the same address will be aggregated. @param _accountHolder user address @param _amountofENJ balance to send out */ function deliverPresaleTokenToClient(address _accountHolder, uint256 _amountofENJ) internal ownerOnly { require(totalPresaleTokensYetToAllocate > 0); token.transfer(_accountHolder, _amountofENJ); token.addToAllocation(_amountofENJ); totalPresaleTokensYetToAllocate = safeSub(totalPresaleTokensYetToAllocate, _amountofENJ); PresaleContribution(_accountHolder, _amountofENJ); } ///////////////////////////////////////// PUBLIC FUNCTIONS ///////////////////////////////////////// /** @dev ETH contribution function Can only be called during the crowdsale. Also allows a person to buy tokens for another address @return tokens issued in return */ function contributeETH(address _to) public validAddress(_to) between tokenIsSet payable returns (uint256 amount) { return processContribution(_to); } /** @dev handles contribution logic note that the Contribution event is triggered using the sender as the contributor, regardless of the actual contributor @return tokens issued in return */ function processContribution(address _to) private returns (uint256 amount) { uint256 tokenAmount = getTotalAmountOfTokens(msg.value); beneficiary.transfer(msg.value); token.transfer(_to, tokenAmount); token.addToAllocation(tokenAmount); CrowdsaleContribution(_to, msg.value, tokenAmount); return tokenAmount; } ///////////////////////////////////////// CONSTANT FUNCTIONS ///////////////////////////////////////// /** @dev Returns total tokens allocated so far Constant function that simply returns a number @return total tokens allocated so far */ function totalEnjSold() public constant returns(uint256 total) { return token.totalAllocated(); } /** @dev computes the number of tokens that should be issued for a given contribution @param _contribution contribution amount @return computed number of tokens */ function getTotalAmountOfTokens(uint256 _contribution) public constant returns (uint256 amountOfTokens) { uint256 currentTokenRate = 0; if (now < week2Start) { return currentTokenRate = safeMul(_contribution, 6000); } else if (now < week3Start) { return currentTokenRate = safeMul(_contribution, 5000); } else if (now < week4Start) { return currentTokenRate = safeMul(_contribution, 4000); } else { return currentTokenRate = safeMul(_contribution, 3000); } } /** @dev Fallback function Main entry to buy into the crowdfund, all you need to do is send a value transaction to this contract address. Please include at least 100 000 gas in the transaction. */ function() payable { contributeETH(msg.sender); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_tokenAddress","type":"address"}],"name":"setToken","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_batchOfAddresses","type":"address[]"},{"name":"_amountofENJ","type":"uint256[]"}],"name":"deliverPresaleTokens","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalPresaleTokensYetToAllocate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalEnjSold","outputs":[{"name":"total","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_contribution","type":"uint256"}],"name":"getTotalAmountOfTokens","outputs":[{"name":"amountOfTokens","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newBeneficiary","type":"address"}],"name":"changeBeneficiary","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"contributeETH","outputs":[{"name":"amount","type":"uint256"}],"payable":true,"type":"function"},{"inputs":[{"name":"_totalPresaleTokensYetToAllocate","type":"uint256"},{"name":"_beneficiary","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_contributor","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_return","type":"uint256"}],"name":"CrowdsaleContribution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_contributor","type":"address"},{"indexed":false,"name":"_amountOfTokens","type":"uint256"}],"name":"PresaleContribution","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_prevOwner","type":"address"},{"indexed":false,"name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"}]
Contract Creation Code
60606040526000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550341561009357600080fd5b604051604080611610833981016040528080519060200190919080519060200190919050505b5b5b5b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b8060008173ffffffffffffffffffffffffffffffffffffffff161415151561012657600080fd5b8260028190555081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5050505b61148d806101836000396000f300606060405236156100e4576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063144fa6d7146100f257806318b7fed81461012b5780632eee5a3e146101855780633197cbb6146101ae57806338af3eed146101d75780634bce2e9b1461022c5780635e35359e1461025557806378e97925146102b657806379ba5097146102df5780638da5cb5b146102f45780639d76ea5814610349578063a5ddfef11461039e578063d4ee1d90146103d5578063dc0706571461042a578063f2fde38b14610463578063ff36cf591461049c575b5b6100ee336104de565b505b005b34156100fd57600080fd5b610129600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610583565b005b341561013657600080fd5b61016b6004808035906020019082018035906020019190919290803590602001908201803590602001919091929050506106d2565b604051808215151515815260200191505060405180910390f35b341561019057600080fd5b6101986107fd565b6040518082815260200191505060405180910390f35b34156101b957600080fd5b6101c1610803565b6040518082815260200191505060405180910390f35b34156101e257600080fd5b6101ea61080b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561023757600080fd5b61023f610831565b6040518082815260200191505060405180910390f35b341561026057600080fd5b6102b4600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506108e2565b005b34156102c157600080fd5b6102c9610a9f565b6040518082815260200191505060405180910390f35b34156102ea57600080fd5b6102f2610aa7565b005b34156102ff57600080fd5b610307610c84565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561035457600080fd5b61035c610ca9565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156103a957600080fd5b6103bf6004808035906020019091905050610ccf565b6040518082815260200191505060405180910390f35b34156103e057600080fd5b6103e8610d73565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561043557600080fd5b610461600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610d99565b005b341561046e57600080fd5b61049a600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610e60565b005b6104c8600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506104de565b6040518082815260200191505060405180910390f35b60008160008173ffffffffffffffffffffffffffffffffffffffff161415151561050757600080fd5b6359d37bc0421015801561051e57506359f90e4442105b151561052657fe5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415151561056e57600080fd5b61057783610f5a565b91505b5b5b5b50919050565b8060008173ffffffffffffffffffffffffffffffffffffffff16141515156105aa57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561060257fe5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614151561064957600080fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5050565b6000806000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415151561071d57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561077557fe5b6359d37bc04210151561078757600080fd5b600090505b858590508110156107ed576107df86868381811015156107a857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1685858481811015156107d357fe5b905060200201356111b7565b5b808060010191505061078c565b600191505b5b5b50949350505050565b60025481565b6359f90e4481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166345f7f2496000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b15156108c157600080fd5b6102c65a03f115156108d257600080fd5b5050506040518051905090505b90565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561093a57fe5b8260008173ffffffffffffffffffffffffffffffffffffffff161415151561096157600080fd5b8260008173ffffffffffffffffffffffffffffffffffffffff161415151561098857600080fd5b833073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156109c457600080fd5b8573ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1515610a6f57600080fd5b6102c65a03f11515610a8057600080fd5b505050604051805190501515610a9257fe5b5b5b505b505b505b505050565b6359d37bc081565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610b0357600080fd5b7f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a1600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000905062093a806359d37bc001421015610cfd57610cf383611770611413565b9050809150610d6d565b62093a80806359d37bc00101421015610d2657610d1c83611388611413565b9050809150610d6d565b62093a808062093a806359d37bc0010101421015610d5457610d4a83610fa0611413565b9050809150610d6d565b610d6083610bb8611413565b9050809150610d6d565b5b5b5b50919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b8060008173ffffffffffffffffffffffffffffffffffffffff1614151515610dc057600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610e1857fe5b81600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610eb857fe5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610f1457600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b50565b600080610f6634610ccf565b9050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501515610fca57600080fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561109757600080fd5b6102c65a03f115156110a857600080fd5b5050506040518051905050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166398c20c00826040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b151561114357600080fd5b6102c65a03f1151561115457600080fd5b5050508273ffffffffffffffffffffffffffffffffffffffff167f59c2edee20e1156b2d5d0d006ac843ed49ca044ce77be4aa26cba19c64f220be3483604051808381526020018281526020019250505060405180910390a28091505b50919050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561120f57fe5b600060025411151561122057600080fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15156112ed57600080fd5b6102c65a03f115156112fe57600080fd5b5050506040518051905050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166398c20c00826040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b151561139957600080fd5b6102c65a03f115156113aa57600080fd5b5050506113b960025482611447565b6002819055508173ffffffffffffffffffffffffffffffffffffffff167f3d0ab7e8209f975ae8d4c319005ac3a64cf3b4ee6503d416abb001d442eb1abc826040518082815260200191505060405180910390a25b5b5050565b60008082840290506000841480611434575082848281151561143157fe5b04145b151561143c57fe5b8091505b5092915050565b600081831015151561145557fe5b81830390505b929150505600a165627a7a72305820dac121a763cd3d08bcfa104949d73bf29304d9f76c1d322cc274e12c3327fbc60029000000000000000000000000000000000000000001b75d045c65aba439056894000000000000000000000000c4740f71323129669424d1ae06c42aee99da30e2
Deployed Bytecode
0x606060405236156100e4576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063144fa6d7146100f257806318b7fed81461012b5780632eee5a3e146101855780633197cbb6146101ae57806338af3eed146101d75780634bce2e9b1461022c5780635e35359e1461025557806378e97925146102b657806379ba5097146102df5780638da5cb5b146102f45780639d76ea5814610349578063a5ddfef11461039e578063d4ee1d90146103d5578063dc0706571461042a578063f2fde38b14610463578063ff36cf591461049c575b5b6100ee336104de565b505b005b34156100fd57600080fd5b610129600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610583565b005b341561013657600080fd5b61016b6004808035906020019082018035906020019190919290803590602001908201803590602001919091929050506106d2565b604051808215151515815260200191505060405180910390f35b341561019057600080fd5b6101986107fd565b6040518082815260200191505060405180910390f35b34156101b957600080fd5b6101c1610803565b6040518082815260200191505060405180910390f35b34156101e257600080fd5b6101ea61080b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561023757600080fd5b61023f610831565b6040518082815260200191505060405180910390f35b341561026057600080fd5b6102b4600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506108e2565b005b34156102c157600080fd5b6102c9610a9f565b6040518082815260200191505060405180910390f35b34156102ea57600080fd5b6102f2610aa7565b005b34156102ff57600080fd5b610307610c84565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561035457600080fd5b61035c610ca9565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156103a957600080fd5b6103bf6004808035906020019091905050610ccf565b6040518082815260200191505060405180910390f35b34156103e057600080fd5b6103e8610d73565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561043557600080fd5b610461600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610d99565b005b341561046e57600080fd5b61049a600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610e60565b005b6104c8600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506104de565b6040518082815260200191505060405180910390f35b60008160008173ffffffffffffffffffffffffffffffffffffffff161415151561050757600080fd5b6359d37bc0421015801561051e57506359f90e4442105b151561052657fe5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415151561056e57600080fd5b61057783610f5a565b91505b5b5b5b50919050565b8060008173ffffffffffffffffffffffffffffffffffffffff16141515156105aa57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561060257fe5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614151561064957600080fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5050565b6000806000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415151561071d57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561077557fe5b6359d37bc04210151561078757600080fd5b600090505b858590508110156107ed576107df86868381811015156107a857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1685858481811015156107d357fe5b905060200201356111b7565b5b808060010191505061078c565b600191505b5b5b50949350505050565b60025481565b6359f90e4481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166345f7f2496000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b15156108c157600080fd5b6102c65a03f115156108d257600080fd5b5050506040518051905090505b90565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561093a57fe5b8260008173ffffffffffffffffffffffffffffffffffffffff161415151561096157600080fd5b8260008173ffffffffffffffffffffffffffffffffffffffff161415151561098857600080fd5b833073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156109c457600080fd5b8573ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1515610a6f57600080fd5b6102c65a03f11515610a8057600080fd5b505050604051805190501515610a9257fe5b5b5b505b505b505b505050565b6359d37bc081565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610b0357600080fd5b7f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a1600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000905062093a806359d37bc001421015610cfd57610cf383611770611413565b9050809150610d6d565b62093a80806359d37bc00101421015610d2657610d1c83611388611413565b9050809150610d6d565b62093a808062093a806359d37bc0010101421015610d5457610d4a83610fa0611413565b9050809150610d6d565b610d6083610bb8611413565b9050809150610d6d565b5b5b5b50919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b8060008173ffffffffffffffffffffffffffffffffffffffff1614151515610dc057600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610e1857fe5b81600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610eb857fe5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610f1457600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b50565b600080610f6634610ccf565b9050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501515610fca57600080fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561109757600080fd5b6102c65a03f115156110a857600080fd5b5050506040518051905050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166398c20c00826040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b151561114357600080fd5b6102c65a03f1151561115457600080fd5b5050508273ffffffffffffffffffffffffffffffffffffffff167f59c2edee20e1156b2d5d0d006ac843ed49ca044ce77be4aa26cba19c64f220be3483604051808381526020018281526020019250505060405180910390a28091505b50919050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561120f57fe5b600060025411151561122057600080fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15156112ed57600080fd5b6102c65a03f115156112fe57600080fd5b5050506040518051905050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166398c20c00826040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b151561139957600080fd5b6102c65a03f115156113aa57600080fd5b5050506113b960025482611447565b6002819055508173ffffffffffffffffffffffffffffffffffffffff167f3d0ab7e8209f975ae8d4c319005ac3a64cf3b4ee6503d416abb001d442eb1abc826040518082815260200191505060405180910390a25b5b5050565b60008082840290506000841480611434575082848281151561143157fe5b04145b151561143c57fe5b8091505b5092915050565b600081831015151561145557fe5b81830390505b929150505600a165627a7a72305820dac121a763cd3d08bcfa104949d73bf29304d9f76c1d322cc274e12c3327fbc60029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000001b75d045c65aba439056894000000000000000000000000c4740f71323129669424d1ae06c42aee99da30e2
-----Decoded View---------------
Arg [0] : _totalPresaleTokensYetToAllocate (uint256): 531157695338621725495879828
Arg [1] : _beneficiary (address): 0xc4740f71323129669424d1Ae06c42AEE99da30e2
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000001b75d045c65aba439056894
Arg [1] : 000000000000000000000000c4740f71323129669424d1ae06c42aee99da30e2
Swarm Source
bzzr://dac121a763cd3d08bcfa104949d73bf29304d9f76c1d322cc274e12c3327fbc6
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.