ETH Price: $3,845.59 (+2.49%)

Transaction Decoder

Block:
21564781 at Jan-06-2025 10:19:11 AM +UTC
Transaction Fee:
0.000626577003210975 ETH $2.41
Gas Used:
48,585 Gas / 12.896511335 Gwei

Emitted Events:

435 DxToken.Approval( owner=[Sender] 0xeb7f8306db581da48f90abb69fd3ffce4bd57fa7, spender=0x00000000...072C22734, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
5.624502196979141929 Eth5.624550781979141929 Eth0.000048585
0x973e5269...8d27041A9
0xEB7f8306...e4bD57Fa7
0.01015787987122381 Eth
Nonce: 17
0.009531302868012835 Eth
Nonce: 18
0.000626577003210975

Execution Trace

DxToken.approve( _spender=0x0000000000001fF3684f28c67538d4D072C22734, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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