ETH Price: $4,330.97 (+1.85%)

Transaction Decoder

Block:
20664695 at Sep-02-2024 06:32:35 PM +UTC
Transaction Fee:
0.000617148099739935 ETH $2.67
Gas Used:
48,897 Gas / 12.621389855 Gwei

Emitted Events:

170 TetherToken.Approval( owner=[Sender] 0x310b35f7d753df40d22b1b6179c89233f79e0c1e, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x310B35f7...3f79E0c1E
0.014523018908023187 Eth
Nonce: 15
0.013905870808283252 Eth
Nonce: 16
0.000617148099739935
(Titan Builder)
7.919231922152229072 Eth7.919361423663845313 Eth0.000129501511616241
0xdAC17F95...13D831ec7

Execution Trace

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