ETH Price: $2,524.34 (-3.29%)
Gas: 0.37 Gwei

Transaction Decoder

Block:
17004172 at Apr-08-2023 02:08:35 PM +UTC
Transaction Fee:
0.001159846537888701 ETH $2.93
Gas Used:
48,897 Gas / 23.720198333 Gwei

Emitted Events:

102 TetherToken.Approval( owner=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(builder0x69)
2.654828084988661154 Eth2.654842754088661154 Eth0.0000146691
0xdAC17F95...13D831ec7
0xDfBd4048...B7E09ab6e
0.014605422991671662 Eth
Nonce: 103
0.013445576453782961 Eth
Nonce: 104
0.001159846537888701

Execution Trace

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