ETH Price: $3,936.76 (+3.79%)

Transaction Decoder

Block:
21620414 at Jan-14-2025 04:44:47 AM +UTC
Transaction Fee:
0.000095645543944965 ETH $0.38
Gas Used:
32,459 Gas / 2.946657135 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
8.709185605039692704 Eth8.70921958605823745 Eth0.000033981018544746
0x973e5269...8d27041A9
0xF71AfE21...43A9413d5
(ProBit 2)
311.217575156610949133 Eth
Nonce: 85605
311.217479511067004168 Eth
Nonce: 85606
0.000095645543944965

Execution Trace

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