ETH Price: $2,567.77 (+1.41%)

Transaction Decoder

Block:
21778054 at Feb-05-2025 04:57:47 AM +UTC
Transaction Fee:
0.000088783222258935 ETH $0.23
Gas Used:
48,549 Gas / 1.828734315 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x07F5813f...A7F602e50
0.000593288647025435 Eth
Nonce: 84
0.0005045054247665 Eth
Nonce: 85
0.000088783222258935
(Titan Builder)
13.298644090612866972 Eth13.298668365112866972 Eth0.0000242745
0xdAC17F95...13D831ec7

Execution Trace

TetherToken.approve( _spender=0xFE606EEc8Eb8e6Ad8E8654968a15650F5331a023, _value=1764700 )
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.17;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX