Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x240b160D...7C7fcE0AE |
0.02305909232953316 Eth
Nonce: 1
|
0.022056106384765862 Eth
Nonce: 2
| 0.001002985944767298 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 16.611389341355162422 Eth | 16.611413789855162422 Eth | 0.0000244485 | |
0xdAC17F95...13D831ec7 |
Execution Trace
TetherToken.approve( _spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
approve[TetherToken (ln:365)]
approveByLegacy[TetherToken (ln:367)]
approve[TetherToken (ln:369)]
1234567891011121314151617181920212223242526pragma 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 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal pure returns (uint256) {assert(b <= a);return a - b;