ETH Price: $3,415.24 (+12.27%)

Transaction Decoder

Block:
21034706 at Oct-24-2024 09:57:35 AM +UTC
Transaction Fee:
0.00045810280210949 ETH $1.56
Gas Used:
54,335 Gas / 8.431081294 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0D070796...e40b492Fe
(Gate.io 1)
6,376.007075932231240461 Eth
Nonce: 6976711
6,376.006617829429130971 Eth
Nonce: 6976712
0.00045810280210949
0x973e5269...8d27041A9
(Flashbots: Builder 2)
13.94081893161520518 Eth13.94087326661520518 Eth0.000054335

Execution Trace

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