ETH Price: $4,301.34 (+0.84%)

Transaction Decoder

Block:
22074681 at Mar-18-2025 03:32:59 PM +UTC
Transaction Fee:
0.00012032739676573 ETH $0.52
Gas Used:
49,511 Gas / 2.43031643 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
5.922499271149152146 Eth5.922598293149152146 Eth0.000099022
0x8B84a2e6...d7178EFEF
0.01137694935100356 Eth
Nonce: 11
0.01125662195423783 Eth
Nonce: 12
0.00012032739676573
0x973e5269...8d27041A9

Execution Trace

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