Transaction Hash:
Block:
22532314 at May-21-2025 03:59:23 PM +UTC
Transaction Fee:
0.000104663374968909 ETH
$0.26
Gas Used:
27,329 Gas / 3.829755021 Gwei
Emitted Events:
159 |
GnosisSafeProxy.0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d( 0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d, 0x000000000000000000000000046de1b2ece6e3272fec736d5f4b16218dd12365, 00000000000000000000000000000000000000000000000000038f42586d90e0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x046de1b2...18dd12365 |
0.001208943806078992 Eth
Nonce: 1
|
0.000102340386789091 Eth
Nonce: 2
| 0.001106603419289901 | ||
0x305DCAEa...05fD67a7b | 794.928905598062490123 Eth | 794.929907538106811115 Eth | 0.001001940044320992 | ||
0x3Bee5122...22aBB5436
Miner
| (MEV Builder: 0x3B...436) | 49.888433379812328551 Eth | 49.888435484145328551 Eth | 0.000002104333 |
Execution Trace
ETH 0.001001940044320992
GnosisSafeProxy.CALL( )
- ETH 0.001001940044320992
GnosisSafe.DELEGATECALL( )
File 1 of 2: GnosisSafeProxy
File 2 of 2: GnosisSafe
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;
File 2 of 2: GnosisSafe
12345678910111213141516// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "./base/ModuleManager.sol";import "./base/OwnerManager.sol";import "./base/FallbackManager.sol";import "./base/GuardManager.sol";import "./common/EtherPaymentFallback.sol";import "./common/Singleton.sol";import "./common/SignatureDecoder.sol";import "./common/SecuredTokenTransfer.sol";import "./common/StorageAccessible.sol";import "./interfaces/ISignatureValidator.sol";import "./external/GnosisSafeMath.sol";/// @title Gnosis Safe - A multisignature wallet with support for confirmations using signed messages based on ERC191./// @author Stefan George - <stefan@gnosis.io>/// @author Richard Meissner - <richard@gnosis.io>