ETH Price: $1,905.37 (-0.92%)

Transaction Decoder

Block:
11285523 at Nov-19-2020 01:55:01 AM +UTC
Transaction Fee:
0.001447914 ETH $2.76
Gas Used:
37,126 Gas / 39 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x2F8fF07E...9b8024531
0x32B72ABD...bF710B424
146.127365913 Eth
Nonce: 11004
146.125917999 Eth
Nonce: 11005
0.001447914
(Spark Pool)
63.060810530278966209 Eth63.062258444278966209 Eth0.001447914

Execution Trace

YFIP.transfer( _to=0xc8E17c6d0fC0185e77F78D8F54839E44FDCb9323, _value=918204350000000000 ) => ( success=True )
pragma solidity ^0.4.21;
/*
The full name of YFIP is YFIPOOL, which is a token produced by YFIM liquid mining. The total amount of YFIP is 6,000,000 and 60,000 pieces are produced every day,
and it is mined in 100 days.YFIP is the YFIM liquid mining token. Add liquidity to the ETH/YFIM trading pair in Uniswap, you can participate in mining and get YFIP token rewards, 
which are distributed according to the proportion of injection into the liquidity pool.
*/

contract  IYFIP {
   
    uint256 public totalSupply;

 
    function balanceOf(address _owner) public view returns (uint256 balance);


    function transfer(address _to, uint256 _value) public returns (bool success);


    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);


    function approve(address _spender, uint256 _value) public returns (bool success);


    function allowance(address _owner, address _spender) public view returns (uint256 remaining);


    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

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) {
    require(b > 0); 
    uint256 c = a / b;


    return c;
  }



  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }


  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a);

    return c;
  }


  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}


contract YFIP is IYFIP {
    using SafeMath for uint256;

    mapping (address => uint256) public balances;
    mapping (address => mapping (address => uint256)) public allowed;

    string public name;                   
    uint8 public decimals;                
    string public symbol;                 

    function YFIP(
        uint256 _initialAmount,
        string _tokenName,
        uint8 _decimalUnits,
        string _tokenSymbol
    ) public {
        balances[msg.sender] = _initialAmount;               
        totalSupply = _initialAmount;                       
        name = _tokenName;                                  
        decimals = _decimalUnits;                            
        symbol = _tokenSymbol;                             
    }

    function transfer(address _to, uint256 _value) public returns (bool success) {
        require(_to != address(0));
        require(balances[msg.sender] >= _value);
      
        balances[msg.sender] = balances[msg.sender].sub(_value);
  
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value); 
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        uint256 allowance = allowed[_from][msg.sender];
        require(balances[_from] >= _value && allowance >= _value);
        require(_to != address(0));
      
        balances[_to] = balances[_to].add(_value);
 
        balances[_from] = balances[_from].sub(_value);

        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
 
        emit Transfer(_from, _to, _value); 
        return true;
    }

    function balanceOf(address _owner) public view returns (uint256 balance) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) public returns (bool success) {
        require(_spender != address(0));
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value); 
        return true;
    }

    function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
        require(_spender != address(0));
        return allowed[_owner][_spender];
    }
}