ETH Price: $2,528.48 (-4.00%)

Transaction Decoder

Block:
15205531 at Jul-24-2022 01:19:08 PM +UTC
Transaction Fee:
0.000519254296024338 ETH $1.31
Gas Used:
48,897 Gas / 10.619348754 Gwei

Emitted Events:

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

Account State Difference:

  Address   Before After State Difference Code
(F2Pool Old)
6,306.542000847593213217 Eth6,306.542098641593213217 Eth0.000097794
0xBa35301d...e1Fe6f3E6
0.01214324 Eth
Nonce: 0
0.011623985703975662 Eth
Nonce: 1
0.000519254296024338
0xdAC17F95...13D831ec7

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