Transaction Hash:
Block:
17333762 at May-25-2023 04:22:23 AM +UTC
Transaction Fee:
0.000747161536203555 ETH
$2.05
Gas Used:
26,499 Gas / 28.195838945 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xBE11869B...01497D1A8 |
0.002344807624010611 Eth
Nonce: 32
|
0.001597646087807056 Eth
Nonce: 33
| 0.000747161536203555 | ||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 0.114397551007410405 Eth | 0.114400200907410405 Eth | 0.0000026499 |
Execution Trace
TetherToken.approve( _spender=0x8731d54E9D02c286767d56ac03e8037C07e01e98, _value=2969384 )
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;