ETH Price: $3,936.30 (+3.78%)
Gas: 0.25 Gwei

Transaction Decoder

Block:
20067768 at Jun-11-2024 09:43:47 AM +UTC
Transaction Fee:
0.00044682 ETH $1.76
Gas Used:
37,235 Gas / 12 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
14.643695426824881766 Eth14.643841754056474616 Eth0.00014632723159285
0x839822D0...4500d6fD3
0.0004512 Eth
Nonce: 0
0.00000438 Eth
Nonce: 1
0.00044682
0x973e5269...8d27041A9

Execution Trace

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