ETH Price: $1,877.00 (-1.69%)
Gas: 0.36 Gwei

Transaction Decoder

Block:
9869401 at Apr-14-2020 08:16:45 AM +UTC
Transaction Fee:
0.00047016 ETH $0.88
Gas Used:
39,180 Gas / 12 Gwei

Emitted Events:

32 EtherDelta.Withdraw( token=0x00000000...000000000, user=[Sender] 0x1f5ecbb61648b0f2143092981162e0affe1d56ab, amount=4000000000000000000, balance=3199318236205830949 )

Account State Difference:

  Address   Before After State Difference Code
0x1F5eCbb6...FFE1D56AB
0.047991889777777777 Eth
Nonce: 54
4.047521729777777777 Eth
Nonce: 55
3.99952984
(Coinotron 3)
147.672958449589803949 Eth147.673428609589803949 Eth0.00047016
0x8d12A197...2A5CC6819
(EtherDelta 2)
20,032.543384497889167913 Eth20,028.543384497889167913 Eth4

Execution Trace

EtherDelta.withdraw( amount=4000000000000000000 )
  • ETH 4 0x1f5ecbb61648b0f2143092981162e0affe1d56ab.CALL( )
    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