ETH Price: $2,636.45 (+0.03%)

Transaction Decoder

Block:
7019612 at Jan-06-2019 10:28:23 AM +UTC
Transaction Fee:
0.000268551 ETH $0.71
Gas Used:
59,678 Gas / 4.5 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Nanopool)
8,811.923879950851373549 Eth8,811.924148501851373549 Eth0.000268551
0xc86aaBab...2c176732A
1.856399167984556503 Eth
Nonce: 1518
1.856130616984556503 Eth
Nonce: 1519
0.000268551
0xdd974D5C...6686BD200
0xed4f5326...02Cf34B04

Execution Trace

FeeBurner.sendFeeToWallet( wallet=0xF1AA99C69715F423086008eB9D06Dc1E35Cc504d, reserve=0x742e8BB8e6bDE9CB2DF5449f8de7510798727fB1 )
  • KyberNetworkCrystal.transferFrom( _from=0xE0E1f00A2537Eccdbb993929A4265658353Affc6, _to=0xF1AA99C69715F423086008eB9D06Dc1E35Cc504d, _value=166397687521737016 ) => ( True )
    sendFeeToWallet[FeeBurner (ln:367)]
    File 1 of 2: FeeBurner
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity 0.4.18;
    // File: contracts/FeeBurnerInterface.sol
    interface FeeBurnerInterface {
    function handleFees (uint tradeWeiAmount, address reserve, address wallet) public returns(bool);
    }
    // File: contracts/ERC20Interface.sol
    // https://github.com/ethereum/EIPs/issues/20
    interface ERC20 {
    function totalSupply() public view returns (uint supply);
    function balanceOf(address _owner) public view returns (uint balance);
    function transfer(address _to, uint _value) public returns (bool success);
    function transferFrom(address _from, address _to, uint _value) public returns (bool success);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: KyberNetworkCrystal
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.4.13;
    library SafeMath {
    function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
    }
    function div(uint256 a, uint256 b) internal constant 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;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX