ETH Price: $3,149.65 (+5.66%)
Gas: 6.73 Gwei

Transaction Decoder

Block:
18652956 at Nov-26-2023 02:46:11 AM +UTC
Transaction Fee:
0.001002985944767298 ETH $3.16
Gas Used:
48,897 Gas / 20.512218434 Gwei

Emitted Events:

208 TetherToken.Approval( owner=[Sender] 0x240b160d9cf58f9d4a1443cdf2350c77c7fce0ae, spender=0x40aA958d...a374bcD7f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x240b160D...7C7fcE0AE
0.02305909232953316 Eth
Nonce: 1
0.022056106384765862 Eth
Nonce: 2
0.001002985944767298
(beaverbuild)
16.611389341355162422 Eth16.611413789855162422 Eth0.0000244485
0xdAC17F95...13D831ec7

Execution Trace

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