Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 2.654828084988661154 Eth | 2.654842754088661154 Eth | 0.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 )
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;