ETH Price: $2,516.18 (+0.53%)

Transaction Decoder

Block:
6613064 at Oct-30-2018 07:00:51 PM +UTC
Transaction Fee:
0.0001541085 ETH $0.39
Gas Used:
73,385 Gas / 2.1 Gwei

Emitted Events:

39 0x9f9bfb18186a26acba411fae0c0eaf32f5fc374f.0xeaf15f7f9b71379888ffeab47e87bd7ce26f439a34d58f3e80ec127adb748f39( 0xeaf15f7f9b71379888ffeab47e87bd7ce26f439a34d58f3e80ec127adb748f39, 000000000000000000000000999e1fb9b66a5276e59ebe769dceb0d35bad8e16 )
40 LeafToken.Transfer( from=[Receiver] 0x9f9bfb18186a26acba411fae0c0eaf32f5fc374f, to=[Sender] 0x999e1fb9b66a5276e59ebe769dceb0d35bad8e16, value=1000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x07241118...E78fd0871
(Spark Pool)
5,284.696947903342083082 Eth5,284.697102011842083082 Eth0.0001541085
0x999e1fb9...35bad8E16
0.001367558126 Eth
Nonce: 11
0.001213449626 Eth
Nonce: 12
0.0001541085
0x9f9bfB18...2f5fc374F

Execution Trace

0x9f9bfb18186a26acba411fae0c0eaf32f5fc374f.CALL( )
  • LeafToken.transfer( _to=0x999e1fb9B66a5276E59ebe769DCEb0D35bad8E16, _value=1000000000000000000000 ) => ( True )
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    pragma solidity ^0.4.24;
    library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
    return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
    }
    function div(uint256 a, uint256 b) internal pure 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;
    }
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
    }
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX