ETH Price: $3,750.25 (+2.96%)

Transaction Decoder

Block:
16795055 at Mar-10-2023 03:22:47 AM +UTC
Transaction Fee:
0.001075539649067676 ETH $4.03
Gas Used:
48,561 Gas / 22.148218716 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0xAA2B4a88...403ab2B5C
0.014776757896246618 Eth
Nonce: 10
0.013701218247178942 Eth
Nonce: 11
0.001075539649067676
0xdAC17F95...13D831ec7
(Fee Recipient: 0xe68...127)
8,541.342471836636068257 Eth8,541.342476580942187644 Eth0.000004744306119387

Execution Trace

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