ETH Price: $2,776.86 (+6.67%)
Gas: 0.77 Gwei

Transaction Decoder

Block:
10704766 at Aug-21-2020 04:51:08 PM +UTC
Transaction Fee:
0.0110450685 ETH $30.67
Gas Used:
56,209 Gas / 196.5 Gwei

Account State Difference:

  Address   Before After State Difference Code
(UUPool)
517.618433899994532985 Eth517.629478968494532985 Eth0.0110450685
0xdAC17F95...13D831ec7
0xE23937A8...8D632B3DE
0.232098669575727125 Eth
Nonce: 15139
0.221053601075727125 Eth
Nonce: 15140
0.0110450685

Execution Trace

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