Transaction Hash:
Block:
5734890 at Jun-05-2018 05:46:50 AM +UTC
Transaction Fee:
0.000761268 ETH
$1.52
Gas Used:
63,439 Gas / 12 Gwei
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x829BD824...93333A830
Miner
| (F2Pool Old) | 2,444.387614629235814727 Eth | 2,444.388375897235814727 Eth | 0.000761268 | |
| 0xC6F1e5dd...fA02947A4 |
0.00148443791875 Eth
Nonce: 26
|
0.00072316991875 Eth
Nonce: 27
| 0.000761268 |
Execution Trace
IDAGToken.transfer( _to=0xA1eE7650D9214b4913fb775e9093491e56369F82, _value=53779200000000000000000 )
transfer[IDAGToken (ln:139)]
_transfer[IDAGToken (ln:140)]Transfer[IDAGToken (ln:134)]getInspireTokens[IDAGToken (ln:136)]inspire[IDAGToken (ln:116)]inspire[IDAGToken (ln:119)]
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;
}
}