Transaction Decoder
Transaction Hash:
Block:
19764063 at Apr-29-2024 10:52:11 PM +UTC
Transaction Fee:
0.000244036051998543 ETH
$0.91
Gas Used:
46,109 Gas / 5.292590427 Gwei
Emitted Events:
644 |
TetherToken.Transfer( from=[Sender] 0x6bf11a2f26c92c540d5b8788ebd72927d683e207, to=0x6a04ddf3de778De8D9Fc64Fcf6fB826b03570738, value=1392630000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x6bF11A2F...7d683E207 |
0.005710107885672914 Eth
Nonce: 14
|
0.005466071833674371 Eth
Nonce: 15
| 0.000244036051998543 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 7.24799886406539227 Eth | 7.248013222903479584 Eth | 0.000014358838087314 | |
0xdAC17F95...13D831ec7 |
Execution Trace
TetherToken.transfer( _to=0x6a04ddf3de778De8D9Fc64Fcf6fB826b03570738, _value=1392630000 )
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;