Transaction Hash:
Block:
22530808 at May-21-2025 10:56:11 AM +UTC
Transaction Fee:
0.000338239376857576 ETH
$0.85
Gas Used:
258,952 Gas / 1.306185613 Gwei
Emitted Events:
145 |
GnosisSafeProxy.0x141df868a6331af528e38c83b7aa03edc19be66e37ae67f9285bf4f8e3c6a1a8( 0x141df868a6331af528e38c83b7aa03edc19be66e37ae67f9285bf4f8e3c6a1a8, 0x000000000000000000000000a6b71e26c5e0845f74c812102ca7114b6a896ab2, 0000000000000000000000000000000000000000000000000000000000000080, 0000000000000000000000000000000000000000000000000000000000000001, 0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000f48f2b2d2a534e402487b3ee7c18c33aec0fe5e4, 0000000000000000000000000000000000000000000000000000000000000001, 000000000000000000000000cd819703be2744510f8e9601a7c8eadb801868b9 )
|
146 |
GnosisSafeProxyFactory.ProxyCreation( proxy=GnosisSafeProxy, singleton=GnosisSafe )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x72540d5F...473E4cd91 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xa6B71E26...b6a896AB2 | (Safe: Proxy Factory 1.3.0 Default) | ||||
0xc5e00A91...f1ADB018B |
0.02284691586744482 Eth
Nonce: 5
|
0.022508676490587244 Eth
Nonce: 6
| 0.000338239376857576 | ||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 214.192009890140434483 Eth | 214.192059188677966435 Eth | 0.000049298537531952 |
Execution Trace
GnosisSafeProxyFactory.createProxyWithNonce( _singleton=0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552, initializer=0xB63E800D0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000F48F2B2D2A534E402487B3EE7C18C33AEC0FE5E40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000CD819703BE2744510F8E9601A7C8EADB801868B90000000000000000000000000000000000000000000000000000000000000000, saltNonce=47809613043268281324563426428075425901584063434030871717623213294129061929462 ) => ( proxy=0x72540d5Fe6C9C2A74389A77B7D26921473E4cd91 )
-
GnosisSafeProxy.60806040( )
GnosisSafeProxy.b63e800d( )
-
GnosisSafe.setup( _owners=[0xcD819703bE2744510f8E9601A7C8EADb801868b9], _threshold=1, to=0x0000000000000000000000000000000000000000, data=0x, fallbackHandler=0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4, paymentToken=0x0000000000000000000000000000000000000000, payment=0, paymentReceiver=0x0000000000000000000000000000000000000000 )
-
createProxyWithNonce[GnosisSafeProxyFactory (ln:94)]
deployProxyWithNonce[GnosisSafeProxyFactory (ln:99)]
ProxyCreation[GnosisSafeProxyFactory (ln:107)]
File 1 of 3: GnosisSafeProxyFactory
File 2 of 3: GnosisSafeProxy
File 3 of 3: 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;/// @dev Constructor function sets address of singleton contract./// @param _singleton Singleton address.
File 2 of 3: 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;
File 3 of 3: 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>