Transaction Hash:
Block:
5543291 at May-02-2018 11:47:07 AM +UTC
Transaction Fee:
0.00011092 ETH
$0.21
Gas Used:
27,730 Gas / 4 Gwei
Emitted Events:
144 |
OCoin.Transfer( from=[Sender] 0xf0900f0f19481faae94c18b0ef903da024a22621, to=0xA12431D0B9dB640034b0CDFcEEF9CCe161e62be4, value=88510224000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4092678e...39780892B | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 476.771519236091545235 Eth | 476.771630156091545235 Eth | 0.00011092 | |
0xF0900F0F...024A22621 |
0.00017092 Eth
Nonce: 38
|
0.00006 Eth
Nonce: 39
| 0.00011092 |
Execution Trace
OCoin.transfer( _to=0xA12431D0B9dB640034b0CDFcEEF9CCe161e62be4, _value=88510224000000000000000 ) => ( True )
transfer[OCoin (ln:168)]
sub[OCoin (ln:172)]
add[OCoin (ln:173)]
Transfer[OCoin (ln:174)]
pragma solidity ^0.4.18; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract ERC20 { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); 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); } contract DetailedERC20 is ERC20 { string public name; string public symbol; uint8 public decimals; function DetailedERC20(string _name, string _symbol, uint8 _decimals) public { name = _name; symbol = _symbol; decimals = _decimals; } } contract OCoin is Pausable, DetailedERC20 { using SafeMath for uint256; mapping(address => uint256) balances; mapping (address => mapping (address => uint256)) internal allowed; mapping(address => uint256) public lockedBalances; uint public unlocktime; address crowdsaleContract = 0; function OCoin() DetailedERC20("OCoin", "OCN", 18) public { unlocktime = 1524326400; // 2018/4/22 00:00:00 totalSupply = 10000000000 * 10 ** uint256(decimals); balances[msg.sender] = totalSupply; } function setCrowdsaleContract(address crowdsale) onlyOwner public { crowdsaleContract = crowdsale; } modifier timeLock(address from, uint value) { if (now < unlocktime) { require(value <= balances[from] - lockedBalances[from]); } else { lockedBalances[from] = 0; } _; } function transfer(address _to, uint256 _value) timeLock(msg.sender, _value) whenNotPaused 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); Transfer(msg.sender, _to, _value); return true; } function transferToLockedBalance(address _to, uint256 _value) whenNotPaused public returns (bool) { require(msg.sender == crowdsaleContract); if (transfer(_to, _value)) { lockedBalances[_to] = lockedBalances[_to].add(_value); return true; } } function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } function transferFrom(address _from, address _to, uint256 _value) public timeLock(_from, _value) whenNotPaused returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } }