ETH Price: $2,540.42 (-0.75%)

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:

98 0x9f9bfb18186a26acba411fae0c0eaf32f5fc374f.0xeaf15f7f9b71379888ffeab47e87bd7ce26f439a34d58f3e80ec127adb748f39( 0xeaf15f7f9b71379888ffeab47e87bd7ce26f439a34d58f3e80ec127adb748f39, 0000000000000000000000002e8e00b006318eea35580070a20d2e915a1b7bbc )
99 LeafToken.Transfer( from=[Receiver] 0x9f9bfb18186a26acba411fae0c0eaf32f5fc374f, to=[Sender] 0x2e8e00b006318eea35580070a20d2e915a1b7bbc, value=1000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x07241118...E78fd0871
0x2E8e00b0...15a1B7BBc
0.001450719951 Eth
Nonce: 11
0.001296611451 Eth
Nonce: 12
0.0001541085
(Spark Pool)
5,284.701495638142083082 Eth5,284.701649746642083082 Eth0.0001541085
0x9f9bfB18...2f5fc374F

Execution Trace

0x9f9bfb18186a26acba411fae0c0eaf32f5fc374f.CALL( )
  • LeafToken.transfer( _to=0x2E8e00b006318eEa35580070a20d2E915a1B7BBc, _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