ETH Price: $3,653.17 (+2.22%)

Transaction Decoder

Block:
22205779 at Apr-05-2025 10:45:11 PM +UTC
Transaction Fee:
0.00002676135 ETH $0.10
Gas Used:
48,657 Gas / 0.55 Gwei

Emitted Events:

243 DxToken.Approval( owner=[Sender] 0x792a83e74d76fcdab681249c82bc8ec6e1aa1111, spender=0x6131B5fa...8b66337b5, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
34.036893129848661199 Eth34.036898826645643495 Eth0.000005696796982296
0x792A83e7...6e1AA1111
0.049421323808291185 Eth
Nonce: 11261
0.049394562458291185 Eth
Nonce: 11262
0.00002676135
0x973e5269...8d27041A9

Execution Trace

DxToken.approve( _spender=0x6131B5fae19EA4f9D964eAc0408E4408b66337b5, _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