ETH Price: $3,720.55 (-0.16%)

Transaction Decoder

Block:
6085919 at Aug-04-2018 09:02:03 AM +UTC
Transaction Fee:
0.000134922 ETH $0.50
Gas Used:
22,487 Gas / 6 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x43C3Af2C...eC0C3ba78
0.01543615 Eth
Nonce: 1
0.015301228 Eth
Nonce: 2
0.000134922
(Nanopool)
7,332.934143959749311925 Eth7,332.934278881749311925 Eth0.000134922
0x973e5269...8d27041A9

Execution Trace

DxToken.transfer( _to=0xF1F0a66b6a3Caa12c5b5282E4bAdBed4647A4A03, _value=541105500000000000000000 ) => ( 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