ETH Price: $2,644.81 (-1.64%)

Transaction Decoder

Block:
7019625 at Jan-06-2019 10:31:50 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
(firepool)
236.780359988708422812 Eth236.780628539708422812 Eth0.000268551
0xc86aaBab...2c176732A
1.855530703984556503 Eth
Nonce: 1521
1.855262152984556503 Eth
Nonce: 1522
0.000268551
0xdd974D5C...6686BD200
0xed4f5326...02Cf34B04

Execution Trace

FeeBurner.sendFeeToWallet( wallet=0x440bBd6a888a36DE6e2F6A25f65bc4e16874faa9, reserve=0x56e37b6b79d4E895618B8Bb287748702848Ae8c0 )
  • KyberNetworkCrystal.transferFrom( _from=0xb28b47E0545fA9ee79a01a705c43372aD1c1BD5d, _to=0x440bBd6a888a36DE6e2F6A25f65bc4e16874faa9, _value=8148986212378648463 ) => ( 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