Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x1F5eCbb6...FFE1D56AB |
0.047991889777777777 Eth
Nonce: 54
|
4.047521729777777777 Eth
Nonce: 55
| 3.99952984 | ||
0x6a7a43BE...A7ADB9B1F
Miner
| (Coinotron 3) | 147.672958449589803949 Eth | 147.673428609589803949 Eth | 0.00047016 | |
0x8d12A197...2A5CC6819 | (EtherDelta 2) | 20,032.543384497889167913 Eth | 20,028.543384497889167913 Eth | 4 |
Execution Trace
EtherDelta.withdraw( amount=4000000000000000000 )
- ETH 4
0x1f5ecbb61648b0f2143092981162e0affe1d56ab.CALL( )
withdraw[EtherDelta (ln:219)]
safeSub[EtherDelta (ln:221)]
value[EtherDelta (ln:222)]
Withdraw[EtherDelta (ln:223)]
1234567891011121314151617181920212223242526pragma 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 {