ETH Price: $3,796.68 (-0.87%)

Transaction Decoder

Block:
19791057 at May-03-2024 05:24:11 PM +UTC
Transaction Fee:
0.000540208291948172 ETH $2.05
Gas Used:
63,209 Gas / 8.546382508 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
6.101135014676913672 Eth6.101136581728146728 Eth0.000001567051233056
0xdAC17F95...13D831ec7
0xf34f0420...5DeB10A63
10.689962591232935834 Eth
Nonce: 6599
10.689422382940987662 Eth
Nonce: 6600
0.000540208291948172

Execution Trace

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