ETH Price: $2,764.32 (-2.33%)

Transaction Decoder

Block:
20949596 at Oct-12-2024 12:43:47 PM +UTC
Transaction Fee:
0.000399773112249432 ETH $1.11
Gas Used:
41,309 Gas / 9.677627448 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.02567934606565332 Eth
Nonce: 13168
0.025279572953403888 Eth
Nonce: 13169
0.000399773112249432
(Titan Builder)
9.247114706766278556 Eth9.247119379304309841 Eth0.000004672538031285
0xdAC17F95...13D831ec7

Execution Trace

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