ETH Price: $1,861.87 (-0.20%)

Transaction Decoder

Block:
17647720 at Jul-08-2023 08:00:11 AM +UTC
Transaction Fee:
0.0007080084255305 ETH $1.32
Gas Used:
41,297 Gas / 17.1443065 Gwei

Account State Difference:

  Address   Before After State Difference Code
(builder0x69)
1.748965253015488631 Eth1.749047847015488631 Eth0.000082594
0xdAC17F95...13D831ec7
0xeAB34026...96895FBE7
(Binance Dep: 0xeAB34026EEF0eFC2B858E0c2978800496895FBE7)
0.020794409032242387 Eth
Nonce: 10
0.020086400606711887 Eth
Nonce: 11
0.0007080084255305

Execution Trace

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