ETH Price: $3,772.36 (+0.77%)

Transaction Decoder

Block:
21459591 at Dec-22-2024 05:40:59 PM +UTC
Transaction Fee:
0.000350637969250257 ETH $1.32
Gas Used:
58,409 Gas / 6.003149673 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.888745880391265083 Eth11.888749438591963837 Eth0.000003558200698754
0xdAC17F95...13D831ec7
0xE8388Ea9...9e646147c
0.00156694 Eth
Nonce: 0
0.001216302030749743 Eth
Nonce: 1
0.000350637969250257

Execution Trace

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