ETH Price: $2,940.21 (-1.82%)

Transaction Decoder

Block:
6088748 at Aug-04-2018 08:36:02 PM +UTC
Transaction Fee:
0.0001344979375 ETH $0.40
Gas Used:
52,487 Gas / 2.5625 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x8194ED53...C6DD7969b
0.016516146410515106 Eth
Nonce: 262
0.016381648473015106 Eth
Nonce: 263
0.0001344979375
0x973e5269...8d27041A9
(xnpool.cn)
108.586377894516336503 Eth108.586512392453836503 Eth0.0001344979375

Execution Trace

DxToken.transfer( _to=0x37555cB455276c4143110a8A3488bB4B94b0bcd4, _value=32730000000000000000000 ) => ( 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.23;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
if (a == 0) {
return 0;
}
c = a * b;
assert(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX