ETH Price: $1,892.90 (+1.31%)

Transaction Decoder

Block:
21417341 at Dec-16-2024 08:01:59 PM +UTC
Transaction Fee:
0.001699745817902327 ETH $3.22
Gas Used:
58,409 Gas / 29.100751903 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.611115251662417141 Eth12.611462636336929536 Eth0.000347384674512395
0x7E04BFfb...6039A03d1
0.003574542 Eth
Nonce: 8
0.001874796182097673 Eth
Nonce: 9
0.001699745817902327
0xdAC17F95...13D831ec7

Execution Trace

TetherToken.transfer( _to=0x84Bd43A81519614587474f3207C2DD02b37d269F, _value=175314374 )
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