Transaction Hash:
Block:
7708001 at May-06-2019 03:13:40 PM +UTC
Transaction Fee:
0.000255339 ETH
$0.62
Gas Used:
52,110 Gas / 4.9 Gwei
Emitted Events:
78 |
EightBitToken.Transfer( from=[Sender] 0x5ecf8bebb589dc4acc1449a29d5276f19db19f63, to=0xF3BfA4C9543957EEa2d918C1d7F8c1462300A22E, value=5000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x20F4eb38...1ABb7Bf94 | |||||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 3,016.020995008143509791 Eth | 3,016.021250347143509791 Eth | 0.000255339 | |
0x5ecf8Beb...19DB19f63 |
0.60444472254742675 Eth
Nonce: 467
|
0.60418938354742675 Eth
Nonce: 468
| 0.000255339 |
Execution Trace
EightBitToken.transfer( _to=0xF3BfA4C9543957EEa2d918C1d7F8c1462300A22E, _value=5000000000000000000 )
transfer[EightBitToken (ln:342)]
transfer[EightBitToken (ln:343)]
pragma solidity ^0.4.11; /** * @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; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { if (msg.sender != owner) { throw; } _; } /** * @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) onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } // File: zeppelin-solidity/contracts/lifecycle/Pausable.sol pragma solidity ^0.4.11; /** * @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 allow actions only when the contract IS paused */ modifier whenNotPaused() { if (paused) throw; _; } /** * @dev modifier to allow actions only when the contract IS NOT paused */ modifier whenPaused { if (!paused) throw; _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused returns (bool) { paused = true; Pause(); return true; } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused returns (bool) { paused = false; Unpause(); return true; } } // File: zeppelin-solidity/contracts/math/SafeMath.sol pragma solidity ^0.4.11; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal 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 returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } // File: zeppelin-solidity/contracts/token/ERC20Basic.sol pragma solidity ^0.4.11; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) constant returns (uint256); function transfer(address to, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); } // File: zeppelin-solidity/contracts/token/BasicToken.sol pragma solidity ^0.4.11; /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) { balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); } /** * @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) constant returns (uint256 balance) { return balances[_owner]; } } // File: zeppelin-solidity/contracts/token/ERC20.sol pragma solidity ^0.4.11; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) constant returns (uint256); function transferFrom(address from, address to, uint256 value); function approve(address spender, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: zeppelin-solidity/contracts/token/StandardToken.sol pragma solidity ^0.4.11; /** * @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)) 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 amout of tokens to be transfered */ function transferFrom(address _from, address _to, uint256 _value) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // if (_value > _allowance) throw; balances[_to] = balances[_to].add(_value); balances[_from] = balances[_from].sub(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); } /** * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) throw; allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); } /** * @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 specifing the amount of tokens still avaible for the spender. */ function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } } // File: contracts/EightBitToken.sol pragma solidity ^0.4.8; contract EightBitToken is StandardToken, Pausable { using SafeMath for uint256; string public constant name = '8 Circuit Studios Token'; string public constant symbol = '8BT'; uint256 public constant decimals = 18; uint256 public cap; uint256 public rate; uint256 public startBlock; uint256 public endBlock; uint256 public sold; event Sale(address indexed from, address indexed to, uint256 value, uint256 price); function EightBitToken() { totalSupply = 100 * (10**6) * 10**decimals; balances[owner] = totalSupply; } function () payable { buy(msg.sender); } function startSale(uint256 _cap, uint256 _rate, uint256 _startBlock, uint256 _endBlock) onlyOwner { require(cap == 0); require(_cap > 0); require(balances[owner] >= _cap); require(_rate > 0); require(block.number <= _startBlock); require(_endBlock >= _startBlock); cap = _cap; rate = _rate; startBlock = _startBlock; endBlock = _endBlock; } function buy(address _to) whenNotPaused payable { require(block.number >= startBlock && block.number <= endBlock); require(msg.value > 0); require(_to != 0x0); uint256 tokens = msg.value.mul(rate); sold = sold.add(tokens); assert(sold <= cap); balances[owner] = balances[owner].sub(tokens); balances[_to] = balances[_to].add(tokens); assert(owner.send(msg.value)); Sale(owner, _to, tokens, msg.value); } function endSale() onlyOwner { cap = 0; rate = 0; startBlock = 0; endBlock = 0; sold = 0; } // ERC20 overrides function transfer(address _to, uint256 _value) whenNotPaused { super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) whenNotPaused { super.transferFrom(_from, _to, _value); } }