Transaction Hash:
Block:
20442337 at Aug-02-2024 05:25:23 PM +UTC
Transaction Fee:
0.000217723702529718 ETH
$0.55
Gas Used:
41,321 Gas / 5.269081158 Gwei
Emitted Events:
377 |
TetherToken.Transfer( from=[Sender] 0xf34f0420b588b6cf956f66beabab3f75deb10a63, to=GnosisSafeProxy, value=332444852000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.15036762412013206 Eth | 12.15040770549013206 Eth | 0.00004008137 | |
0xdAC17F95...13D831ec7 | |||||
0xf34f0420...5DeB10A63 |
5.815826044676136661 Eth
Nonce: 6617
|
5.815608320973606943 Eth
Nonce: 6618
| 0.000217723702529718 |
Execution Trace
TetherToken.transfer( _to=0x32c51e066d05D177a802B7C68859022C8Cad38eF, _value=332444852000 )
transfer[TetherToken (ln:336)]
transferByLegacy[TetherToken (ln:339)]
transfer[TetherToken (ln:341)]
File 1 of 2: TetherToken
File 2 of 2: GnosisSafeProxy
12345678910111213141516pragma 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;}
File 2 of 2: GnosisSafeProxy
12345678910111213141516// SPDX-License-Identifier: LGPL-3.0-onlypragma 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;