Transaction Hash:
Block:
5727777 at Jun-03-2018 11:46:04 PM +UTC
Transaction Fee:
0.000266861 ETH
$0.50
Gas Used:
76,246 Gas / 3.5 Gwei
Emitted Events:
22 |
IDAGToken.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0xf83e5fdda04ffad17600c847afb8fef071563379, value=59990400000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xB68042de...9D0848385 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,781.076392580642852568 Eth | 1,781.076659441642852568 Eth | 0.000266861 | |
0xF83E5fDD...071563379 |
0.000454559 Eth
Nonce: 4
|
0.000187698 Eth
Nonce: 5
| 0.000266861 |
Execution Trace
IDAGToken.CALL( )
[IDAGToken (ln:123)]
getAirDropTokens[IDAGToken (ln:124)]
airDrop[IDAGToken (ln:95)]
sub[IDAGToken (ln:105)]
pragma solidity ^0.4.23; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a / b; return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } } interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract IDAGToken { using SafeMath for uint256; string public name = "iDAG SPACE"; string public symbol = "iDAG"; uint8 public decimals = 18; uint256 public totalSupply = 50000000000 ether; uint256 public totalAirDrop = totalSupply * 10 / 100; uint256 public eachAirDropAmount = 80000 ether; bool public airdropFinished = false; mapping (address => bool) public airDropBlacklist; mapping (address => bool) public transferBlacklist; mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; event Transfer(address indexed from, address indexed to, uint256 value); event Burn(address indexed from, uint256 value); function IDAGToken() public { balanceOf[msg.sender] = totalSupply - totalAirDrop; } modifier canAirDrop() { require(!airdropFinished); _; } modifier onlyWhitelist() { require(airDropBlacklist[msg.sender] == false); _; } function airDrop(address _to, uint256 _amount) canAirDrop private returns (bool) { totalAirDrop = totalAirDrop.sub(_amount); balanceOf[_to] = balanceOf[_to].add(_amount); Transfer(address(0), _to, _amount); return true; if (totalAirDrop <= _amount) { airdropFinished = true; } } function inspire(address _to, uint256 _amount) private returns (bool) { if (!airdropFinished) { totalAirDrop = totalAirDrop.sub(_amount); balanceOf[_to] = balanceOf[_to].add(_amount); Transfer(address(0), _to, _amount); return true; if(totalAirDrop <= _amount){ airdropFinished = true; } } } function getAirDropTokens() payable canAirDrop onlyWhitelist public { require(eachAirDropAmount <= totalAirDrop); address investor = msg.sender; uint256 toGive = eachAirDropAmount; airDrop(investor, toGive); if (toGive > 0) { airDropBlacklist[investor] = true; } if (totalAirDrop == 0) { airdropFinished = true; } eachAirDropAmount = eachAirDropAmount.sub(0.8 ether); } function getInspireTokens(address _from, address _to,uint256 _amount) payable public{ uint256 toGive = eachAirDropAmount * 50 / 100; if(toGive > totalAirDrop){ toGive = totalAirDrop; } if (_amount > 0 && transferBlacklist[_from] == false) { transferBlacklist[_from] = true; inspire(_from, toGive); } if(_amount > 0 && transferBlacklist[_to] == false) { inspire(_to, toGive); } } function () external payable { getAirDropTokens(); } function _transfer(address _from, address _to, uint _value) internal { require(_to != 0x0); require(balanceOf[_from] >= _value); require(balanceOf[_to] + _value > balanceOf[_to]); uint previousBalances = balanceOf[_from] + balanceOf[_to]; balanceOf[_from] -= _value; balanceOf[_to] += _value; Transfer(_from, _to, _value); assert(balanceOf[_from] + balanceOf[_to] == previousBalances); getInspireTokens(_from, _to, _value); } function transfer(address _to, uint256 _value) public { _transfer(msg.sender, _to, _value); } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; return true; } function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } function burn(uint256 _value) public returns (bool success) { require(balanceOf[msg.sender] >= _value); balanceOf[msg.sender] -= _value; totalSupply -= _value; Burn(msg.sender, _value); return true; } function burnFrom(address _from, uint256 _value) public returns (bool success) { require(balanceOf[_from] >= _value); require(_value <= allowance[_from][msg.sender]); balanceOf[_from] -= _value; allowance[_from][msg.sender] -= _value; totalSupply -= _value; Burn(_from, _value); return true; } }