ETH Price: $3,929.87 (+4.12%)

Transaction Decoder

Block:
22505586 at May-17-2025 09:59:47 PM +UTC
Transaction Fee:
0.00007553589605962 ETH $0.30
Gas Used:
54,335 Gas / 1.390188572 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0D070796...e40b492Fe
(Gate.io 1)
16,543.595466292109362447 Eth
Nonce: 7970747
16,543.595390756213302827 Eth
Nonce: 7970748
0.00007553589605962
(Titan Builder)
10.100845562318754504 Eth10.100899900569128539 Eth0.000054338250374035
0x973e5269...8d27041A9

Execution Trace

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