ETH Price: $4,611.10 (+6.96%)

Transaction Decoder

Block:
6084860 at Aug-04-2018 04:56:05 AM +UTC
Transaction Fee:
0.000067461 ETH $0.31
Gas Used:
22,487 Gas / 3 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x973e5269...8d27041A9
(MiningPoolHub: Old Address)
15,444.612672358925181632 Eth15,444.612739819925181632 Eth0.000067461
0xC680C788...5f16a01C9
0.006726169 Eth
Nonce: 1
0.006658708 Eth
Nonce: 2
0.000067461

Execution Trace

DxToken.transfer( _to=0x67C1149fa5fEA3FAF1B2e54866fB8464be181C88, _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