Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 1.98789991931188436 Eth | 1.98804211181188436 Eth | 0.0001421925 | |
0xd85bE876...2215b4709 |
0.001363644816996246 Eth
Nonce: 3
|
0.000083847506033926 Eth
Nonce: 4
| 0.00127979731096232 |
Execution Trace
TetherToken.transfer( _to=0xd87007269e3bc4dAc30eE75B8ABbD24f5DD030b6, _value=5000000 )
transfer[TetherToken (ln:336)]
transferByLegacy[TetherToken (ln:339)]
transfer[TetherToken (ln:341)]
1234567891011121314151617181920212223242526pragma 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 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal pure returns (uint256) {assert(b <= a);return a - b;