ETH Price: $1,872.26 (-1.91%)

Transaction Decoder

Block:
10365480 at Jun-30-2020 06:18:53 AM +UTC
Transaction Fee:
0.003428749 ETH $6.42
Gas Used:
56,209 Gas / 61 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x95584Ac2...07bD202e8
22.855467032565768852 Eth
Nonce: 5280
22.852038283565768852 Eth
Nonce: 5281
0.003428749
0xdAC17F95...13D831ec7
(Ethermine)
620.039017667306489762 Eth620.042446416306489762 Eth0.003428749

Execution Trace

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