ETH Price: $2,744.03 (-1.88%)

Transaction Decoder

Block:
16037464 at Nov-24-2022 04:30:35 AM +UTC
Transaction Fee:
0.00127979731096232 ETH $3.51
Gas Used:
94,795 Gas / 13.500683696 Gwei

Account State Difference:

  Address   Before After State Difference Code
(builder0x69)
1.98789991931188436 Eth1.98804211181188436 Eth0.0001421925
0xd85bE876...2215b4709
0.001363644816996246 Eth
Nonce: 3
0.000083847506033926 Eth
Nonce: 4
0.00127979731096232

Execution Trace

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