ETH Price: $2,787.23 (+3.63%)
Gas: 1.64 Gwei

Transaction Decoder

Block:
19735448 at Apr-25-2024 10:44:47 PM +UTC
Transaction Fee:
0.000272771347567882 ETH $0.76
Gas Used:
46,121 Gas / 5.914254842 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
9.426776270043932034 Eth9.426776317570700114 Eth0.00000004752676808
0xdAC17F95...13D831ec7
0xf34f0420...5DeB10A63
25.328150945777987222 Eth
Nonce: 6592
25.32787817443041934 Eth
Nonce: 6593
0.000272771347567882

Execution Trace

TetherToken.transfer( _to=0xC3DD26450475920642538ea6c360e8283E7eb04C, _value=19999000000 )
File 1 of 2: TetherToken
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 2: GnosisSafeProxy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;
/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
/// @author Richard Meissner - <richard@gnosis.io>
interface IProxy {
function masterCopy() external view returns (address);
}
/// @title GnosisSafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <stefan@gnosis.io>
/// @author Richard Meissner - <richard@gnosis.io>
contract GnosisSafeProxy {
// singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
// To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
address internal singleton;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX