ETH Price: $2,533.96 (-1.49%)

Transaction Decoder

Block:
8232265 at Jul-27-2019 11:06:01 AM +UTC
Transaction Fee:
0.000311944 ETH $0.79
Gas Used:
77,986 Gas / 4 Gwei

Emitted Events:

52 EtherDelta.Trade( tokenGet=0x00000000...000000000, amountGet=14630000000000000, tokenGive=0xa249F0E9...388e39e81, amountGive=770000000000000000000, get=0x9a73c745...2eb7dD50f, give=[Sender] 0xd26205a544ec45d8611df4d3f22b1b3ec43b3802 )

Account State Difference:

  Address   Before After State Difference Code
(F2Pool Old)
1,441.887825358649497961 Eth1,441.888137302649497961 Eth0.000311944
0x8d12A197...2A5CC6819
(EtherDelta 2)
0xD26205A5...ec43B3802
0.004126556042555599 Eth
Nonce: 104
0.003814612042555599 Eth
Nonce: 105
0.000311944

Execution Trace

EtherDelta.trade( tokenGet=0x0000000000000000000000000000000000000000, amountGet=23655000000000000, tokenGive=0xa249F0E9A464b9685F66992f41e1012388e39e81, amountGive=1245000000000000000000, expires=9168272, nonce=3217811024, user=0x9a73c7453E4f4A1a03535E81e4E7c8D2eb7dD50f, v=28, r=30CC84C22B4DDAEE20AC3683AD0205C40099B1D0167A70C3266A63FE835C5231, s=60B9449BB61F0B51AD58264544331883F236B3797924E546CE503B6B72FC0B46, amount=14630000000000000 )
  • Null: 0x000...002.8d12a197( )
  • Null: 0x000...001.f0c3661a( )
    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.9;
    contract SafeMath {
    function safeMul(uint a, uint b) internal returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
    }
    function safeSub(uint a, uint b) internal returns (uint) {
    assert(b <= a);
    return a - b;
    }
    function safeAdd(uint a, uint b) internal returns (uint) {
    uint c = a + b;
    assert(c>=a && c>=b);
    return c;
    }
    function assert(bool assertion) internal {
    if (!assertion) throw;
    }
    }
    contract Token {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX