ETH Price: $2,745.82 (-0.94%)

Transaction Decoder

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 Code
0xBE11869B...01497D1A8
0.002344807624010611 Eth
Nonce: 32
0.001597646087807056 Eth
Nonce: 33
0.000747161536203555
(Flashbots: Builder)
0.114397551007410405 Eth0.114400200907410405 Eth0.0000026499

Execution Trace

TetherToken.approve( _spender=0x8731d54E9D02c286767d56ac03e8037C07e01e98, _value=2969384 )
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