Transaction Hash:
Block:
11074223 at Oct-17-2020 03:18:29 PM +UTC
Transaction Fee:
0.001066094448577099 ETH
$2.40
Gas Used:
31,729 Gas / 33.600001531 Gwei
Emitted Events:
235 |
TokoinToken.OwnershipTransferred( previousOwner=[Sender] 0xbe799713f5329d30a0bc6c9070f4dcccaabd37ab, newOwner=0xE1DDC138...02aD7A4B1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0c963A1B...95c3087eD | |||||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 3,644.381295975601336346 Eth | 3,644.382362070049913445 Eth | 0.001066094448577099 | |
0xbE799713...cAaBD37AB |
0.0357435 Eth
Nonce: 4
|
0.034677405551422901 Eth
Nonce: 5
| 0.001066094448577099 |
Execution Trace
TokoinToken.transferOwnership( newOwner=0xE1DDC138aD5400Fc55380bDfC8509c302aD7A4B1 )
transferOwnership[Ownable (ln:77)]
OwnershipTransferred[Ownable (ln:79)]
pragma solidity ^0.5.0; 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 /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ // 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; } } /** * @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 payable 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. **/ constructor() 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 payable newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } /* @title ControlledAccess * @dev The ControlledAccess contract allows function to be restricted to users * that possess a signed authorization from the owner of the contract. This signed * message includes the user to give permission to and the contract address to prevent * reusing the same authorization message on different contract with same owner. */ /** * @title ERC20Basic interface * @dev Basic ERC20 interface **/ 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); } /** * @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); } /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting is Ownable { using SafeMath for uint256; event Vested(address beneficiary, uint256 amount); event Released(address beneficiary, uint256 amount); struct Balance { uint256 value; uint256 start; uint256 currentPeriod; } mapping(address => Balance) private balances; mapping (address => uint256) private released; uint256 private period; uint256 private duration; mapping (uint256 => uint256) private percentagePerPeriod; constructor() public { owner = msg.sender; period = 4; duration = 7884000; percentagePerPeriod[0] = 15; percentagePerPeriod[1] = 20; percentagePerPeriod[2] = 30; percentagePerPeriod[3] = 35; } function balanceOf(address _owner) public view returns(uint256) { return balances[_owner].value.sub(released[_owner]); } /** * @notice Vesting token to beneficiary but not released yet. * ERC20 token which is being vested */ function vesting(address _beneficiary, uint256 _amount) public onlyOwner { if(balances[_beneficiary].start == 0){ balances[_beneficiary].start = now; } balances[_beneficiary].value = balances[_beneficiary].value.add(_amount); emit Vested(_beneficiary, _amount); } /** * @notice Transfers vested tokens to beneficiary. * ERC20 token which is being vested */ function release(address _beneficiary) public onlyOwner { require(balances[_beneficiary].currentPeriod.add(1) <= period); require(balances[_beneficiary].value > released[_beneficiary]); require(balances[_beneficiary].start != 0); require(now >= balances[_beneficiary].start.add((balances[_beneficiary].currentPeriod.add(1) * duration))); uint256 amountReleasedThisPeriod = balances[_beneficiary].value.mul(percentagePerPeriod[balances[_beneficiary].currentPeriod]); amountReleasedThisPeriod = amountReleasedThisPeriod.div(100); released[_beneficiary] = released[_beneficiary].add(amountReleasedThisPeriod); balances[_beneficiary].currentPeriod = balances[_beneficiary].currentPeriod.add(1); BasicToken(owner).transfer(_beneficiary, amountReleasedThisPeriod); emit Released(_beneficiary, amountReleasedThisPeriod); } } /** * @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]; } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) 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; } } /** * @title Configurable * @dev Configurable varriables of the contract **/ contract Configurable { uint256 public constant cap = 2000000000*10**18; uint256 public basePrice = 314815*10**16; // tokens per 1 ether uint256 public tokensSold = 0; uint256 public tokensSoldInICO = 0; uint256 public tokensSoldInPrivateSales = 0; uint256 public constant tokenReserve = 2000000000*10**18; uint256 public constant tokenReserveForICO = 70000000*10**18; uint256 public constant tokenReserveForPrivateSales = 630000000*10**18; uint256 public remainingTokens = 0; uint256 public remainingTokensForICO = 0; uint256 public remainingTokensForPrivateSales = 0; uint256 public minTransaction = 1.76 ether; uint256 public maxTransaction = 29.41 ether; uint256 public discountUntilSales = 1176.47 ether; uint256 public totalSalesInEther = 0; mapping(address => bool) public buyerGetDiscount; } contract BurnableToken is BasicToken, Ownable { event Burn(address indexed burner, uint256 value); function burn(uint256 _value) public onlyOwner { _burn(msg.sender, _value); } function _burn(address _who, uint256 _value) internal { require(_value <= balances[_who]); balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(_who, _value); emit Transfer(_who, address(0), _value); } } /** * @title CrowdsaleToken * @dev Contract to preform crowd sale with token **/ contract CrowdsaleToken is StandardToken, Configurable, BurnableToken { /** * @dev enum of current crowd sale state **/ enum Stages { none, icoStart, icoEnd } bool public haltedICO = false; Stages currentStage; TokenVesting public tokenVestingContract; /** * @dev constructor of CrowdsaleToken **/ constructor() public { currentStage = Stages.none; balances[owner] = balances[owner].add(tokenReserve); totalSupply_ = totalSupply_.add(tokenReserve); remainingTokens = cap; remainingTokensForICO = tokenReserveForICO; remainingTokensForPrivateSales = tokenReserveForPrivateSales; tokenVestingContract = new TokenVesting(); emit Transfer(address(this), owner, tokenReserve); } /** * @dev fallback function to send ether to for Crowd sale **/ function () external payable { require(!haltedICO); require(currentStage == Stages.icoStart); require(msg.value > 0); require(remainingTokensForICO > 0); require(minTransaction <= msg.value); require(maxTransaction >= msg.value); uint256 weiAmount = msg.value; // Calculate tokens to sell uint256 bonusTokens; uint256 tokens = weiAmount.mul(basePrice).div(1 ether); uint256 returnWei = 0; //Check is discount is valid or not if (totalSalesInEther.add(weiAmount) <= discountUntilSales && !buyerGetDiscount[msg.sender]) { bonusTokens = tokens.div(10); totalSalesInEther = totalSalesInEther.add(weiAmount); buyerGetDiscount[msg.sender] = true; } if (tokensSoldInICO.add(tokens.add(bonusTokens)) > tokenReserveForICO) { uint256 newTokens = tokenReserveForICO.sub(tokensSoldInICO); bonusTokens = newTokens.sub(tokens); if (bonusTokens <= 0) { bonusTokens = 0; } tokens = newTokens.sub(bonusTokens); returnWei = tokens.div(basePrice).div(1 ether); } //Calculate token sold in ICO and remaining token tokensSoldInICO = tokensSoldInICO.add(tokens.add(bonusTokens)); remainingTokensForICO = tokenReserveForICO.sub(tokensSoldInICO); tokensSold = tokensSold.add(tokens.add(bonusTokens)); // Increment raised amount remainingTokens = cap.sub(tokensSold); if(returnWei > 0){ msg.sender.transfer(returnWei); emit Transfer(address(this), msg.sender, returnWei); } balances[msg.sender] = balances[msg.sender].add(tokens); balances[owner] = balances[owner].sub(tokens); emit Transfer(address(this), msg.sender, tokens); owner.transfer(weiAmount);// Send money to owner } function sendPrivate(address _to, uint256 _tokens) external payable onlyOwner { require(_to != address(0)); require(address(tokenVestingContract) != address(0)); require(remainingTokensForPrivateSales > 0); require(tokenReserveForPrivateSales >= tokensSoldInPrivateSales.add(_tokens)); //Calculate token sold in private sales and remaining token tokensSoldInPrivateSales = tokensSoldInPrivateSales.add(_tokens); remainingTokensForPrivateSales = tokenReserveForPrivateSales.sub(tokensSoldInPrivateSales); tokensSold = tokensSold.add(_tokens); // Increment raised amount remainingTokens = cap.sub(tokensSold); balances[address(tokenVestingContract)] = balances[address(tokenVestingContract)].add(_tokens); tokenVestingContract.vesting(_to, _tokens); balances[owner] = balances[owner].sub(_tokens); emit Transfer(address(this), address(tokenVestingContract), _tokens); } function release(address _to) external onlyOwner { tokenVestingContract.release(_to); } /** * @dev startIco starts the public ICO **/ function startIco() public onlyOwner { require(currentStage != Stages.icoEnd); currentStage = Stages.icoStart; } event icoHalted(address sender); function haltICO() public onlyOwner { haltedICO = true; emit icoHalted(msg.sender); } event icoResumed(address sender); function resumeICO() public onlyOwner { haltedICO = false; emit icoResumed(msg.sender); } /** * @dev endIco closes down the ICO **/ function endIco() internal { currentStage = Stages.icoEnd; // Transfer any remaining tokens if(remainingTokens > 0) balances[owner] = balances[owner].add(remainingTokens); // transfer any remaining ETH balance in the contract to the owner owner.transfer(address(this).balance); } /** * @dev finalizeIco closes down the ICO and sets needed varriables **/ function finalizeIco() public onlyOwner { require(currentStage != Stages.icoEnd); endIco(); } function setDiscountUntilSales(uint256 _discountUntilSales) public onlyOwner { discountUntilSales = _discountUntilSales; } function setBasePrice(uint256 _basePrice) public onlyOwner { basePrice = _basePrice; } function setMinTransaction(uint256 _minTransaction) public onlyOwner { minTransaction = _minTransaction; } function setMaxTransaction(uint256 _maxTransaction) public onlyOwner { maxTransaction = _maxTransaction; } function addTokenSoldInICO(uint256 _amount) public onlyOwner { tokensSoldInICO = tokensSoldInICO.add(_amount); remainingTokensForICO = tokenReserveForICO.sub(tokensSoldInICO); tokensSold = tokensSold.add(_amount); remainingTokens = cap.sub(_amount); } function addTokenSoldInPrivateSales(uint256 _amount) public onlyOwner { tokensSoldInPrivateSales = tokensSoldInPrivateSales.add(_amount); remainingTokensForPrivateSales = tokenReserveForPrivateSales.sub(tokensSoldInPrivateSales); tokensSold = tokensSold.add(_amount); remainingTokens = cap.sub(_amount); } } /** * @title TokoinToken * @dev Contract to create the Tokoin Token **/ contract TokoinToken is CrowdsaleToken { string public constant name = "Tokoin"; string public constant symbol = "TOKO"; uint32 public constant decimals = 18; }